-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (65 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
71 lines (65 loc) · 1.73 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
<!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>
:root {
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
@media (prefers-color-scheme: dark) {
:root {
--bs-body-color: #dee2e6;
--bs-body-bg: #212529;
}
}
html,body {
margin: 0;
padding: 0;
}
body {
background-color: var(--bs-body-bg);
}
#loading {
padding: 5px 10px;
font-size: 24.5px;
font-weight: 500;
line-height: 1.5;
color: var(--bs-body-color);
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 var(--bs-body-color);
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>