Guest User

Untitled

a guest
Oct 24th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.77 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3. * {
  4.     margin: 0;
  5.     padding: 0;
  6. }
  7.  
  8. #container {
  9.     width: 1000px;
  10.     margin: 0 auto;
  11.    
  12. }
  13.  
  14. #header {
  15.     -webkit-border-radius: 5px;  
  16.     -moz-border-radius: 5px;  
  17.     border-radius: 5px;  
  18.     -webkit-box-shadow: 2px 3px 5px #000;  
  19.     -moz-box-shadow: 2px 3px 5px #000;
  20.     box-shadow: 2px 3px 5px #000;
  21.     width: 100%;
  22.     background-color: #999;
  23.     height: 100px;
  24.     background-position: center;
  25. }
  26.  
  27.  
  28. #navigation {
  29.     margin: 15px 0px 15px 15px;
  30.     width: 100%;
  31.     overflow: auto;
  32.  
  33. }
  34.    
  35.    
  36. #navigation li {
  37.     list-style-type: none;
  38.     float: left;
  39.     margin-left: 5px;
  40.  
  41. }
  42.  
  43. #navigation a {
  44.     margin-left: 5px;
  45.     display: block;
  46.     padding-left: 15px;
  47.     text-decoration: none; 
  48.     color: #77F;
  49.     text-shadow: 1px 0px 3px #000;
  50.     border: 1px solid #000;
  51.     -webkit-border-radius: 5px;
  52.     -moz-border-radius: 5px;
  53.     border-radius: 5px;
  54.     height: 30px;
  55.     background-color: #888;
  56.     -webkit-box-shadow: 1px 1px 2px #000;
  57.     -moz-box-shadow: 1px 1px 2px #000;
  58.     box-shadow: 1px 1px 2px #000;
  59. }
  60.  
  61.  
  62. #navigation a:hover {
  63.     display: block;
  64.     padding-left: 15px;
  65.     text-decoration: none; 
  66.     color:  #555;
  67.     text-shadow: 3px 0px 6px #FF2;
  68. }
  69.  
  70.  
  71.  
  72. #inhalt {
  73.     min-height: 750px;
  74.     background-color: #CDC;
  75.     border-style: solid;
  76.     border-color: #666;
  77.     -webkit-border-radius: 8px;
  78.     -moz-border-radius: 8px;
  79.     border-radius: 8px;
  80.     text-align: center;
  81.     text-shadow: 1px 0px 2px #666;
  82.    
  83. }
  84.  
  85. #footer {
  86.     -webkit-border-radius: 5px;  
  87.     -moz-border-radius: 5px;  
  88.     border-radius: 5px;  
  89.    
  90.     -webkit-box-shadow: 2px 3px 5px #000;  
  91.     -moz-box-shadow: 2px 3px 5px #000;
  92.     box-shadow: 2px 3px 5px #000;
  93.    
  94.     width: auto;
  95.     background-color: #888;
  96.     height: 40px;
  97.     text-shadow: 0px 0px 0px #333; 
  98. }
  99.  
  100. #footer h1 {
  101.     font-size: 12px;
  102.     text-align: center;
  103.    
  104. }
Add Comment
Please, Sign In to add comment