Advertisement
Guest User

Untitled

a guest
Jan 12th, 2011
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. body, html {
  2.     margin: 0;
  3.     padding: 0;
  4.     background: #000;
  5.     color: white;
  6.     font-family: 'palatino linotype',palatino;
  7. }
  8.  
  9. #logo {
  10.     font-size: 20px;
  11.     margin: 10px;
  12. }
  13.  
  14. #logo h1 {
  15.     display: inline;
  16. }
  17.  
  18. #wrapper {
  19.     width: 800px;
  20.     margin-left: auto;
  21.     margin-right: auto;
  22. }
  23.  
  24. #menu {
  25.     width: 780px;
  26.     margin-left: auto;
  27.     margin-right: auto;
  28.     background: #be66b0;
  29.     text-align: center;
  30.     padding: 10px;
  31.     -moz-border-radius-topleft: 10px;
  32.     -moz-border-radius-topright: 10px;
  33.     -moz-box-shadow: inset 0px 2px 4px #C9795F;
  34. }
  35.  
  36. #menu a {
  37.     color: #a4fb3b;
  38.     font-family: 'Arial Black';
  39.     text-decoration: none;
  40. }
  41.  
  42. #menu ul {
  43.     list-style: none;
  44.     margin: 0px;
  45.     padding: 0px;
  46. }
  47.  
  48. #menu ul li {
  49.     display: inline;
  50.     margin-right: 30px;
  51. }
  52.  
  53. #menu ul li.active {
  54.     border-bottom: 3px solid #a4fb3b;
  55. }
  56.  
  57. #menu ul li:hover {
  58.     border-bottom: 1px solid #a4fb3b;
  59. }
  60.  
  61. .submenu {
  62.     width: 780px;
  63.     margin-left: auto;
  64.     margin-right: auto;
  65.     background: #764778;
  66.     text-align: center;
  67.     padding: 9px;
  68.     border-left: 1px solid #C9795F;
  69.     border-right: 1px solid #C9795F;
  70.     position: absolute;
  71. }
  72.  
  73. .submenu ul {
  74.     list-style: none;
  75.     margin: 0px;
  76.     padding: 0px;
  77. }
  78.  
  79. .submenu ul li {
  80.     display: inline;
  81.     margin-right: 23px;
  82.     padding-right: 6px;
  83. }
  84.  
  85. .submenu a {
  86.     color: #a4fb3b;
  87.     font-family: 'Arial Black';
  88.     text-decoration: none;
  89. }
  90.  
  91. .submenu ul li.active {
  92.     border-bottom: 3px solid #a4fb3b;
  93. }
  94.  
  95. .submenu ul li:hover {
  96.     border-bottom: 1px solid #a4fb3b;
  97. }
  98.  
  99. #content {
  100.     color: #9AC78B;
  101.     background: #362c45;
  102.     margin: 0px;
  103.     padding: 0px;
  104.     padding: 20px;
  105.     border-left: 1px solid #C9795F;
  106.     border-right: 1px solid #C9795F;
  107. }
  108.  
  109. #footer {
  110.     width: 796px;
  111.     margin-left: auto;
  112.     margin-right: auto;
  113.     background: grey;
  114.     text-align: center;
  115.     padding: 1px;
  116.     -moz-border-radius-bottomleft: 10px;
  117.     -moz-border-radius-bottomright: 10px;
  118.     border: 1px solid #C9795F;
  119.     border-top: 0px;
  120.     margin-bottom: 10px;
  121.     font-size: 10px;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement