-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (119 loc) · 3.47 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recherché Inc</title>
<link href="https://fonts.googleapis.com/css2?family=Monoton&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P0NPLZSQBM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P0NPLZSQBM');
</script>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
background: #1E1E1E;
color: #FFFFF9;
}
.logo {
text-align: center;
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 2rem;
font-family: 'Monoton', cursive;
}
.pronunciation {
font-family: monospace;
font-size: 1.2rem;
margin-bottom: 2rem;
color: #FFFFF9;
}
.definition {
margin-bottom: 2rem;
}
.definition ol {
padding-left: 2rem;
}
.brands {
margin-top: 3rem;
}
.brands h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.brands ul {
list-style: none;
padding: 0;
}
.brands li {
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
/* Accessibility improvements */
a {
color: #FFFFF9;
text-decoration: underline;
}
a:hover, a:focus {
text-decoration: none;
outline: 2px solid #FFFFF9;
outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
@media (prefers-color-scheme: dark) {
body {
background: #1E1E1E;
color: #FFFFF9;
}
.pronunciation {
color: #FFFFF9;
}
a {
color: #FFFFF9;
}
}
</style>
</head>
<body>
<header>
<div class="logo" role="banner">
Recherché Inc
</div>
</header>
<main>
<div class="pronunciation" aria-label="Pronunciation">
/ɹəˌʃɛɹˈʃeɪ/
</div>
<div class="definition">
<ol aria-label="Definition">
<li>Sought out and chosen with care; choice; exquisite.</li>
<li>Exotic; of rare quality, elegance, attractiveness, etc.</li>
</ol>
</div>
<div class="brands">
<h2>Brands</h2>
<ul aria-label="Brand list">
<li>
<a href="https://recherchelabs.com/">Recherché Labs</a>
</li>
<li>
<a href="https://cryptonomic.tech/">Cryptonomic</a>
</li>
</ul>
</div>
</main>
</body>
</html>