-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
48 lines (46 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>RoR Player</title>
<meta name="description" content="A pattern-based drumming machine.">
<link rel="icon" href="./favicon.svg">
<link rel="mask-icon" href="./favicon.svg" color="#d479c6">
<link rel="apple-touch-icon" href="./app-180.png">
<link rel="manifest" href="./manifest.json">
<style>
#loading {
font-size: 24.5px;
font-weight: 500;
color: #495057;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
#spinner {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50% -50%);
width: 28px;
height: 28px;
border: 3.5px solid #495057;
border-right-color: transparent;
border-radius: 50%;
animation: spinner-border .75s linear infinite;
box-sizing: border-box;
}
@keyframes spinner-border {
to { transform: rotate(360deg); }
}
</style>
<script type="module" src="./src/app.ts"></script>
</head>
<body>
<div id="loading">
Loading...
<div id="spinner"></div>
</div>
<div id="app"></div>
</body>
</html>