Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. <ul class="menu">
  2. <li>
  3. <a href="categories.php">
  4. <div>Categories
  5. <div id="cat">
  6. <span>HTML</span>
  7. <span>CSS</span>
  8. <span>PHP</span>
  9. </div>
  10. </div>
  11. </a>
  12. </li>
  13. <li><a href="#"><div>Something</div></a></li>
  14. <li><a href="#"><div>Else</div></a></li>
  15. </ul>
  16.  
  17. /* Menu */
  18. .menu
  19. {
  20. width: 1000px;
  21. height: 103px;
  22. list-style: none;
  23. margin: 0 0 5px 0;
  24. padding: 0;
  25. }
  26.  
  27. /* Menu->Main Settings & Effects */
  28. .menu li>a
  29. {
  30. width: 198px;
  31. height: 100px;
  32. margin: 3px 2px 0 0;
  33. padding: 18px 0 0 1px;
  34. float: left;
  35. display: block;
  36. text-decoration: none;
  37. background: url(http://i.imgur.com/YBZHKcG.png);
  38. background-repeat: no-repeat;
  39. -webkit-transition: margin-top 0.1s linear;
  40. -moz-transition: margin-top 0.1s linear;
  41. -o-transition: margin-top 0.1s linear;
  42. -ms-transition: margin-top 0.1s linear;
  43. box-sizing: border-box;
  44. -moz-box-sizing: border-box;
  45. }
  46.  
  47. /* Menu->Front Face Text */
  48. .menu li>a div
  49. {
  50. width: 186px;
  51. height: 61px;
  52. text-align: center;
  53. color: #FFF;
  54. font: 24px/61px Tahoma, Geneva, sans-serif;
  55. }
  56.  
  57. /* Menu->Effects */
  58. .menu li>a:hover
  59. {
  60. width: 198px;
  61. height: 103px;
  62. margin: 0 2px 0 0;
  63. padding: 18px 0 0 1px;
  64. background: url(http://i.imgur.com/PVqqRqi.png);
  65. background-repeat: no-repeat;
  66. -webkit-transition: margin-top 0.1s linear;
  67. -moz-transition: margin-top 0.1s linear;
  68. -o-transition: margin-top 0.1s linear;
  69. -ms-transition: margin-top 0.1s linear;
  70. box-sizing: border-box;
  71. -moz-box-sizing: border-box;
  72. }
  73.  
  74. .menu li>a.current
  75. {
  76. width: 198px;
  77. height: 103px;
  78. margin: 0 2px 0 0;
  79. padding: 18px 0 0 1px;
  80. background: url(http://i.imgur.com/PVqqRqi.png);
  81. cursor: default;
  82. box-sizing: border-box;
  83. -moz-box-sizing: border-box;
  84. }
  85.  
  86. /* Menu->Categories */
  87. .menu #cat
  88. {
  89. width: 187px;
  90. height: 20px;
  91. color: #FFF;
  92. font: 17px/20px Tahoma, Geneva, sans-serif;
  93. }
  94.  
  95. .menu #cat span
  96. {
  97. float: left;
  98. width: 62px;
  99. color: #555;
  100. border-top: 1px solid white;
  101. border-right: 1px solid white;
  102. box-sizing: border-box;
  103. -moz-box-sizing: border-box;
  104. }
  105.  
  106. .menu #cat span:last-child
  107. {
  108. float: left;
  109. width: 63px;
  110. color: #555;
  111. border-top: 1px solid white;
  112. border-right: 1px solid white;
  113. box-sizing: border-box;
  114. -moz-box-sizing: border-box;
  115. }
  116.  
  117. .menu #cat .sHTML:hover {
  118. /* Effect on hover */
  119. }
  120. .menu #cat .sCSS:hover {
  121. /* Effect on hover */
  122. }
  123. .menu #cat .sPHP:hover {
  124. /* Effect on hover */
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement