game_min.css 925 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .fakeloader{
  2. position: fixed; width: 100%; height: 100%; top: 0px;
  3. left: 0px; z-index: 999; background-color: rgb(46, 204, 113);
  4. }
  5. .spinner1 {
  6. width: 40px;
  7. height: 40px;
  8. position: relative;
  9. left: 50%; top: 50%; margin-left:-20px;margin-top:-20px;
  10. }
  11. .double-bounce1, .double-bounce2 {
  12. width: 100%;
  13. height: 100%;
  14. border-radius: 50%;
  15. background-color: #fff;
  16. opacity: 0.6;
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. -webkit-animation: bounce 2.0s infinite ease-in-out;
  21. animation: bounce 2.0s infinite ease-in-out;
  22. }
  23. .double-bounce2 {
  24. -webkit-animation-delay: -1.0s;
  25. animation-delay: -1.0s;
  26. }
  27. @-webkit-keyframes bounce {
  28. 0%, 100% { -webkit-transform: scale(0.0) }
  29. 50% { -webkit-transform: scale(1.0) }
  30. }
  31. @keyframes bounce {
  32. 0%, 100% {
  33. transform: scale(0.0);
  34. -webkit-transform: scale(0.0);
  35. } 50% {
  36. transform: scale(1.0);
  37. -webkit-transform: scale(1.0);
  38. }
  39. }