Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 22nd, 2010 | Syntax: CSS | Size: 0.92 KB | Hits: 63 | Expires: Never
Copy text to clipboard
  1. #container {
  2.     position:relative;
  3.     min-height: 100%;
  4.     height: auto !important;
  5.     height:100%;
  6. }
  7. #header {
  8.     position:inherit;
  9.     background-image: url(../../../Stempeluhr_projekt/css/logo.gif);
  10.     background-position:left;
  11.     background-repeat: no-repeat;
  12.     background-color:aqua;
  13. }
  14. #maincontent {
  15. }
  16.  
  17. #content {
  18.     position: absolute;
  19.     clear: left;
  20.     background-color: yellow;
  21.     width: 500px;
  22. }
  23. #navi {
  24.     float:left;
  25.     background-color: fuchsia;
  26.     width: 150px;
  27.     height: 400px;
  28.     text-align: left;
  29. }
  30. #footer {
  31.     clear: left;
  32.     text-align:center;
  33.     bottom: 2px;
  34.     background-color: blue;
  35.     width: 100%;
  36.     height: 20px;
  37. }
  38. #navi a:link{
  39.         color:black;
  40.         text-decoration: none;
  41. }
  42.  
  43. #navi a:visited{
  44.         color: black;
  45.         text-decoration: none
  46. }
  47.  
  48. #navi a:hover{
  49.         color: gray;
  50.         text-decoration: none
  51. }
  52.  
  53. #navi a:active{
  54.         color: black;
  55.         text-decoration: none
  56. }