Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. /* --- HMenu-Box ---*/
  2. #screen_box #outer_hmenu_box {
  3. clear: both;
  4. width: 100%;
  5. background: url('../images/shadow_middle.png');
  6. background-repeat: repeat-y;
  7. background-position: top center;
  8. }
  9.  
  10. #screen_box #outer_hmenu_box #inner_hmenu_box {
  11. margin: 0 auto 0 auto;
  12. height: 30px;
  13. width: 935px;
  14. background-color: #0a6754;
  15. border: 10px solid #ffffff;
  16. border-bottom: 0;
  17. }
  18.  
  19.  
  20. /* --- Main-Menu --- */
  21. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu {
  22. list-style: none;
  23. margin: 0;
  24. padding: 0 20px 3px 20px;
  25. width: 100%;
  26. }
  27.  
  28. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li {
  29. float: left;
  30. }
  31.  
  32. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul {
  33. list-style: none;
  34. margin: 0;
  35. padding: 0;
  36. display: none;
  37. position: absolute;
  38. width: 180px;
  39. border-top: 1px solid #ffffff;
  40. }
  41.  
  42. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li {
  43. float: none;
  44. position: relative;
  45. border: 1px solid #ffffff;
  46. border-top: 0;
  47. }
  48.  
  49. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li ul {
  50. left: 173px;
  51. top: 0;
  52. border-top: 1px solid #ffffff;
  53. }
  54.  
  55. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li:hover ul ul {
  56. display: none;
  57. }
  58.  
  59. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li:hover ul,
  60. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu ul li:hover ul {
  61. display: block;
  62. }
  63.  
  64. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li:hover ul {
  65. margin: -1px 0 0 5px;
  66. }
  67.  
  68.  
  69. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li.no a {
  70. display: block;
  71. padding: 8px 25px 8px 25px;
  72. color: #ffffff;
  73. text-decoration: none;
  74. font-weight: bold;
  75. }
  76. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li.no a:hover {
  77. background-color: #1B987F;
  78. }
  79. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li.act a {
  80. display: block;
  81. padding: 8px 25px 8px 25px;
  82. color: #cc2136;
  83. text-decoration: none;
  84. font-weight: bold;
  85. background-color: #ffffff;
  86. }
  87. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li.cur a {
  88. display: block;
  89. padding: 8px 25px 8px 25px;
  90. color: #cc2136;
  91. text-decoration: none;
  92. font-weight: bold;
  93. background-color: #ffffff;
  94. }
  95.  
  96.  
  97. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li.no a {
  98. color: #ffffff;
  99. padding: 4px;
  100. text-decoration: none;
  101. font-weight: normal;
  102. height: 100%;
  103. background-color: #0a6754;
  104. }
  105. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li.no a:hover {
  106. background-color: #1B987F;
  107. }
  108. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li.act a {
  109. color: #ffffff;
  110. padding: 4px;
  111. text-decoration: none;
  112. font-weight: normal;
  113. height: 100%;
  114. background-color: #0a6754;
  115. }
  116. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li.cur a {
  117. color: #ffffff;
  118. padding: 4px;
  119. text-decoration: none;
  120. font-weight: normal;
  121. height: 100%;
  122. background-color: #0a6754;
  123. }
  124.  
  125.  
  126. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li ul li.no a {
  127. color: #ffffff;
  128. padding: 4px;
  129. text-decoration: none;
  130. font-weight: normal;
  131. height: 100%;
  132. background-color: #0a6754;
  133. }
  134. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li ul li.no a:hover {
  135. background-color: #1B987F;
  136. }
  137. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li ul li.act a {
  138. color: #ffffff;
  139. padding: 4px;
  140. text-decoration: none;
  141. font-weight: normal;
  142. height: 100%;
  143. background-color: #0a6754;
  144. }
  145. #screen_box #outer_hmenu_box #inner_hmenu_box ul.main_menu li ul li ul li.cur a {
  146. color: #ffffff;
  147. padding: 4px;
  148. text-decoration: none;
  149. font-weight: normal;
  150. height: 100%;
  151. background-color: #0a6754;
  152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement