-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (91 loc) · 3.21 KB
/
Copy pathindex.html
File metadata and controls
97 lines (91 loc) · 3.21 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html
lang="en"
translate="no"
>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-visual, viewport-fit=cover" />
<meta name="description" content="Daily journaling and standup notes, made simple." />
<!-- NOTE: keep in sync with terracotta --color-background in src/themes.css -->
<meta name="theme-color" content="#fafaf0" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#1c1b17" media="(prefers-color-scheme: dark)" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Timur" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- 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;
}
/* Define background color to avoid white splash */
/* NOTE: keep in sync with terracotta --color-background in src/themes.css */
@media screen {
body {
background-color: #fafaf0;
@media (prefers-color-scheme: dark) {
background-color: #1c1b17;
}
}
}
#webapp-preload {
width: 100svw;
height: 100svh;
display: flex;
align-items: center;
justify-content: center;
}
.webapp_root_fallback_element {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
width: 100svw;
height: 100svh;
}
@media (display-mode: standalone) {
#webapp-preload,
.webapp_root_fallback_element {
height: 100dvh;
}
}
.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>