Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. body {
  2. height: 2500px;
  3. &.-modal-open {
  4. overflow: hidden;
  5. }
  6. }
  7. .fixed {
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. padding: 20px 0;
  13. background: #FF0000;
  14. }
  15. .modal {
  16. overflow-x: hidden;
  17. overflow-y: scroll;
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. bottom: 0;
  23. background: rgba(0, 0, 0, 0.4);
  24. opacity: 0;
  25. transition: opacity .2s ease-in-out;
  26. body.-modal-open & {
  27. opacity: 1;
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement