Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.46 KB | None | 0 0
  1. body {
  2.     background-color:lightyellow;
  3.     text-align:center;
  4. }
  5.  
  6. #website {
  7.     width:980px;
  8.     margin:0 auto; 
  9. }
  10.  
  11. #header {
  12.     width:980px;
  13.     hight:150px;
  14.     background: #1abc9c;
  15.     border-radius: 5px;
  16.     -moz-border-radius: 5px;
  17.     -webkit-border-radius: 5px;
  18.     -o-border-radius: 5px; 
  19. }
  20.  
  21. #header h1 {
  22.     padding-top:50px;
  23.     font-size:60px;
  24.     font-weight:bold;
  25.     color:white;
  26.     font-family:Courier;
  27. }
  28.  
  29. #main {
  30.     width:980px
  31. }
  32.  
  33. #menue {
  34.     float:left;
  35.     width:200px;
  36.     height:350px;
  37.     background: #1abc9c;
  38.     margin-top:5px;
  39.     margin-bottom:5px;
  40.     border-radius: 2px;
  41.     -moz-border-radius: 2px;
  42.     -webkit-border-radius: 2px;
  43.     -o-border-radius: 2px;
  44. }
  45.  
  46. #menue ul {
  47.     list-style-type: none;
  48.     padding-left: 5px;
  49.     font-size: 17px
  50. }
  51.  
  52. #menue il {
  53.     margin-bottom: 35px;
  54. }
  55.  
  56. #menue a {
  57.     color: white;
  58.     text-decoration: none;
  59.     font-family: Segoe, Segoe UI, DejaVu Sans, Trebuchet MS, Verdana," sans-serif";
  60. }
  61.  
  62. #menue a:hover{
  63.     color:#222222;
  64. }
  65.  
  66. #inhalt {
  67.     float:right;
  68.     width:770px;
  69.     height:350px;
  70.     background: #f2f2f2;
  71.     margin-top:5px;
  72.     margin-bottom:5px;
  73.     border-radius: 2ypx;
  74.     -moz-border-radius: 2px;
  75.     -webkit-border-radius: 2px;
  76.     -o-border-radius: 2px;
  77. }
  78.  
  79. #footer {
  80.     width:980px;
  81.     height:20px;
  82.     background: #2f2f2f;
  83.     border-radius: 5ypx;
  84.     -moz-border-radius: 5px;
  85.     -webkit-border-radius: 5px;
  86.     -o-border-radius: 5px;
  87.     margin-top:20px;
  88.     clear:both;
  89. }
  90.  
  91. #footer ul {
  92.     list-style-type: none;
  93. }
  94.  
  95. #footer a {
  96.     color: white;
  97.     text-decoration: none;
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement