Loading.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. }
  37. #loadingInfos {
  38. color: #888888;
  39. cursor: default;
  40. font-size: 30px;
  41. height: 60px;
  42. left: 0;
  43. margin-top: -30px;
  44. padding-top: 10px;
  45. position: absolute;
  46. text-align: center;
  47. bottom: 0;
  48. transition: transform 0.25s ease-in-out 0s;
  49. width: calc(100% - 10px);
  50. z-index: 3;
  51. border: 5px dotted gray;
  52. pointer-events: none;
  53. }
  54. #loadingInfos .content {
  55. position: relative;
  56. top: 50%;
  57. }
  58. .loadingInfos {
  59. transform: translateX(120%);
  60. -webkit-transform: translate(120%);
  61. }