splash-screen.css 866 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .splash-screen {
  6. display: none;
  7. }
  8. .page-loading .splash-screen {
  9. position: absolute;
  10. z-index: 1000;
  11. width: 100%;
  12. height: 100%;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. flex-direction: column;
  17. font-family: Helvetica, "sans-serif";
  18. background-color: #f2f3f8;
  19. color: #5e6278;
  20. line-height: 1;
  21. font-size: 14px;
  22. font-weight: 400;
  23. }
  24. .page-loading .splash-screen span {
  25. color: #5e6278;
  26. transition: none !important;
  27. -webkit-font-smoothing: antialiased;
  28. }
  29. .page-loading .splash-screen img {
  30. margin-left: calc(100vw - 100%);
  31. margin-bottom: 30px;
  32. height: 30px !important;
  33. }
  34. [data-bs-theme="dark"] .splash-screen {
  35. background-color: #151521;
  36. color: #92929f;
  37. }
  38. [data-bs-theme="dark"] .splash-screen span {
  39. color: #92929f;
  40. }