splash-screen.css 1.1 KB

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