Guest User

Untitled

a guest
Dec 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. .nav-slider{
  2. position:fixed;
  3. top:-100%;
  4. left:0;
  5. width:100%;
  6. height:calc(100% - 60px);
  7. background-color:$white;
  8. z-index:1;
  9. visibility:hidden;
  10. transition:top 0.2s, visibility 0s;
  11. -o-transition:top 0.2s, visibility 0s;
  12. -ms-transition:top 0.2s, visibility 0s;
  13. -moz-transition:top 0.2s, visibility 0s;
  14. -webkit-transition:top 0.2s, visibility 0s;
  15. padding-top:40px;
  16.  
  17. &.is_visible{
  18. top:60px;
  19. visibility: visible;
  20. }
  21. }
Add Comment
Please, Sign In to add comment