+61
site/assets/styles/main.css
+61
site/assets/styles/main.css
···
182
182
.access-hidden {
183
183
display: none;
184
184
}
185
+
186
+
/* nav main */
187
+
188
+
nav ul.nav-main {
189
+
text-align: center;
190
+
margin-top: .5rem;
191
+
padding: 0 !important;
192
+
}
193
+
194
+
nav ul.nav-main li {
195
+
display: inline;
196
+
padding: 0 !important;
197
+
}
198
+
199
+
nav ul.nav-main li::after {
200
+
content: " | ";
201
+
}
202
+
203
+
nav ul.nav-main li:last-child::after {
204
+
content: "";
205
+
}
206
+
207
+
nav ul.nav-main > li {
208
+
padding: 0 !important;
209
+
}
210
+
211
+
/* nav main */
212
+
213
+
nav ul.nav-secondary {
214
+
text-align: left;
215
+
padding: 0 !important;
216
+
}
217
+
218
+
nav ul.nav-secondary li {
219
+
display: inline;
220
+
padding: 0 !important;
221
+
}
222
+
223
+
nav ul.nav-secondary li::after {
224
+
content: ", ";
225
+
}
226
+
227
+
nav ul.nav-secondary li:last-child::after {
228
+
content: "";
229
+
}
230
+
231
+
nav ul.nav-secondary > li {
232
+
padding: 0 !important;
233
+
}
234
+
235
+
ul.nav-secondary-personal::before {
236
+
content: "๐";
237
+
}
238
+
239
+
ul.nav-secondary-contact::before {
240
+
content: "๐ง";
241
+
}
242
+
243
+
ul.nav-secondary-support::before {
244
+
content: "๐";
245
+
}
+2
site/index.php
+2
site/index.php
···
12
12
13
13
<main>
14
14
<img class="meimg" src="assets/images/me.webp" alt="a photo of me playing guitar with a sort of bored but thoughtful expression on my face. the image is edited to have half tones and noise, and is black and white">
15
+
16
+
<?php include "nav_main.php" ?>
15
17
16
18
<p><span class="highlight">kat, 20, she/her</span>. i like computers and music and other irrelevant stuff. i have several servers at home and i never shut up about them. my server related hobbies include spinning up random docker containers, hosting sites no one will use, and breaking my home internet router, among other things.</p>
17
19