Advertisement
KeeJayBe

webapps oefening Waerboom css

Nov 28th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.34 KB | None | 0 0
  1. @import "fonts";
  2. @import "variables";
  3.  
  4. body {
  5.   font-family: helveticaneue, font_waerboom, Arial, Tahoma, sans-serif;
  6. }
  7. .content_wrapper {
  8.   padding: 10px;
  9.   width: 1050px;
  10.   margin: 0 auto;
  11. }
  12.  
  13. section.jumbotron {
  14.   background-image: url("../images/patternslider.png");
  15.   border-bottom: 8px solid #878979;
  16.   div.content_wrapper {
  17.     background-image: url("../images/waerboom-groot.jpg");
  18.     article {
  19.       margin: 50px 50px 0px 650px;
  20.       background-color: rgba(78, 80, 70, 0.85);
  21.       color: #fff;
  22.       border-radius: 10px;
  23.       padding: 15px;
  24.     }
  25.     h1 {
  26.       font-size: 36px;
  27.       line-height: 40px;
  28.     }
  29.     p {
  30.       font-size: 18px;
  31.       line-height: 21px;
  32.     }
  33.   }
  34. }
  35.  
  36. section {
  37.   background-color: #d8d8c9;
  38.   padding-top: 10px;
  39.   padding-bottom: 10px;
  40.   div.content_wrapper {
  41.     display: flex;
  42.     article {
  43.       background-color: #8e956f;
  44.       text-align: center;
  45.       margin: 5px;
  46.       border-radius: 10px;
  47.       width: 245px;
  48.       box-shadow: rgb(0, 0, 0) 2px 2px 5px;
  49.      
  50.       header {
  51.         background-color: #fff;
  52.         padding: $defaultPadding 0;
  53.         border-radius: $defaultBorderRadius $defaultBorderRadius 0 0;
  54.         h3,
  55.         strong {
  56.           padding: $defaultPadding 0;
  57.           text-transform: uppercase;
  58.           font-size: 20px;
  59.           font-weight: normal;
  60.         }
  61.         strong {
  62.           text-transform: capitalize;
  63.           color: #6b714d;
  64.         }
  65.       }
  66.       p.bottom {
  67.         padding: 15px 20px 15px 20px;
  68.       }
  69.     }
  70.   }
  71. }
  72.  
  73. footer {
  74.   background-color: #a2a48e;
  75.   font-size: 12px;
  76.   font-family: Arial, Helvetica, sans-serif;
  77.   display: flex;
  78.   flex-direction: column;
  79.   text-align: center;
  80.   align-content: stretch;
  81.   .upper{
  82.     background-color: #fff;
  83.     color: #a2a48e;
  84.     padding: 10px;
  85.   }
  86.   .lower{
  87.     background-color: #8e956f;
  88.     color: black;
  89.     padding: 10px;
  90.   }
  91. }
  92. header{
  93.   box-sizing: border-box;
  94. nav{
  95.   display: inline-block;
  96.   img{
  97.     width: 20%;
  98.   }
  99.   ul{
  100.     width: 60%;
  101.     float: right;
  102.     display: flex;
  103.     flex-direction: row;
  104.   }
  105.   li{
  106.     display: inline-block;
  107.     margin: 10px;
  108.     font-size: 1.5em;
  109.     a{
  110.       text-decoration: none;
  111.       color: #757575;
  112.     }
  113.     a:hover{
  114.       color: #1a7780;
  115.     }
  116.     a:visited{
  117.       color: #b18245;
  118.     }
  119.   }
  120. }
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement