Loading.css 677 B

123456789101112131415161718192021222324252627282930313233343536
  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. }
  17. #loadingText {
  18. color: #888888;
  19. cursor: default;
  20. font-size: 30px;
  21. height: 60px;
  22. left: 0;
  23. margin-top: -30px;
  24. padding-top: 10px;
  25. position: absolute;
  26. text-align: center;
  27. top: 50%;
  28. transition: transform 0.25s ease-in-out 0s;
  29. width: 100%;
  30. z-index: 3;
  31. }
  32. .loadingText {
  33. transform: translateX(120%);
  34. }