You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.2 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>pure-admin-thin</title>
  8. <script>
  9. window.process = {};
  10. </script>
  11. </head>
  12. <body>
  13. <div id="app">
  14. <style>
  15. * {
  16. margin: 0;
  17. padding: 0;
  18. }
  19. html,
  20. body {
  21. width: 100%;
  22. height: 100%;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. overflow: hidden;
  27. font-family: "Reggae One", cursive;
  28. }
  29. .loader,
  30. .loader:before,
  31. .loader:after {
  32. border-radius: 50%;
  33. width: 2.5em;
  34. height: 2.5em;
  35. -webkit-animation-fill-mode: both;
  36. animation-fill-mode: both;
  37. -webkit-animation: loadAnimation 1.8s infinite ease-in-out;
  38. animation: loadAnimation 1.8s infinite ease-in-out;
  39. }
  40. .loader {
  41. color: #406eeb;
  42. font-size: 10px;
  43. margin: 80px auto;
  44. position: relative;
  45. text-indent: -9999em;
  46. -webkit-transform: translateZ(0);
  47. -ms-transform: translateZ(0);
  48. transform: translateZ(0);
  49. -webkit-animation-delay: -0.16s;
  50. animation-delay: -0.16s;
  51. }
  52. .loader:before,
  53. .loader:after {
  54. content: "";
  55. position: absolute;
  56. top: 0;
  57. }
  58. .loader:before {
  59. left: -3.5em;
  60. -webkit-animation-delay: -0.32s;
  61. animation-delay: -0.32s;
  62. }
  63. .loader:after {
  64. left: 3.5em;
  65. }
  66. @-webkit-keyframes loadAnimation {
  67. 0%,
  68. 80%,
  69. 100% {
  70. box-shadow: 0 2.5em 0 -1.3em;
  71. }
  72. 40% {
  73. box-shadow: 0 2.5em 0 0;
  74. }
  75. }
  76. @keyframes loadAnimation {
  77. 0%,
  78. 80%,
  79. 100% {
  80. box-shadow: 0 2.5em 0 -1.3em;
  81. }
  82. 40% {
  83. box-shadow: 0 2.5em 0 0;
  84. }
  85. }
  86. </style>
  87. <div class="loader">Loading...</div>
  88. </div>
  89. <script type="module" src="/src/main.ts"></script>
  90. </body>
  91. </html>