Advertisement
Guest User

Untitled

a guest
Feb 16th, 2014
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.19 KB | None | 0 0
  1. header .top-meniu {
  2.     width: 100%;
  3.     background: url('../images/menu-bg.png') no-repeat right #8ec03f;
  4.     position: relative;
  5.     height: 50px;
  6. }
  7.  
  8. header .top-meniu .holder {
  9.     position: absolute;
  10.     width: 940px;
  11.     top: 0;
  12.     left: 50%;
  13.     margin-left: -470px;
  14. }
  15.  
  16. header .top-meniu ul {
  17.    
  18. }
  19.  
  20. header .top-meniu ul li {
  21.     float: left;
  22.     position: relative;
  23.     display: block;
  24.     line-height: 50px;
  25.     height: 50px;
  26.     margin: 0;
  27.     padding: 0;
  28. }
  29.  
  30. header .top-meniu ul li a {
  31.     color: #fff;
  32.     font-family: 'Conv_DaxlinePro-Bold';
  33.     font-size: 14px;
  34.     text-transform: uppercase;
  35.     text-decoration: none;
  36.     letter-spacing: 1px;
  37.     display: block;
  38.     padding: 0 20px;
  39. }
  40.  
  41. header .top-meniu ul  li  a:hover {
  42.     background: #ffc01f;
  43. }
  44.  
  45. header .top-meniu ul li:hover > a, header .top-meniu ul li.active > a { background: #ffc01f; }
  46.  
  47. header .top-meniu ul ul {
  48.     background: #ffc220;
  49.     visibility: hidden;
  50.     position: absolute;
  51.     height: 115px;
  52.     top: 100%;
  53.     left: 0;
  54.     z-index: 598;
  55.     width: 940px;
  56.    
  57. }
  58.  
  59. header .top-meniu ul ul li {
  60.     float: left;
  61.     display: block;
  62.     height: 115px;
  63.     line-height: 115px;
  64.     border-right: 1px solid #ffcf51;
  65. }
  66.  
  67. header .top-meniu ul ul li:hover a {
  68.     text-decoration: underline;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement