-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
310 lines (157 loc) · 6.46 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
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
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: "
lang="en"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Surfacedfox's Pages</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://surfacedfox.github.io/main.min.css" />
<link
rel="preload"
as="image"
href="https://surfacedfox.github.io/theme.png"
/>
<link rel="preload" as="image" href="https://www.gravatar.com/avatar/784ce279ad744aadfd8b57faa351e769?s=160&d=identicon" />
<link rel="preload" as="image" href="https://surfacedfox.github.io/twitter.svg" />
<link rel="preload" as="image" href="https://surfacedfox.github.io/github.svg" />
<link rel="icon" href="https://surfacedfox.github.io/favicon.ico" />
<link rel="apple-touch-icon" href="https://surfacedfox.github.io/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss+xml"
href="https://surfacedfox.github.io/index.xml"
title="Surfacedfox's Pages"
/>
<meta property="og:title" content="Surfacedfox's Pages" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://surfacedfox.github.io/" />
<meta itemprop="name" content="Surfacedfox's Pages">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Surfacedfox's Pages"/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold" href="https://surfacedfox.github.io/"
>Surfacedfox's Pages</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.png)_left_center/_auto_theme('spacing.6')_no-repeat] [transition:_background-position_0.4s_steps(5)] dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = ` null `.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav class="lg:ml-12 lg:flex lg:flex-row lg:items-center lg:space-x-6">
<a
class="block text-center text-2xl leading-[5rem] lg:text-base lg:font-normal"
href="/projects/"
>Projects</a
>
<a
class="block text-center text-2xl leading-[5rem] lg:text-base lg:font-normal"
href="/about/"
>About</a
>
<a
class="block text-center text-2xl leading-[5rem] lg:text-base lg:font-normal"
href="/contact/"
>Contact</a
>
</nav>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./twitter.svg)"
href=" https://twitter.com/surfacedfox "
target="_blank"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./github.svg)"
href=" https://github.com/surfacedfox "
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<div class="-mt-4 mb-20 flex items-start">
<div
class="mr-5 shrink-0 rounded-full border-[0.5px] border-black/10 bg-white/50 p-3 shadow-xl dark:bg-white/80"
>
<img
class="my-0 h-14 w-14 rounded-full !bg-black/5 hover:animate-spin dark:!bg-black/80"
src="https://www.gravatar.com/avatar/784ce279ad744aadfd8b57faa351e769?s=160&d=identicon"
/>
</div>
<div>
<h1 class="mt-1.5 mb-3 text-3xl font-bold">surfacedfox</h1>
<div class="break-words">
For the 💖 of gaming
</div>
</div>
</div>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none">Reclaiming myself</h2>
<time class="text-sm opacity-60">Sep 22, 2024</time>
<a class="absolute inset-0" href="https://surfacedfox.github.io/post/reclamation/"></a>
</section>
</main>
<footer class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60">
<div class="mr-auto">
© 2024
<a class="link" href="https://surfacedfox.github.io/">Surfacedfox's Pages</a>
</div>
</footer>
</body>
</html>