| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!-- eslint-disable -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>FreeShort</title>
- <base href="/" />
- <meta name="color-scheme" content="dark" />
- <meta name="viewport"
- content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
- <meta name="format-detection" content="telephone=no" />
- <meta name="msapplication-tap-highlight" content="no" />
- <link rel="shortcut icon" type="image/png" href="/favicon.png" />
- <!-- add to homescreen for ios -->
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-title" content="Ionic App" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <link
- href="https://fonts.googleapis.com/css2?family=Lalezar&display=swap"
- rel="stylesheet">
- </head>
- <body class="dark">
- <div id="app">
- <div class="absolute h-[40px] left-0 top-0 right-0 bottom-0 m-auto">
- <svg class="m-auto" width="40" height="40" stroke="#ffffffcc" viewBox="0 0 24 24"
- xmlns="http://www.w3.org/2000/svg">
- <style>
- .spinner_V8m1 {
- transform-origin: center;
- animation: spinner_zKoa 2s linear infinite
- }
- .spinner_V8m1 circle {
- stroke-linecap: round;
- animation: spinner_YpZS 1.5s ease-in-out infinite
- }
- @keyframes spinner_zKoa {
- 100% {
- transform: rotate(360deg)
- }
- }
- @keyframes spinner_YpZS {
- 0% {
- stroke-dasharray: 0 150;
- stroke-dashoffset: 0
- }
- 47.5% {
- stroke-dasharray: 42 150;
- stroke-dashoffset: -16
- }
- 95%,
- 100% {
- stroke-dasharray: 42 150;
- stroke-dashoffset: -59
- }
- }
- </style>
- <g class="spinner_V8m1">
- <circle cx="12" cy="12" r="9.5" fill="none" stroke-width="3"></circle>
- </g>
- </svg>
- </div>
- </div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|