Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. .Modal {
  2.  
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. height: 100%;
  7. width: 100%;
  8.  
  9. display: grid;
  10. align-items: center;
  11. justify-items: center;
  12.  
  13. background-color: rgba(0,0,0,0.5);
  14. z-index: 10;
  15. animation: darken .2s;
  16.  
  17. .content {
  18.  
  19. background-color: white;
  20. box-shadow: 0 2rem 4rem rgba(black, .2);
  21. border-radius: 3px;
  22.  
  23. overflow: hidden;
  24. opacity: 1;
  25. animation: expand .2s;
  26. z-index: 10;
  27.  
  28. }
  29. }
  30.  
  31.  
  32. @keyframes expand {
  33. from {transform: translate(0, 200%) scale(.5);}
  34. to {transform: translate(0, 0) scale(1);}
  35. }
  36.  
  37. @keyframes darken {
  38. from {background-color: transparent}
  39. to {background-color: rgba(0,0,0,0.5);}
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement