Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. .header__navigation {
  2. position: relative;
  3. z-index: 1;
  4. }
  5.  
  6. .header__navigation:after {
  7. content: "";
  8. position: absolute;
  9. z-index: -1;
  10. top: 60px;
  11. left: 0;
  12. right: 0;
  13. bottom: calc((100vh - 60px) * -1);
  14. background: rgba(0,0,0,.5);
  15. transition: 300ms all linear;
  16. opacity: 0;
  17. visibility: hidden;
  18. }
  19.  
  20. .header__navigation.hovered:after {
  21. opacity: 1;
  22. visibility: visible;
  23. }
  24.  
  25. @media(max-width: 960px) {
  26. .header__navigation:after {display: none !important;}
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement