Advertisement
Guest User

Untitled

a guest
May 27th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. .modal {
  2. position: absolute;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. z-index: 10000;
  8. }
  9.  
  10. .modal-off {
  11. visibility: hidden;
  12. animation: fadeout 0.4s linear 1 normal
  13. }
  14.  
  15. @keyframes fadeout {
  16. 0% {
  17. visibility: visible;
  18. opacity: 1.0;
  19. }
  20. 100% {
  21. visibility: hidden;
  22. opacity: 0;
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement