generated from MM-IT-SOFT-LTD/vite-react-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (21 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="apple-touch-icon" href="favicon.svg" sizes="180x180">
<meta name="description" content="Word finder application. Find a word with least known characters." />
<title>Word Finder</title>
<meta name="theme-color" content="#334155">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap">
<style type="text/css">
#loading {position: fixed;top: 0;right: 0;bottom: 0;left: 0;background-color: #CBD5E1;z-index: 1000;display: flex;justify-content: center;align-items: center;font-size: 3rem;}.bounce:nth-child(1){animation: bounce 400ms alternate infinite; margin-left: .5rem;}.bounce:nth-child(2){animation: bounce 400ms alternate infinite 400ms;}.bounce:nth-child(3){animation: bounce 400ms alternate infinite 800ms;}@keyframes bounce {from {transform: translateY(0);}to {transform: translateY(-.5rem);}}
</style>
</head>
<body class="font-sans antialiased">
<div id="loading">Loading <span class="bounce">.</span><span class="bounce">.</span><span class="bounce">.</span></div>
<div id="root"></div>
<script type="module" src="/src/main.tsx" defer></script>
</body>
</html>