Loading.css 759 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #loadingBack {
  2. background-color: #FFFFFF;
  3. border: 1px solid #888888;
  4. cursor: default;
  5. height: 60px;
  6. left: 0;
  7. margin-top: -30px;
  8. position: absolute;
  9. top: 50%;
  10. transition: transform 0.25s ease-in-out 0s;
  11. width: 100%;
  12. z-index: 3;
  13. }
  14. .loadingBack {
  15. transform: translateX(-120%);
  16. -webkit-transform: translate(-120%);
  17. }
  18. #loadingText {
  19. color: #888888;
  20. cursor: default;
  21. font-size: 30px;
  22. height: 60px;
  23. left: 0;
  24. margin-top: -30px;
  25. padding-top: 10px;
  26. position: absolute;
  27. text-align: center;
  28. top: 50%;
  29. transition: transform 0.25s ease-in-out 0s;
  30. width: 100%;
  31. z-index: 3;
  32. }
  33. .loadingText {
  34. transform: translateX(120%);
  35. -webkit-transform: translate(120%);
  36. }