Advertisement
Guest User

Untitled

a guest
Jun 6th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.82 KB | None | 0 0
  1. @charset "UTF-8";
  2. /* CSS Document */
  3.  
  4. *{ margin: 0; padding: 0; }
  5.  
  6. body { background-color:#f7f7f7;
  7.        font-size:14px;
  8.        font-family:Verdana, Geneva, sans-serif;
  9.      }
  10.      
  11. a { text-decoration: none;
  12.     color:#FFF;
  13.   }
  14.  
  15. a.hover {color:#F00;
  16.         }
  17.      
  18. #rahmen { width:950px;
  19.           margin: 0 auto;
  20.           padding-top: 25px;
  21.           padding-bottom: 5px;
  22.         }
  23.  
  24. #navi { background-color:#1fe5b9;
  25.         height: 25px;
  26.       }
  27.  
  28. ul { margin-top: -5px;
  29.      margin-left: 355px;
  30.    }
  31.  
  32. #navi img { display: block;
  33.             margin-left: auto;
  34.             margin-right: auto;
  35.             margin-bottom: 12px;
  36.           }
  37.    
  38. #social img { display: block;
  39.               margin-left: auto;
  40.               margin-right: auto;
  41.               margin-bottom: 12px;
  42.             }
  43.    
  44. #header img { display: block;
  45.               margin-left: auto;
  46.               margin-right: auto;
  47.               margin-bottom: 12px;
  48.             }
  49.  
  50. li { list-style-type: none;
  51.      float:left;
  52.    }
  53.  
  54. p { color:#FFF; }
  55.  
  56. h1 { font-family:BebasNeueRegular;
  57.      font-weight: normal;
  58.      font-size:30px;
  59.      background-color:#1fe5b9;
  60.      color:#FFF;
  61.      height:33px;
  62.      padding-left:8px;
  63.      padding-right:0px;
  64.      margin-bottom:8px;
  65.    }
  66.  
  67. #content { background-color:#373737;
  68.            height: 500px;
  69.            padding-top:25px;
  70.            padding-bottom:6px;
  71.            padding-left: 25px;
  72.            padding-right: 50px;
  73.          }
  74.          
  75. #slider1 { background:#373737;
  76.            padding:0;
  77.            margin:0;
  78.          }
  79.          
  80. #content a { margin-left:auto;
  81.              margin-right: auto;
  82.            }
  83.  
  84. #unten { background-image:url(grafik/unten.png);
  85.          height: 39px;
  86.        }
  87.  
  88. #social { padding-top: 25px;
  89.           padding-left: 790px;
  90.         }
  91.        
  92. .bx-next { position:absolute;
  93.            top:40%;
  94.            right:15px;
  95.            z-index:999;
  96.            width: 30px;
  97.            height: 30px;
  98.            text-indent: -999999px;
  99.            background: url(grafik/gray_next.png) no-repeat 0 -30px;
  100.          }
  101.          
  102. .bx-prev { position:absolute;
  103.            top:40%;
  104.            left:15px;
  105.            z-index:999;
  106.            width: 30px;
  107.            height: 30px;
  108.            text-indent: -999999px;
  109.            background: url(grafik/gray_prev.png) no-repeat 0 -30px;
  110.          }
  111.          
  112. .bx-wrapper {
  113.               margin-right: -25px;
  114.               margin-top: -25px;
  115.             }
  116.            
  117. @font-face {
  118.     font-family: 'BebasNeueRegular';
  119.     src: url('fonts/BebasNeue-webfont.eot');
  120.     src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
  121.          url('fonts/BebasNeue-webfont.woff') format('woff'),
  122.          url('fonts/BebasNeue-webfont.ttf') format('truetype'),
  123.          url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
  124.     font-weight: normal;
  125.     font-style: normal;
  126.  
  127. }
  128.  
  129. ::selection {
  130.     background: #1fe5b9; /* Safari */
  131. }
  132. ::-moz-selection {
  133.     background: #1fe5b9; /* Firefox */
  134. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement