Advertisement
eXsses

Untitled

Dec 4th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 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:SkyBlue;
  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:Turquoise;
  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. #inhalt {
  47.     float:right;
  48.     width:770px;
  49.     height:350px;
  50.     background:aqua;
  51.     margin-top:5px;
  52.     margin-bottom:5px;
  53.     border-radius: 2ypx;
  54.     -moz-border-radius: 2px;
  55.     -webkit-border-radius: 2px;
  56.     -o-border-radius: 2px;
  57. }
  58.  
  59. #footer {
  60.     width:980px;
  61.     height:20px;
  62.     background:lightblue;
  63.     border-radius: 5ypx;
  64.     -moz-border-radius: 5px;
  65.     -webkit-border-radius: 5px;
  66.     -o-border-radius: 5px;
  67.     margin-top:20px;
  68.     clear:both;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement