Advertisement
Guest User

menu

a guest
Apr 25th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. .menu{
  2. border:none;
  3. border:0px;
  4. margin:0px;
  5. padding:0px;
  6. font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
  7. font-size:14px;
  8. font-weight:bold;
  9. margin-left:12.75px;
  10. }
  11. .menu ul{
  12. background:#000000;
  13. height:35px;
  14. list-style:none;
  15. margin:0;
  16. padding:0;
  17. }
  18. .menu li{
  19. float:left;
  20. padding:0px;
  21. }
  22. .menu li a{
  23. background:#000000 url("/images/seperator.gif") bottom right no-repeat;
  24. color:#cccccc;
  25. display:block;
  26. font-weight:normal;
  27. line-height:35px;
  28. margin:0px;
  29. padding:0px 25px;
  30. text-align:center;
  31. text-decoration:none;
  32. }
  33. .menu li a:hover, .menu ul li:hover a{
  34. background: #333092 url("/images/hover.gif") bottom center no-repeat;
  35. color:#FFFFFF;
  36. text-decoration:none;
  37. }
  38. .menu li ul{
  39. background:#000000;
  40. display:none;
  41. height:auto;
  42. padding:0px;
  43. margin:0px;
  44. border:0px;
  45. position:absolute;
  46. width:225px;
  47. z-index:200;
  48. /*top:1em;
  49. /*left:0;*/
  50. }
  51. .menu li:hover ul{
  52. display:block;
  53.  
  54. }
  55. .menu li li {
  56. background:url('/images/sub_sep.gif') bottom left no-repeat;
  57. display:block;
  58. float:none;
  59. margin:0px;
  60. padding:0px;
  61. width:225px;
  62. }
  63. .menu li:hover li a{
  64. background:none;
  65.  
  66. }
  67. .menu li a{
  68. display:block;
  69. height:35px;
  70. font-size:12px;
  71. font-style:normal;
  72. margin:0px;
  73. padding:0px 10px 0px 15px;
  74. text-align:left;
  75. }
  76. .menu li ul a:hover, .menu li ul li:hover a{
  77. background:#333092 url('/images/hover_sub.gif') center left no-repeat;
  78. border:0px;
  79. color:#ffffff;
  80. text-decoration:none;
  81. }
  82. .menu p{
  83. clear:left;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement