Advertisement
Guest User

Untitled

a guest
Jun 29th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.23 KB | None | 0 0
  1. #access ul ul {
  2.     -moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  3.     -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  4.     box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  5.     display: none;
  6.     float: left;
  7.     margin: 0;
  8.     position: absolute;
  9.     top: 3.333em;
  10.     left: 0;
  11.     width: 188px;
  12.     z-index: 99999;
  13. }
  14. #access ul ul ul {
  15.     left: 100%;
  16.     top: 0;
  17. }
  18. #access ul ul a {
  19.     background: #f9f9f9;
  20.     border-bottom: 1px dotted #ddd;
  21.     color: #444;
  22.     font-size: 13px;
  23.     font-weight: normal;
  24.     height: auto;
  25.     line-height: 1.4em;
  26.     padding: 10px 10px;
  27.     width: 168px;
  28. }
  29. #access li:hover > a,
  30. #access ul ul :hover > a,
  31. #access a:focus {
  32.     background: #efefef;
  33. }
  34. #access li:hover > a,
  35. #access a:focus {
  36.     background: #f9f9f9; /* Show a solid color for older browsers */
  37.     background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
  38.     background: -o-linear-gradient(#f9f9f9, #e5e5e5);
  39.     background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */
  40.     background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
  41.     color: #373737;
  42. }
  43. #access ul li:hover > ul {
  44.     display: block;
  45. }
  46. #access .current-menu-item > a,
  47. #access .current-menu-ancestor > a,
  48. #access .current_page_item > a,
  49. #access .current_page_ancestor > a {
  50.     font-weight: bold;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement