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.

84 lines
1.9 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <link rel="stylesheet" href="/iconfont.css" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <title>Pure-Admin-Thin</title>
  9. <script>
  10. window.process = {};
  11. </script>
  12. </head>
  13. <body>
  14. <div id="app">
  15. <style>
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. html,
  21. body {
  22. width: 100%;
  23. height: 100%;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. background: #000;
  28. overflow: hidden;
  29. font-family: "Reggae One", cursive;
  30. }
  31. p {
  32. font-size: 8vw;
  33. overflow: hidden;
  34. -webkit-text-stroke: 3px #7272a5;
  35. }
  36. span {
  37. display: block;
  38. font-size: 20px;
  39. overflow: hidden;
  40. color: green;
  41. text-align: center;
  42. }
  43. p::before {
  44. content: " ";
  45. width: 100%;
  46. height: 100%;
  47. position: absolute;
  48. left: 0;
  49. top: 0;
  50. background-image: linear-gradient(45deg, #ff269b, #2ab5f5, #ffbf00);
  51. mix-blend-mode: multiply;
  52. }
  53. p::after {
  54. content: "";
  55. background: radial-gradient(circle, #fff, #000 50%);
  56. background-size: 25% 25%;
  57. position: absolute;
  58. top: -100%;
  59. left: -100%;
  60. right: 0;
  61. bottom: 0;
  62. mix-blend-mode: color-dodge;
  63. animation: mix 2s linear infinite;
  64. }
  65. @keyframes mix {
  66. to {
  67. transform: translate(50%, 50%);
  68. }
  69. }
  70. </style>
  71. <div class="g-container">
  72. <p>Pure-Admin</p>
  73. </div>
  74. </div>
  75. <script type="module" src="/src/main.ts"></script>
  76. </body>
  77. </html>