Advertisement
Guest User

CSS

a guest
Jan 3rd, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.06 KB | None | 0 0
  1. * {
  2.   padding: 0px;
  3.   margin:0px;
  4.   border:0px;
  5. }
  6.  
  7.    
  8. body{
  9.   background-image: url("http://subtlepatterns2015.subtlepatterns.netdna-cdn.com/patterns/dark_embroidery.png");
  10.   font-family: Arial, Helvetica, sans-serif;
  11. }
  12.    
  13.    
  14. /*****************/
  15. /* Navigatie     */
  16. /*****************/
  17.    
  18.    
  19. #navigatie{
  20.   width: 100%;
  21.   height: 50px;
  22.   background-color: #16A085;
  23.   border-bottom:2px solid #0c5a4b;
  24.   position: fixed;
  25. }
  26.    
  27.    
  28.  
  29. /*****************/
  30. /* Top Nav   */
  31. /*****************/
  32.    
  33. #nav-top{
  34.   margin-left: 0px;
  35. }
  36.  
  37. #nav-top > h2{
  38.     padding: 0%;
  39.     margin-top: 4px;
  40.     float: left;
  41. }
  42.  
  43. #nav-top ul li{
  44.   list-style:none;
  45.   float: left;
  46.   width: auto;
  47.   height: 50px;
  48.   overflow: hidden;
  49. }
  50.    
  51. #nav-top ul li a{
  52.   display: block;
  53.   padding-top: 12px;
  54.   padding-left: 10px;
  55.   padding-right: 10px;
  56.   text-decoration: none;
  57.   color: white;
  58.   font-weight: bold;
  59.   text-shadow: 0 -1px rgba(0,0,0,0.3);
  60.   height: 50px;
  61.   font-size: 80%;
  62. }
  63.    
  64. #nav-top ul li:hover{
  65.   transition: 0.5s;
  66.   background-color: #86E2D5;
  67. }
  68.  
  69. .nav-top-left{
  70.   float: left;
  71.   margin-left: 121px;
  72. }
  73.  
  74. .nav-top-right{
  75.   float: right;
  76.   margin: 0px;
  77. }
  78.  
  79. /*****************/
  80. /* Nav Dropdown */
  81. /*****************/
  82. #nav-top ul > li > ul{
  83.   display:none;
  84. }
  85.  
  86. #nav-top ul > li:hover > ul{
  87.   display: block;
  88.   position: absolute;
  89.   background-color: #16A085;
  90. }
  91.  
  92. #nav-top ul > li > ul > li{
  93.   margin-top: 0px;
  94. }
  95.  
  96. /*****************/
  97. /* Main Content  */
  98. /*****************/
  99.  
  100. #main-content-wrapper{
  101.   width: 70%;
  102.   margin: 0% 20% 0% 15%;
  103.   height: auto;
  104.   background-color: #A2DED0;
  105.   -webkit-box-shadow: 0px 7px 30px 0px rgba(115, 115, 115, 1);
  106.   -moz-box-shadow:    0px 7px 30px 0px rgba(115, 115, 115, 1);
  107.   box-shadow:         0px 7px 30px 0px rgba(115, 115, 115, 1);
  108.   margin-bottom: 10px;
  109. }
  110.  
  111. /***********************/
  112. /* Main Content slider */
  113. /***********************/
  114.  
  115. #slider{
  116.   width: 100%;
  117.   min-height: 250px;
  118.   background-color: black;
  119. }
  120.  
  121. /***********************/
  122. /******* Artikel *******/
  123. /***********************/
  124. .nieuwste-producten-container{
  125.   background-color: #A2DED0;
  126.   height: auto;
  127.   overflow: hidden;
  128. }
  129.  
  130. .artikel-titel{
  131.   margin-top:10px;
  132. }
  133. .artikel-titel H3{
  134.     padding: 9px 10px;
  135.     background-color: #16A085;
  136.     font-weight: bold;
  137.     color: white;
  138.     text-shadow: 0 -1px rgba(0,0,0,0.2);
  139.     margin-bottom: 10px;
  140.     border-radius: 4px;
  141.     margin-left: 10px;
  142.     margin-right: 10px;
  143. }
  144.  
  145. .artikel-item{
  146.   margin-left: 20px;
  147.   margin-right: 15px;
  148.   width: 29%;
  149.   height: auto;
  150.   background-color: #66CC99;
  151.   float: left;
  152.   margin-bottom: 20px;
  153.   overflow: hidden;
  154. }
  155.  
  156. .artikel-item-titel H4{
  157.     padding: 9px 10px;
  158.     background-color: #16A085;
  159.     font-weight: bold;
  160.     color: white;
  161.     text-shadow: 0 -1px rgba(0,0,0,0.2);
  162.     margin-bottom: 10px;
  163.     border-radius: 4px;
  164.     margin-left: 10px;
  165.     margin-right: 10px;
  166.     margin-top: 10px;
  167. }
  168.  
  169. .artikel-item-titel a{
  170.   text-decoration: none;
  171. }
  172.  
  173. .artikel-image{
  174.   margin-left: 10%;
  175. }
  176.  
  177. .artikel-image img{
  178.     height: 100px;
  179. }
  180. .item-groter{
  181.   height: 40px;
  182. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement