Advertisement
KHIT

downsgaming_css_menu

Mar 15th, 2012
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1. #header {
  2.     background-image:url(images/header.jpg);
  3.     background-repeat:no-repeat;
  4.     width:768px;
  5.     height:262px;
  6. }
  7. #menu {
  8.     position:relative;
  9.     background-image:url(images/menu.jpg);
  10.     background-repeat:no-repeat;
  11.     width:768px;
  12.     height:117px;
  13. }
  14. #menu ul{
  15.     position:absolute;
  16.     top:30px;
  17.     left:265px;
  18.     margin: 0;
  19.     padding: 0;
  20.     list-style: none;
  21.  
  22. }
  23. #menu li{
  24.     padding: 0 0 0 10px;
  25.     display: inline;
  26.     position: relative;
  27. }
  28. #menu li ul{
  29.     padding-top: 5px;
  30.     display: none;
  31.     position: absolute;
  32.     top: 30px;
  33.     z-index: 999;
  34. }
  35. #menu li:hover ul{
  36.     display: block;
  37.     background-color: #000;
  38.     opacity: 0.5;
  39.     left: auto;
  40.     top: auto;
  41.     right: auto;
  42.     bottom: auto;
  43. }
  44. #submenu ul li a, #submenu a:visited {
  45.     text-align: center;
  46.     margin-left: 5px;
  47.     text-decoration: none;
  48.     position: relative;
  49. }
  50.  
  51. #menu a{
  52.     font-family: Arial, Helvetica, sans-serif;
  53.     font-size: 14px;
  54.     font-weight: bolder;
  55.     text-transform: uppercase;
  56.     color: #d8cd8d;
  57.     text-decoration: none;
  58. }
  59. #menu a:hover{
  60.     color:#3e3c27;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement