Jake Vanderwerf
2025-09-30 70755b78e481bbf3aa4ea788cc74076c821db0cd
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/*.quick-access{*/
/*    --buttonWidth: 6rem;*/
/*    --navHeight: 4rem;*/
/*    z-index: 999;*/
/*    height: var(--navHeight);*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: var(--navHeight);*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    background-color: var(--base);*/
/*    box-shadow: var(--shadow);*/
/*}*/
/*button#randomizor,*/
/*.quick-access input:checked + label,*/
/*.quick-access label,*/
/*.quick-access button {*/
/*    height: var(--navHeight);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    flex-direction: column;*/
/*    background-color: var(--base);*/
/*    color: var(--contrast);*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: background-color, color;*/
/*}*/
/*.quick-access .open label {*/
/*    background-color: var(--base-50);*/
/*}*/
/*.quick-access .search button,*/
/*button#randomizor {*/
/*    width: var(--buttonWidth);*/
/*    transition: width var(--timing) var(--function);*/
/*    transition-property: width, transform;*/
/*}*/
/*button#randomizor span {*/
/*    font-size: var(--small);*/
/*}*/
/*button#randomizor sup {*/
/*    font-size: .75em;*/
/*}*/
/*.quick-access button.close,*/
/*.quick-access button.toggle {*/
/*    border: .5rem solid var(--base-50);*/
/*    width: var(--navHeight);*/
/*    transition: width var(--timing) var(--function);*/
/*    transition-property: width, transform;*/
/*}*/
 
/*.quick-access .open button.toggle .more,*/
/*.quick-access button.toggle .close {*/
/*    transform: scale(0);*/
/*    max-width: 0;*/
/*    max-height: 0;*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: transform;*/
/*}*/
/*.quick-access .open button.toggle .close,*/
/*.quick-access button.toggle .more {*/
/*    transform: scale(1);*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    transition: transform var(--timing) var(--function);*/
/*}*/
 
/*.quick-access label {*/
/*    font-size: var(--small);*/
/*    cursor: pointer;*/
/*    width: var(--navHeight);*/
/*}*/
/*.quick-access .open label {*/
/*    width: 100%;*/
/*}*/
 
/*.quick-access .randomizor label {*/
/*    transform: scaleX(0);*/
/*    max-width: 0;*/
/*}*/
/*.quick-access .randomizor.open label,*/
/*.quick-access .randomizor input:checked + label {*/
/*    transform: scaleX(1);*/
/*    max-width: 100%;*/
/*}*/
/*button#randomizor:hover,*/
/*.quick-access label:hover,*/
/*.quick-access .open input:checked + label,*/
/*.quick-access button:hover {*/
/*    background-color: var(--action-50);*/
/*    color: var(--base-100);*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: background-color, color;*/
/*}*/
/*button#randomizor span,*/
/*.quick-access label span{*/
/*    transform: scaleY(0);*/
/*    max-height: 0;*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: transform, max-height;*/
/*}*/
 
/*button#randomizor:hover span,*/
/*.quick-access .open a span,*/
/*.quick-access input:checked + label:hover span,*/
/*.quick-access .open label span,*/
/*.quick-access .open input:checked + label span {*/
/*    transform: scaleY(1);*/
/*    max-height: 100%;*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: transform, max-height;*/
/*}*/
 
/*button#randomizor svg,*/
/*.quick-access label svg {*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: width, height;*/
/*}*/
/*button#randomizor:hover svg,*/
/*.quick-access .open input:checked + label svg,*/
/*.quick-access input:checked + label:hover svg {*/
/*    width: 25px;*/
/*    height: 25px;*/
/*    transition: all var(--timing) var(--function);*/
/*    transition-property: width, height;*/
/*}*/
/*input[type=radio],*/
/*input[type=checkbox]{*/
/*    position: absolute;*/
/*    left: -300vw;*/
/*    transform: scale(0);*/
/*    max-width: 0;*/
/*    max-height: 0;*/
/*}*/
/*.quick-access .randomizor.close .options,*/
/*.quick-access .close input:checked + label,*/
/*.quick-access .close button.toggle {*/
/*    transform: scale(0);*/
/*    max-width: 0;*/
/*    max-height: 0;*/
/*    transition: width var(--timing) var(--function);*/
/*    transition-property: width, transform;*/
/*}*/
/*.quick-access .close a,*/
/*.quick-access .close button.search {*/
/*    width: 4rem;*/
/*    transition: width var(--timing) var(--function);*/
/*}*/
 
/*.quick-access form {*/
/*    display: flex;*/
/*    height: var(--navHeight);*/
/*    margin-bottom: 0;*/
/*}*/
/*.quick-access form.search {*/
/*    justify-content: flex-end;*/
/*}*/
/*.quick-access.search {*/
/*    flex-wrap: wrap;*/
/*}*/
/*.quick-access.search form.search {*/
/*    width: 100%;*/
/*    order: 1;*/
/*    justify-content: center;*/
/*}*/
/*.quick-access.search form.randomizor {*/
/*    order: 2;*/
/*    width: 0;*/
/*}*/
 
/*.quick-access .options {*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    border: 2px solid var(--base-100);*/
/*    padding-block-end: 0;*/
/*    padding-block-start:0;*/
/*    padding-inline-start:0;*/
/*    padding-inline-end: 0;*/
/*    margin-inline-start: 0;*/
/*    margin-inline-end: 0;*/
/*    min-inline-size: 0;*/
/*    display: flex;*/
/*    transform-origin: bottom;*/
/*    width: 100%;*/
/*    bottom: 0;*/
/*    overflow: visible;*/
/*    transition: bottom var(--timing) var(--function) .25s;*/
/*}*/
/*.quick-access .open .options {*/
/*    z-index: -1;*/
/*}*/
 
/*.quick-access .randomizor .options {*/
/*    justify-content: flex-start;*/
/*    width: 4rem;*/
/*}*/
/*.quick-access .randomizor.open .options {*/
/*    left: 0;*/
/*    width: 100%;*/
/*    position: fixed;*/
/*}*/
/*.quick-access .search .options {*/
/*    justify-content: flex-end;*/
/*    position: fixed;*/
/*    transform: scaleY(0);*/
/*    max-height: 0;*/
/*    right: 0;*/
/*}*/
/*.quick-access .search.open .options,*/
/*.quick-access .randomizor.open .options {*/
/*    bottom: calc(var(--navHeight) - 2px);*/
/*    transform: scaleY(1);*/
/*    max-height: 4rem;*/
/*    transition: bottom var(--timing) var(--function);*/
/*}*/
/*.quick-access legend {*/
/*    transform: scale(0) translateX(-50%);*/
/*    max-width: 0;*/
/*    max-height: 0;*/
/*    position: absolute;*/
/*    background-color: var(--base);*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    z-index: -1;*/
/*    width: 66.666%;*/
/*    text-align: center;*/
/*    margin: 0 auto;*/
/*    border-top-left-radius: .75rem;*/
/*    border-top-right-radius: .75rem;*/
/*    padding: .5rem 1rem;*/
/*    transition: bottom var(--timing) var(--function);*/
/*}*/
/*.quick-access .open legend {*/
/*    transform: scale(1) translateX(-50%);*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    bottom: 100%;*/
/*    transition: bottom var(--timing) var(--function) .35s;*/
/*}*/
/*.quick-access button.close,*/
/*.quick-access input[type=search] {*/
/*    transform: scaleX(0);*/
/*    max-width: 0;*/
/*    transition: width var(--timing) var(--function);*/
/*    transition-property: width, transform;*/
/*}*/
/*.quick-access .open button.close,*/
/*.quick-access .open input[type=search] {*/
/*    transform: scale(1);*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    transition: width var(--timing) var(--function);*/
/*    transition-property: width, transform;*/
/*}*/
/*.quick-access input[type=search] {*/
/*    width: calc(100% - 10rem);*/
/*    padding: 0 1rem;*/
/*    font-size: var(--large);*/
/*    font-family: var(--body);*/
/*}*/
 
/*aside#seen-all {*/
/*    position: fixed;*/
/*    width: 66.6vw;*/
/*    right: .25rem;*/
/*    bottom: -200vh;*/
/*    z-index: 999;*/
/*    padding: 1rem;*/
/*    border-radius: 1rem;*/
/*    background: var(--base);*/
/*    transition: bottom var(--timing) var(--function);*/
/*    box-shadow: var(--shadow);*/
/*}*/
/*aside#seen-all.did-it{*/
/*    bottom: 4.5rem;*/
/*    transition: bottom var(--timing) var(--function) .5s;*/
/*}*/
/*aside#seen-all button {*/
/*    position: absolute;*/
/*    right: .5rem;*/
/*    top: .5rem;*/
/*    background: transparent;*/
/*    color: var(--base-100);*/
/*}*/
/*aside#seen-all .button {*/
/*    padding: .5rem 1.5rem;*/
/*    border-radius: 4px;*/
/*    text-decoration: none;*/
/*}*/
/*.quick-access label.screen-reader-text {*/
/*    width: 0;*/
/*}*/
/*@media (max-width: 768px){*/
/*    .quick-access .search {*/
/*        width: 25vw;*/
/*    }*/
/*    .quick-access input[type=search] {*/
/*        font-size: var(--medium);*/
/*    }*/
/*}*/
 
/*button[aria-busy="true"] {*/
/*    position: relative;*/
/*    cursor: wait;*/
/*}*/
 
/*button[aria-busy="true"]::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 1em;*/
/*    height: 1em;*/
/*    border: 2px solid var(--overlay-light);*/
/*    border-top-color: var(--contrast);*/
/*    border-radius: 50%;*/
/*    animation: loading 0.75s infinite linear;*/
/*}*/
 
/*@keyframes loading {*/
/*    to {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/
 
/*.quick-access.loading #randomizor,*/
/*.quick-access.loading #random-item label,*/
/*.quick-access.loading #random-item .toggle{*/
/*    color: var(--lighter);*/
/*    cursor: wait;*/
/*    pointer-events: none;*/
/*}*/
 
/*.quick-access.loading #random-item {*/
/*    position: relative;*/
/*}*/
/*.quick-access.loading #random-item:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: calc(50% - .5em);*/
/*    left: calc(50% - .5em);*/
/*    width: 1em;*/
/*    height: 1em;*/
/*    border: 2px solid var(--action-200);*/
/*    border-top-color: var(--action-50);*/
/*    border-radius: 50%;*/
/*    animation: loading 0.75s infinite linear;*/
/*}*/