This repository was archived by the owner on Feb 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (79 loc) · 2.05 KB
/
index.html
File metadata and controls
87 lines (79 loc) · 2.05 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
<!DOCTYPE html>
<html lang="de">
<head>
<title>Wait less, wait digital.</title>
<meta charset="utf-8" />
<meta name="theme-color" content="#e1ece6" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
@font-face {
font-family: "Yrsa";
src: url("./public/fonts/Yrsa/Yrsa-Regular.woff2")
format("woff2 supports variations"),
url("./public/fonts/Yrsa/Yrsa-Regular.woff2")
format("woff2-variations");
font-weight: 100 1000;
font-style: normal;
font-display: swap;
}
* {
font-family: Yrsa, Serif;
padding: 0;
margin: 0;
color: #2a3730;
background-color: #e1ece6;
}
.wrapper {
overflow: hidden;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
justify-items: center;
align-items: center;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
text-align: center;
max-width: 600px;
margin: 0 20px;
gap: 12px;
}
.spacer {
width: 194px;
max-width: 100%;
height: 1px;
border-bottom: solid 1px #c6d6cd;
}
.teaser {
text-decoration: line-through;
}
*::selection {
background-color: #98a49d;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="content">
<h1>wait.digital</h1>
<p>
Waiting doesn't have to be like this. Using digital workflows we can
not only dramatically improve efficiency but also deliver experiences
that our customers dream off.
</p>
<div class="spacer"></div>
<p>Wait less, wait digital.</p>
<p class="teaser">Coming Soon.</p>
<p class="update">Cancelled.</p>
</div>
</div>
</body>
</html>