Advertisement
Guest User

Untitled

a guest
May 21st, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. //nav white after scroll
  2. .Header {
  3. position: fixed!important;
  4. z-index: 1000;
  5. width: 100%;
  6. -webkit-transition: all .2s ease;
  7. -o-transition: all .2s ease;
  8. transition: all .2s ease;
  9. }
  10.  
  11. .Header-inner {
  12. padding-top: 50px;
  13. -webkit-transition: all .2s ease;
  14. -o-transition: all .2s ease;
  15. transition: all .2s ease;
  16. }
  17.  
  18. .Header.scrollNav {
  19. background: #fff!important;
  20. padding-bottom: 10px;
  21.  
  22. .Header-inner {
  23. padding-top: 10px!important;
  24. }
  25.  
  26. .Header-branding {
  27. color: #000;
  28. }
  29.  
  30. .Header-nav a {
  31. color: #a3a4a4 !important;
  32.  
  33. &:hover {
  34. color: #019A99 !important;
  35. }
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement