-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en" style="background-color: hsl(0, 0%, 50%);
">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Make Times Forward</title>
<style>
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div style="
height: 90vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
text-align: center;
font-family: 'DejaVu Sans Condensed', sans-serif;
font-size: 5vmin;
">
<h1 style="font-family: 'DejaVu Sans', sans-serif">Make Times Forward</h1>
<p>App loading...</p>
<p style="width: 10vmin; height: 10vmin; animation:spin 4s linear infinite; border: 1.2vmin dashed; border-color: #000 #666 #AAA #CCC; border-radius: 5vmin"></p>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>