Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. martial-loading {
  2.  
  3. .container {
  4.  
  5. z-index: -1;
  6. transition: z-index 0.2s step-end;
  7.  
  8. width: 100%;
  9. height: 100%;
  10. position: absolute;
  11.  
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15.  
  16. &.busy {
  17. z-index: 9999;
  18. transition: z-index 0.2s step-start;
  19. .backdrop {
  20. opacity: 0.3;
  21. }
  22. }
  23.  
  24. .backdrop {
  25. opacity: 0.01;
  26. transition: opacity 0.2s;
  27. }
  28.  
  29. ion-spinner {
  30. width: 60px;
  31. height: 60px;
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement