Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. // DESKTOP
  2.  
  3. #nav,
  4. #nav li,
  5. #nav ul { list-style: none; margin: 0; padding: 0; }
  6. #nav { position: relative; z-index: 597; float: left; }
  7. #nav li { float: left; vertical-align: middle; zoom: 1; }
  8. #nav li:hover { position: relative; z-index: 599; cursor: default; }
  9. #nav ul { display:none; position: absolute; top: 100%; left: 0; z-index: 598; width: 200px; }
  10. #nav ul li {float: none;}
  11. #nav ul li a { text-transform: none; }
  12. #nav ul li a span { display: inline-block; }
  13. #nav ul ul {top: -4px;left: 100%;}
  14. #nav li:hover > ul {display:block;}
  15.  
  16. .mobile { display: none; }
  17.  
  18. // MOBILE
  19.  
  20. @media screen and (max-width: XXXpx) {
  21.  
  22. #nav { display: block; float: none; position: absolute; }
  23. #nav li { float: none; width: 100%; }
  24. #nav li { display: block; }
  25. #nav li ul { display: block; position: static; width: 100%; }
  26.  
  27. .nav-toggle.mobile { display: block; }
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement