Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. body.loading .loading {
  2. height: 100%;
  3. padding-top: 25%;
  4. position: absolute;
  5. width: 100%;
  6. text-align: center;
  7. background: rgba(0, 0, 0, .75);
  8. z-index: 999;
  9. }
  10.  
  11. body:not(.loading) .loading {
  12. display: none;
  13. }
  14.  
  15. .noEvents {
  16. pointer-events: none;
  17. }
  18. .noSelect {
  19. -webkit-user-select: none;
  20. user-select: none;
  21. }
  22.  
  23. .glyphicon-refresh-animate {
  24. -animation: spin .7s infinite linear;
  25. -webkit-animation: spin2 .7s infinite linear;
  26. }
  27.  
  28. @-webkit-keyframes spin2 {
  29. from {
  30. -webkit-transform: rotate(0deg);
  31. }
  32. to {
  33. -webkit-transform: rotate(360deg);
  34. }
  35. }
  36.  
  37. @keyframes spin {
  38. from {
  39. transform: scale(1) rotate(0deg);
  40. }
  41. to {
  42. transform: scale(1) rotate(360deg);
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement