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.

105 lines
2.4 KiB

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