Advertisement
Schafey

Stylesheet

Oct 27th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.41 KB | None | 0 0
  1. body{
  2.     background-color: #666;
  3.     margin-top: 25px;
  4.     font-family: Arial, Helvetica, sans-serif;
  5. }
  6.  
  7. #wrapper{
  8.     margin-left: auto;
  9.     margin-right: auto;
  10.     //background-color: #999;
  11.     width: 980px;
  12.     //height: 800px;
  13. }
  14.  
  15. #header{
  16.     width: 980px;
  17.     height: 200px;
  18.     background-color: #0f0;
  19.     background-image: url(./images/header.png);
  20. }
  21.  
  22. #footer{
  23.     height: 30px;
  24.     margin-left: auto;
  25.     margin-right: auto;
  26.     width: 980px;
  27.     margin-top: 40px;
  28.     text-align: center;
  29.     font-size: 14px;
  30.     color: #FFF;
  31. }
  32.  
  33. #top-menue{
  34.     width: 980px;
  35.     height: 20px;
  36.     background-color: #000;
  37.     color: #FFF;
  38.     text-transform: uppercase;
  39.     font-weight: bold;
  40.     font-family: Trebuchet MS, Arial, sans-serif;
  41.     text-align: center;
  42.     padding-top: 5px;
  43.     padding-bottom: 8px;
  44.     font-size: 18px;
  45. }
  46.  
  47. #top-menue ul {
  48.     margin: 0px;
  49.     padding: 0px;
  50. }
  51.  
  52. #top-menue ul li{
  53.     list-style-type: none;
  54. }
  55. #top-menue ul li a{
  56.     height: 30px;
  57.     width: 150px;
  58.     display: block;
  59.     float: left;
  60.     text-decoration: none;
  61.     color: #FFF;
  62. }
  63.  
  64. #content{
  65.     width: 980px;
  66.     //height: 600px;
  67.     background-color: #E9E9E9;
  68.     margin-bottom: 10px;
  69.     padding: 10px 10px 10px 10px;
  70.     }
  71.    
  72. #content article{
  73.     border-bottom: 1px dotted #CFCFCF;
  74.     margin-bottom: 20px;
  75. }
  76.  
  77. #content h1{
  78.     color: #B45F04;
  79. }
  80.  
  81. .shadow{
  82.     -webkit-box-shadow: 0px 0px 10px #000;
  83.     -moz-box-shadow: 0px 0px 10px #000;
  84.     box-shadow: 0px 0px 10px #000;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement