Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. /* Navigation */
  2.  
  3. .navWrapper {
  4. width: 100%;
  5. position: fixed;
  6. padding: 12px 0;
  7. background-color: #fffff;
  8. top: 0;
  9. z-index: 99999;
  10. text-align:center;
  11. }
  12. .navWrapper ul {
  13. margin:0;
  14. padding:0;
  15. }
  16. .navWrapper li {
  17. list-style: none;
  18. display: inline-block;
  19. margin:0;
  20. padding:0;
  21. margin: 0 15px;
  22. vertical-align: middle;
  23. }
  24. .navWrapper li a {
  25. text-decoration: none;
  26. color: #ffcc00;
  27. font-size: 30px;
  28. }
  29. li.active a { color: #ffbf00 !important; }
  30. .navWrapper li a:hover {
  31. color: #ffbf00;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement