-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
68 lines (51 loc) · 1.95 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Candidate Timer</title>
<meta name="description"
content="A timer originally made for the MVMHA candidate forum" />
<meta name="author"
content="Alex Brown" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async
src="https://www.googletagmanager.com/gtag/js?id=UA-49645063-1"></script>
<script type="module">
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-49645063-1');
</script>
<link rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<link rel="stylesheet"
href="https://cdn.materialdesignicons.com/5.3.45/css/materialdesignicons.min.css">
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
<link rel="stylesheet"
href="src/materialize/css/materialize.css" />
<link rel="icon" href="src/assets/favicon.ico" />
<style>
html {
height: 100%;
font-family: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif
}
body {
display: flex;
height: 100%;
}
#toast-container {
right: 50%;
transform: translateX(50%);
}
#toast-container .toast {
white-space: pre-wrap;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="src/js/vue-app.ts"></script>
</body>
</html>