| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!-- 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" />
- </head>
- <body class="dark text-sm">
- <div id="app">
- <div style="height: 40px; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; text-align: center;">
- <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>
|