-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (55 loc) · 1.81 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
<!doctype html>
<html lang="en">
<head>
<!-- Register service worker if supported. -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('./sw.js');
});
}
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="description" content="Easily calculate in-game time for Mario Kart Wii speedruns.">
<meta name="author" content="Charlie Laabs">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="assets/apple-192.png">
<meta name="theme-color" content="#6200ee" />
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="manifest.json">
<style>
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
body {
background-color: rgb(245, 245, 245);
}
</style>
<title>MKWii IGT Calculator</title>
<link rel="preconnect" href="https://ajax.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="dns-prefetch" href="https://ajax.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
</head>
<body>
<mkwii-igt-calc-app></mkwii-igt-calc-app>
<script type="module" src="build/mkwii-igt-calc-app.js"></script>
<script>
WebFontConfig = {
google: {
families: ['Roboto', 'Material Icons&display=swap']
}
};
(function (d) {
var wf = d.createElement('script'), s = d.scripts[0];
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
wf.async = true;
s.parentNode.insertBefore(wf, s);
})(document);
</script>
<noscript>Javascript is required to use this application</noscript>
</body>
</html>