-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (74 loc) · 2.14 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
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html
lang="en"
translate="no"
>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Timur - Phase Zero" />
<!-- Vite is configured to automatically inject favicon and other images -->
<title>
%APP_TITLE%
</title>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
html, body {
margin: 0;
padding: 0;
}
body {
font-family: "Fira Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
@media screen {
body {
background-color: #fafaf0;
}
}
#webapp-preload {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.webapp_root_fallback_element {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
width: 100vw;
height: 100vh;
gap: 1rem;
}
.webapp_root_fallback_element_app_logo {
margin-top: -4rem;
height: 6rem;
}
</style>
</head>
<body>
<noscript>
%APP_TITLE% needs JS.
</noscript>
<div id="webapp-root">
<div
id="webapp-preload"
class="webapp_root_fallback_element"
>
<img
class="webapp_root_fallback_element_app_logo"
src="/app-icon.svg"
alt="Timur Icon"
/>
</div>
</div>
<script
type="module"
src="/src/index.tsx"
></script>
</body>
</html>