Advertisement
SoloPlayer

Untitled

Feb 4th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.00 KB | None | 0 0
  1. <style>
  2. #menu
  3. {
  4. width: 100%;
  5. margin: 0;
  6. padding: 10px 0 0 0;
  7. list-style: none;
  8. background: #000000;
  9. background: -moz-linear-gradient(#444, #000000);
  10. background: -webkit-gradient(linear,left bottom,left top,color-stop(1, #111),color-stop(1, #444));
  11. background: -webkit-linear-gradient(#444, #111);
  12. background: -o-linear-gradient(#444, #111);
  13. background: -ms-linear-gradient(#444, #111);
  14. background: linear-gradient(#444, #111);
  15. -moz-border-radius: 50px;
  16. border-radius: 50px;
  17. -moz-box-shadow: 0 2px 0px #9c9c9c;
  18. -webkit-box-shadow: 0 2px 0px #9c9c9c;
  19. box-shadow: 0 2px 0px #9c9c9c;
  20. }
  21. #menu li
  22. {
  23. float: left;
  24. padding: 0 0 10px 0;
  25. position: relative;
  26. line-height: 0;
  27. }
  28. #menu a
  29. {
  30. float: left;
  31. height: 25px;
  32. padding: 0 25px;
  33. color: #999;
  34. text-transform: uppercase;
  35. font: bold 12px/25px Arial, Helvetica;
  36. text-decoration: none;
  37. text-shadow: 0 1px 0 #000;
  38. }
  39. #menu li:hover > a
  40. {
  41. color: #fafafa;
  42. }
  43. *html #menu li a:hover /* IE6 */
  44. {
  45. color: #fafafa;
  46. }
  47. #menu li:hover > ul
  48. {
  49. display: block;
  50. }
  51. /* Sub-menu */
  52. #menu ul
  53. {
  54. list-style: none;
  55. margin: 0;
  56. padding: 0;
  57. display: none;
  58. position: absolute;
  59. top: 35px;
  60. left: 0;
  61. z-index: 99999;
  62. background: #444;
  63. background: -moz-linear-gradient(#444, #111);
  64. background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));
  65. background: -webkit-linear-gradient(#444, #111);
  66. background: -o-linear-gradient(#444, #111);
  67. background: -ms-linear-gradient(#444, #111);
  68. background: linear-gradient(#444, #111);
  69. -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
  70. -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
  71. box-shadow: 0 0 2px rgba(255,255,255,.5);
  72. -moz-border-radius: 5px;
  73. border-radius: 2px;
  74. }
  75. #menu ul ul
  76. {
  77. top: 0;
  78. left: 150px;
  79. }
  80. #menu ul li
  81. {
  82. float: none;
  83. margin: 0;
  84. padding: 0;
  85. display: block;
  86. -moz-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
  87. -webkit-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
  88. box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
  89. }
  90. #menu ul li:last-child
  91. {
  92. -moz-box-shadow: none;
  93. -webkit-box-shadow: none;
  94. box-shadow: none;
  95. }
  96. #menu ul a
  97. {
  98. padding: 10px;
  99. height: 10px;
  100. width: 130px;
  101. height: auto;
  102. line-height: 1;
  103. display: block;
  104. white-space: nowrap;
  105. float: none;
  106. text-transform: none;
  107. }
  108. *html #menu ul a /* IE6 */
  109. {
  110. height: 10px;
  111. }
  112. *:first-child+html #menu ul a /* IE7 */
  113. {
  114. height: 10px;
  115. }
  116. #menu ul a:hover
  117. {
  118. background: #0186ba;
  119. background: -moz-linear-gradient(#04acec, #0186ba);
  120. background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
  121. background: -webkit-linear-gradient(#04acec, #0186ba);
  122. background: -o-linear-gradient(#04acec, #0186ba);
  123. background: -ms-linear-gradient(#04acec, #0186ba);
  124. background: linear-gradient(#04acec, #0186ba);
  125. }
  126. #menu ul li:first-child > a
  127. {
  128. -moz-border-radius: 5px 5px 0 0;
  129. border-radius: 5px 5px 0 0;
  130. }
  131. #menu ul li:first-child > a:after
  132. {
  133. content: '';
  134. position: absolute;
  135. left: 30px;
  136. top: -8px;
  137. width: 0;
  138. height: 0;
  139. border-left: 5px solid transparent;
  140. border-right: 5px solid transparent;
  141. border-bottom: 8px solid #444;
  142. }
  143. #menu ul ul li:first-child a:after
  144. {
  145. left: -8px;
  146. top: 12px;
  147. width: 0;
  148. height: 0;
  149. border-left: 0;
  150. border-bottom: 5px solid transparent;
  151. border-top: 5px solid transparent;
  152. border-right: 8px solid #444;
  153. }
  154. #menu ul li:first-child a:hover:after
  155. {
  156. border-bottom-color: #04acec;
  157. }
  158. #menu ul ul li:first-child a:hover:after
  159. {
  160. border-right-color: #04acec;
  161. border-bottom-color: transparent;
  162. }
  163.  
  164. #menu ul li:last-child > a
  165. {
  166. -moz-border-radius: 0 0 5px 5px;
  167. border-radius: 0 0 5px 5px;
  168. }
  169. /* Clear floated elements */
  170. #menu:after
  171. {
  172. visibility: hidden;
  173. display: block;
  174. font-size: 0;
  175. content: " ";
  176. clear: both;
  177. height: 0;
  178. }
  179. * html #menu { zoom: 1; } /* IE6 */
  180. *:first-child+html #menu { zoom: 1; } /* IE7 */
  181. </style>
  182. <ul id="menu">
  183. <li><a href='/'>Home</a></li>
  184. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='nofollow' target='_blank'>Drop menu</a>
  185. <ul>
  186. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 1</a></li>
  187. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 2</a></li>
  188. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3</a></li>
  189. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 4</a></li>
  190. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 5</a></li>
  191. </ul>
  192. </li>
  193. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='nofollow' target='_blank'>Drop menu 2</a>
  194. <ul>
  195. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 1</a></li>
  196. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 2</a></li>
  197. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3</a>
  198. <ul>
  199. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3.1</a></li>
  200. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3.2</a></li>
  201. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3.3</a></li>
  202. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3.4</a></li>
  203. </ul>
  204. </li>
  205. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 4</a></li>
  206. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 5</a></li>
  207. </ul>
  208. </li>
  209. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='nofollow' target='_blank'>Drop menu 3</a>
  210. <ul>
  211. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 1</a></li>
  212. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 2</a></li>
  213. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 3</a></li>
  214. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 4</a></li>
  215. <li><a href='http://bukarahasia-no1.blogspot.com/' rel='dofollow' target='_blank'>Menu 5</a></li>
  216. </ul></li></ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement