-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.07 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.07 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./public/images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./public/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./public/images/favicon-16x16.png"
/>
<link rel="manifest" href="./public/site.webmanifest" />
<title>Mob Time</title>
</head>
<body>
<main id="elm">
<style>
body {
font-family: sans-serif;
text-align: center;
}
main {
position: absolute;
top: 25vh;
left: 50vw;
transform: translateX(-50%);
}
.loader {
width: 60px;
height: 60px;
border: 5px solid #aaa;
border-bottom-color: #333;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<h1>Mob Time!</h1>
<h2>Loading</h2>
<span class="loader"></span>
<p>
If it never finishes, ensure that you have a good internet
connection and javascript enabled
</p>
</main>
<script src="./src/js/main.js" type="module"></script>
</body>
</html>