blob: 9a4bc5504014b8e51eb36f4c2de9c59891254e3f (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Help</title>
<style>
/* import Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* apply Inter font to entire html document */
html {
font-family: "Inter";
}
/* remove margin and padding from body */
body {
margin: 0;
padding: 0;
}
/* remove top margin from first-child h1 of element */
h1:first-child {
margin-top: 0;
}
/* apply light padding to body */
body {
padding: 20px;
}
/* make all text justified */
body {
text-align: justify;
}
/* accomodate dark mode users defaults */
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
}
</style>
</head>
<body>
<p>Coming soon! For now, email us at:</p>
<p><a href="mailto:help@zue.dev">help@zue.dev</a></p>
</body>
</html>
|