vowel 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/app.html
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<style>
|
|
7
|
+
html {
|
|
8
|
+
-webkit-text-size-adjust: 100%;
|
|
9
|
+
margin: 0;
|
|
10
|
+
font-size: 62.5%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
body {
|
|
14
|
+
font-size: 1.6rem;
|
|
15
|
+
line-height: 1.5;
|
|
16
|
+
-webkit-font-smoothing: antialiased;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
margin: 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.container {
|
|
22
|
+
height: 100vh;
|
|
23
|
+
overflow-y: scroll;
|
|
24
|
+
}
|
|
25
|
+
</style>
|
|
6
26
|
%sveltekit.head%
|
|
7
27
|
</head>
|
|
8
28
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
Barebones, Basic.css, Pico, Typeplate, Simple.css, and more
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
.theme-default {
|
|
8
8
|
/* Variables */
|
|
9
9
|
|
|
10
10
|
:root {
|
|
@@ -48,19 +48,6 @@
|
|
|
48
48
|
margin: 0;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
html {
|
|
52
|
-
line-height: 1.15;
|
|
53
|
-
-webkit-text-size-adjust: 100%;
|
|
54
|
-
font-size: 62.5%;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
body {
|
|
58
|
-
font-size: 1.6rem;
|
|
59
|
-
line-height: 1.5;
|
|
60
|
-
-webkit-font-smoothing: antialiased;
|
|
61
|
-
font-weight: 400;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
51
|
main,
|
|
65
52
|
img,
|
|
66
53
|
details,
|
|
@@ -138,13 +125,8 @@
|
|
|
138
125
|
|
|
139
126
|
/* Layout */
|
|
140
127
|
|
|
141
|
-
.container {
|
|
142
|
-
height: 100vh;
|
|
143
|
-
overflow-y: scroll;
|
|
144
|
-
font-family: var(--font-sans);
|
|
145
|
-
}
|
|
146
|
-
|
|
147
128
|
.page {
|
|
129
|
+
font-family: var(--font-sans);
|
|
148
130
|
max-width: 60ch;
|
|
149
131
|
margin: auto;
|
|
150
132
|
min-height: 100vh;
|
|
@@ -6,4 +6,4 @@ export { default as Page } from './Page.svelte';
|
|
|
6
6
|
export { default as Sitemap } from './Sitemap.svelte';
|
|
7
7
|
export { default as FrontmatterProperty } from './FrontmatterProperty.svelte';
|
|
8
8
|
export { default as FrontmatterTaxonomy } from './FrontMatterTaxonomy.svelte';
|
|
9
|
-
export { default as DefaultStyles } from './DefaultStyles.svelte';
|
|
9
|
+
// export { default as DefaultStyles } from './DefaultStyles.svelte';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export default function createPageClass(url, type = 'page') {
|
|
1
|
+
export default function createPageClass(url, type = 'page', theme) {
|
|
2
2
|
if (!url) return 'item';
|
|
3
|
-
if (url === '/') return
|
|
3
|
+
if (url === '/') return `page home${theme ? ` theme-${theme}` : ''}`;
|
|
4
|
+
if (type === 'page') return `page ${url.split('/').join(' ')}${theme ? ` theme-${theme}` : ''}`;
|
|
4
5
|
return type + url.split('/').join(' ');
|
|
5
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import { Nav, Page, Breadcrumbs, Sitemap
|
|
2
|
+
import { Nav, Page, Breadcrumbs, Sitemap } from '$lib/components/index.js';
|
|
3
3
|
import { getPage, createPageClass } from '$lib/utilities/index.js';
|
|
4
4
|
import LinkPreview from '$lib/components/Markdown/LinkPreview.svelte';
|
|
5
5
|
import getFileLabel from '../../lib/utilities/getFileLabel';
|
|
@@ -77,10 +77,6 @@
|
|
|
77
77
|
import.meta.hot.on('vowel:refresh', () => {
|
|
78
78
|
console.log('Refresh');
|
|
79
79
|
invalidateAll().then(() => {
|
|
80
|
-
console.log(website);
|
|
81
|
-
// location.reload();
|
|
82
|
-
// goto(window.location.href);
|
|
83
|
-
// key = Date.now();
|
|
84
80
|
window.location.reload();
|
|
85
81
|
});
|
|
86
82
|
});
|
|
@@ -88,9 +84,6 @@
|
|
|
88
84
|
});
|
|
89
85
|
</script>
|
|
90
86
|
|
|
91
|
-
<!-- svelte-ignore state_referenced_locally -->
|
|
92
|
-
<!-- svelte-ignore state_referenced_locally -->
|
|
93
|
-
|
|
94
87
|
<svelte:head>
|
|
95
88
|
<title>{makePageMetaTitle()}</title>
|
|
96
89
|
<meta property="”og:url”" content={page.url} />
|
|
@@ -109,9 +102,10 @@
|
|
|
109
102
|
{/if}
|
|
110
103
|
</svelte:head>
|
|
111
104
|
|
|
112
|
-
<
|
|
113
|
-
|
|
114
|
-
|
|
105
|
+
<div
|
|
106
|
+
data-sveltekit-preload-data="hover"
|
|
107
|
+
class={createPageClass(page.url, null, website._.theme === 'default' ? 'default' : false)}
|
|
108
|
+
>
|
|
115
109
|
<header>
|
|
116
110
|
{#if website._.logo}
|
|
117
111
|
<a href="/" class="site-logo">
|
|
@@ -140,3 +134,551 @@
|
|
|
140
134
|
{new Date().getFullYear()}
|
|
141
135
|
</footer>
|
|
142
136
|
</div>
|
|
137
|
+
|
|
138
|
+
<style>
|
|
139
|
+
/*
|
|
140
|
+
Inspiration for this stylesheet comes from Normalize.css, Josh Comeau,
|
|
141
|
+
Barebones, Basic.css, Pico, Typeplate, Simple.css, and more
|
|
142
|
+
*/
|
|
143
|
+
|
|
144
|
+
:global {
|
|
145
|
+
body:has(> div > .theme-default) {
|
|
146
|
+
--font-sans: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue,
|
|
147
|
+
helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
|
|
148
|
+
--font-serif: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif,
|
|
149
|
+
Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
150
|
+
--font-mono: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
|
|
151
|
+
--text-color: hsl(0, 0%, 13%);
|
|
152
|
+
--accent-color: hsl(215, 100%, 35%);
|
|
153
|
+
--accent-color-hover: hsl(215, 76%, 49%);
|
|
154
|
+
--border-color: hsl(0, 0%, 73%);
|
|
155
|
+
--main-background: hsl(0, 0%, 100%);
|
|
156
|
+
--code-background: hsl(0, 0%, 95%);
|
|
157
|
+
--soft-background: hsl(0, 0%, 95%);
|
|
158
|
+
|
|
159
|
+
@media (prefers-color-scheme: dark) {
|
|
160
|
+
--text-color: hsl(0, 0%, 80%);
|
|
161
|
+
--accent-color: hsl(194, 76%, 49%);
|
|
162
|
+
--accent-color-hover: hsl(194, 86%, 57%);
|
|
163
|
+
--border-color: hsl(0, 0%, 27%);
|
|
164
|
+
--main-background: hsl(0, 0%, 12%);
|
|
165
|
+
--code-background: hsl(0, 0%, 5%);
|
|
166
|
+
--soft-background: hsl(0, 0%, 14%);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
color: var(--text-color);
|
|
170
|
+
background: var(--main-background);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.theme-default {
|
|
174
|
+
&.page {
|
|
175
|
+
font-family: var(--font-sans);
|
|
176
|
+
max-width: 60ch;
|
|
177
|
+
margin: auto;
|
|
178
|
+
min-height: 100vh;
|
|
179
|
+
display: flex;
|
|
180
|
+
flex-direction: column;
|
|
181
|
+
padding: 1rem;
|
|
182
|
+
overflow-x: hidden;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/*
|
|
186
|
+
Reset
|
|
187
|
+
*/
|
|
188
|
+
|
|
189
|
+
*,
|
|
190
|
+
*::before,
|
|
191
|
+
*::after {
|
|
192
|
+
box-sizing: border-box;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
* {
|
|
196
|
+
margin: 0;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
main,
|
|
200
|
+
img,
|
|
201
|
+
details,
|
|
202
|
+
picture,
|
|
203
|
+
video,
|
|
204
|
+
canvas,
|
|
205
|
+
svg {
|
|
206
|
+
display: block;
|
|
207
|
+
max-width: 100%;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
summary {
|
|
211
|
+
display: list-item;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
hr {
|
|
215
|
+
box-sizing: content-box;
|
|
216
|
+
height: 0;
|
|
217
|
+
overflow: visible;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
pre {
|
|
221
|
+
font-family: monospace, monospace;
|
|
222
|
+
font-size: 1em;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
a {
|
|
226
|
+
background-color: transparent;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
abbr[title] {
|
|
230
|
+
border-bottom: none;
|
|
231
|
+
text-decoration: underline;
|
|
232
|
+
text-decoration: underline dotted;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
b,
|
|
236
|
+
strong {
|
|
237
|
+
font-weight: bolder;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
code,
|
|
241
|
+
kbd,
|
|
242
|
+
samp {
|
|
243
|
+
font-family: monospace, monospace;
|
|
244
|
+
font-size: 1em;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
small {
|
|
248
|
+
font-size: 80%;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
sub,
|
|
252
|
+
sup {
|
|
253
|
+
font-size: 75%;
|
|
254
|
+
line-height: 0;
|
|
255
|
+
position: relative;
|
|
256
|
+
vertical-align: baseline;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
sub {
|
|
260
|
+
bottom: -0.25em;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
sup {
|
|
264
|
+
top: -0.5em;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
img {
|
|
268
|
+
border-style: none;
|
|
269
|
+
height: auto;
|
|
270
|
+
border-radius: 5px;
|
|
271
|
+
overflow: hidden;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* Layout */
|
|
275
|
+
|
|
276
|
+
main {
|
|
277
|
+
margin-bottom: auto;
|
|
278
|
+
padding-bottom: 4rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* Colors */
|
|
282
|
+
|
|
283
|
+
a {
|
|
284
|
+
color: var(--accent-color);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
a:hover {
|
|
288
|
+
color: var(--accent-color-hover);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/* Typography */
|
|
292
|
+
|
|
293
|
+
p,
|
|
294
|
+
h1,
|
|
295
|
+
h2,
|
|
296
|
+
h3,
|
|
297
|
+
h4,
|
|
298
|
+
h5,
|
|
299
|
+
h6 {
|
|
300
|
+
overflow-wrap: break-word;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
h1,
|
|
304
|
+
h2,
|
|
305
|
+
h3,
|
|
306
|
+
h4,
|
|
307
|
+
h5,
|
|
308
|
+
h6 {
|
|
309
|
+
margin-top: 0.5rem;
|
|
310
|
+
margin-bottom: 1rem;
|
|
311
|
+
text-rendering: optimizeLegibility;
|
|
312
|
+
font-weight: 600;
|
|
313
|
+
line-height: 1.1;
|
|
314
|
+
}
|
|
315
|
+
h1 {
|
|
316
|
+
font-size: 3rem;
|
|
317
|
+
line-height: 1.2;
|
|
318
|
+
font-weight: 800;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
h2 {
|
|
322
|
+
font-size: 2.6rem;
|
|
323
|
+
margin-top: 3rem;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
h3 {
|
|
327
|
+
font-size: 2rem;
|
|
328
|
+
margin-top: 3rem;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
h4 {
|
|
332
|
+
font-size: 1.44rem;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
h5 {
|
|
336
|
+
font-size: 1.15rem;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
h6 {
|
|
340
|
+
font-size: 0.96rem;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
article h1 {
|
|
344
|
+
font-weight: 600;
|
|
345
|
+
font-size: 2rem;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
@media only screen and (max-width: 720px) {
|
|
349
|
+
h1 {
|
|
350
|
+
font-size: 2.5rem;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
h2 {
|
|
354
|
+
font-size: 2.1rem;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
h3 {
|
|
358
|
+
font-size: 1.75rem;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
h4 {
|
|
362
|
+
font-size: 1.25rem;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
p {
|
|
367
|
+
margin-top: 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
ol,
|
|
371
|
+
ul {
|
|
372
|
+
/* padding-left: 0; */
|
|
373
|
+
margin-top: 0;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
ul ul,
|
|
377
|
+
ul ol,
|
|
378
|
+
ol ol,
|
|
379
|
+
ol ul {
|
|
380
|
+
font-size: 100%;
|
|
381
|
+
/* margin: 1rem 0 1rem 3rem; */
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
li {
|
|
385
|
+
margin-bottom: 0.5rem;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/* Extra selector for specificity, see below */
|
|
389
|
+
li > p:not(:last-child) {
|
|
390
|
+
margin: 0;
|
|
391
|
+
padding: 0;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
code {
|
|
395
|
+
background: var(--code-background);
|
|
396
|
+
font-size: 0.9em;
|
|
397
|
+
white-space: nowrap;
|
|
398
|
+
margin-inline: 0px;
|
|
399
|
+
padding: 3px 4px;
|
|
400
|
+
border-radius: 5px;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
code,
|
|
404
|
+
mark {
|
|
405
|
+
-webkit-box-decoration-break: clone;
|
|
406
|
+
box-decoration-break: clone;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
pre {
|
|
410
|
+
background: var(--code-background);
|
|
411
|
+
padding: 1rem 1.5rem;
|
|
412
|
+
border-radius: 5px;
|
|
413
|
+
overflow-x: auto;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
dt {
|
|
417
|
+
float: left;
|
|
418
|
+
margin: 0 20px 0 0;
|
|
419
|
+
width: 120px;
|
|
420
|
+
color: #daf2fd;
|
|
421
|
+
font-weight: 500;
|
|
422
|
+
text-align: right;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
dd {
|
|
426
|
+
margin: 0 0 5px 0;
|
|
427
|
+
text-align: left;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
blockquote {
|
|
431
|
+
margin: 1.5em 0;
|
|
432
|
+
padding: 0 1.6em 0 1.6em;
|
|
433
|
+
border-left: 5px solid var(--border-color);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
a {
|
|
437
|
+
text-decoration: none;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
figcaption {
|
|
441
|
+
margin-top: 0.5rem;
|
|
442
|
+
font-style: italic;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
article {
|
|
446
|
+
border: 1px solid var(--border-color);
|
|
447
|
+
background: var(--soft-background);
|
|
448
|
+
padding: 1rem 2rem 1.5rem;
|
|
449
|
+
border-radius: 0.5rem;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
article + article {
|
|
453
|
+
margin-top: 1rem;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
th,
|
|
457
|
+
td {
|
|
458
|
+
padding: 12px 15px;
|
|
459
|
+
text-align: left;
|
|
460
|
+
border-bottom: 1px solid var(--border-color-softer);
|
|
461
|
+
}
|
|
462
|
+
th:first-child,
|
|
463
|
+
td:first-child {
|
|
464
|
+
padding-left: 0;
|
|
465
|
+
}
|
|
466
|
+
th:last-child,
|
|
467
|
+
td:last-child {
|
|
468
|
+
padding-right: 0;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
:where(pre, blockquote, dl, figure, table, p, ul, ol, form, article, section, aside):not(
|
|
472
|
+
:last-child
|
|
473
|
+
) {
|
|
474
|
+
margin-bottom: 2.5rem;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
hr {
|
|
478
|
+
margin-top: 3rem;
|
|
479
|
+
margin-bottom: 3.5rem;
|
|
480
|
+
border-width: 0px;
|
|
481
|
+
border-top: 1px solid var(--text-color);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
/* Header */
|
|
485
|
+
|
|
486
|
+
header {
|
|
487
|
+
margin-top: 4rem;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
nav.top-bar {
|
|
491
|
+
border: 1px solid var(--border-color);
|
|
492
|
+
padding: 6px 10px;
|
|
493
|
+
margin-inline: -3px;
|
|
494
|
+
border-radius: 5px;
|
|
495
|
+
display: flex;
|
|
496
|
+
column-gap: 2rem;
|
|
497
|
+
row-gap: 0.5rem;
|
|
498
|
+
flex-wrap: wrap;
|
|
499
|
+
justify-content: flex-start;
|
|
500
|
+
background: var(--soft-background);
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
nav.top-bar:has(+ nav.top-bar) {
|
|
504
|
+
border-bottom: none;
|
|
505
|
+
border-bottom-left-radius: 0;
|
|
506
|
+
border-bottom-right-radius: 0;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
nav.top-bar:has(+ nav.top-bar):after {
|
|
510
|
+
display: block;
|
|
511
|
+
content: '';
|
|
512
|
+
border-bottom: 1px solid var(--border-color);
|
|
513
|
+
flex-basis: 100%;
|
|
514
|
+
margin-top: 0.7rem;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
nav.top-bar + nav.top-bar {
|
|
518
|
+
border-top-left-radius: 0;
|
|
519
|
+
border-top-right-radius: 0;
|
|
520
|
+
border-top: none;
|
|
521
|
+
margin-top: 0;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
nav > a {
|
|
525
|
+
text-wrap: nowrap;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
header a.site-title {
|
|
529
|
+
color: unset;
|
|
530
|
+
text-decoration: none;
|
|
531
|
+
font-weight: 900;
|
|
532
|
+
font-size: 2.8em;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
header .slogan {
|
|
536
|
+
/* font-family: var(--font-serif); */
|
|
537
|
+
font-weight: 500;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
nav :where([aria-current='page'], [aria-current='true']),
|
|
541
|
+
nav :where([aria-current='page'], [aria-current='true']):hover {
|
|
542
|
+
text-decoration: none;
|
|
543
|
+
color: unset;
|
|
544
|
+
cursor: default;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
header .breadcrumbs > a:only-child {
|
|
548
|
+
display: none;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
header .breadcrumbs {
|
|
552
|
+
margin-block: 4rem 1rem;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
header .breadcrumbs a {
|
|
556
|
+
font-size: 0.9em;
|
|
557
|
+
text-decoration: none;
|
|
558
|
+
color: unset;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
header .breadcrumbs .separator:after {
|
|
562
|
+
margin-inline: 0.5rem;
|
|
563
|
+
content: '|';
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
/* Sidebar */
|
|
567
|
+
|
|
568
|
+
.sidebar {
|
|
569
|
+
margin-inline: auto;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
/* Footer */
|
|
573
|
+
|
|
574
|
+
footer {
|
|
575
|
+
text-align: center;
|
|
576
|
+
margin-block: 6rem 8rem;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
/* Pages */
|
|
580
|
+
|
|
581
|
+
.page.home > main > h1 {
|
|
582
|
+
display: none;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.page.home .content p:first-child {
|
|
586
|
+
font-size: 1.2em;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
section[class*='$'] {
|
|
590
|
+
display: grid;
|
|
591
|
+
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
|
592
|
+
grid-auto-rows: auto;
|
|
593
|
+
grid-gap: 2rem;
|
|
594
|
+
|
|
595
|
+
& article {
|
|
596
|
+
margin: 0;
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
article.item {
|
|
601
|
+
display: grid;
|
|
602
|
+
flex-direction: column;
|
|
603
|
+
grid-template-areas:
|
|
604
|
+
'title icon'
|
|
605
|
+
'description description';
|
|
606
|
+
align-content: start;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
article.item h1 {
|
|
610
|
+
grid-area: title;
|
|
611
|
+
font-size: 1.6rem;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
article.item dl.icon {
|
|
615
|
+
grid-area: icon;
|
|
616
|
+
font-size: 1.5em;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
article.item dl.icon dd {
|
|
620
|
+
text-align: right;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
article.item .description {
|
|
624
|
+
grid-area: description;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
article.item dt {
|
|
628
|
+
display: none;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
article.item dl.icon {
|
|
632
|
+
order: -1;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
aside.note {
|
|
636
|
+
&.note {
|
|
637
|
+
--icon: 'ℹ️';
|
|
638
|
+
--rgb: 71, 139, 230;
|
|
639
|
+
}
|
|
640
|
+
&.tip {
|
|
641
|
+
--icon: '💡';
|
|
642
|
+
--rgb: 87, 171, 90;
|
|
643
|
+
}
|
|
644
|
+
&.important {
|
|
645
|
+
--icon: '💬';
|
|
646
|
+
--rgb: 152, 110, 226;
|
|
647
|
+
}
|
|
648
|
+
&.warning {
|
|
649
|
+
--icon: '⚠️';
|
|
650
|
+
--rgb: 198, 144, 38;
|
|
651
|
+
}
|
|
652
|
+
&.caution {
|
|
653
|
+
--icon: '⛔️';
|
|
654
|
+
--rgb: 229, 83, 75;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
border-left: 3px solid rgb(var(--rgb));
|
|
658
|
+
padding: 1.5rem 2rem;
|
|
659
|
+
background: rgba(var(--rgb), 0.04);
|
|
660
|
+
|
|
661
|
+
h2 {
|
|
662
|
+
margin: 0 0 0.5em 0;
|
|
663
|
+
font-size: 1.1em;
|
|
664
|
+
color: rgb(var(--rgb));
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
h2:before {
|
|
668
|
+
font-size: 0.8em;
|
|
669
|
+
margin-right: 0.7rem;
|
|
670
|
+
opacity: 0.9;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
h2:before {
|
|
674
|
+
content: var(--icon);
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
li.checked,
|
|
679
|
+
li.unchecked {
|
|
680
|
+
padding-left: 0.8rem;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
</style>
|
package/vite.config.js
CHANGED
|
@@ -24,15 +24,12 @@ export default defineConfig({
|
|
|
24
24
|
configureServer(server) {
|
|
25
25
|
server.watcher.add(homeDir);
|
|
26
26
|
server.watcher.on('add', () => {
|
|
27
|
-
console.log('Add');
|
|
28
27
|
server.ws.send('vowel:refresh');
|
|
29
28
|
});
|
|
30
29
|
server.watcher.on('unlink', () => {
|
|
31
|
-
console.log('unlink');
|
|
32
30
|
server.ws.send('vowel:refresh');
|
|
33
31
|
});
|
|
34
32
|
server.watcher.on('change', async (homePath, stats) => {
|
|
35
|
-
console.log('change');
|
|
36
33
|
if (homePath.endsWith('.md')) {
|
|
37
34
|
// Remove `.md`
|
|
38
35
|
const cache = await loadCache(homeDir);
|