vowel 0.2.4 → 0.3.0
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/README.md +134 -26
- package/bin.js +209 -1
- package/config.js +20 -0
- package/docs-source/.votive.db +0 -0
- package/docs-source/blog/url-ui.md +1 -5
- package/docs-source/blog.md +5 -0
- package/docs-source/docs/items.md +1 -1
- package/docs-source/home.md +1 -1
- package/docs-source/output/about.html +1 -0
- package/docs-source/output/blog/url-ui.html +8 -0
- package/docs-source/output/blog.html +1 -0
- package/docs-source/output/default.css +1 -0
- package/docs-source/output/docs/deploy.html +34 -0
- package/docs-source/output/docs/file-structure.html +24 -0
- package/docs-source/output/docs/folder-settings.html +20 -0
- package/docs-source/output/docs/images.html +2 -0
- package/docs-source/output/docs/items.html +6 -0
- package/docs-source/output/docs/pages.html +101 -0
- package/docs-source/output/docs/styling.html +18 -0
- package/docs-source/output/docs/taxonomies.html +20 -0
- package/docs-source/output/docs.html +28 -0
- package/docs-source/output/features/cards.html +1 -0
- package/docs-source/output/features/editing.html +1 -0
- package/docs-source/output/features/emoji.html +1 -0
- package/docs-source/output/features/frontmatter.html +1 -0
- package/docs-source/output/features/lists.html +1 -0
- package/docs-source/output/features/navigation.html +1 -0
- package/docs-source/output/features/rich-previews.html +1 -0
- package/docs-source/output/features/robots.html +1 -0
- package/docs-source/output/features/rss.html +1 -0
- package/docs-source/output/features/sitemap.html +1 -0
- package/docs-source/output/features/speed.html +1 -0
- package/docs-source/output/features/static.html +1 -0
- package/docs-source/output/features/taxonomies.html +1 -0
- package/docs-source/output/features.html +1 -0
- package/docs-source/output/feed.xml +1 -0
- package/docs-source/output/index.html +21 -0
- package/docs-source/output/reset.css +1 -0
- package/docs-source/output/roadmap.html +87 -0
- package/docs-source/output/robots.txt +14 -0
- package/docs-source/output/sitemap.xml +16 -0
- package/docs-source/output/typography.css +1 -0
- package/docs-source/settings.md +1 -0
- package/getMetadata.js +1 -1
- package/index.js +5 -660
- package/package.json +18 -3
- package/plugins/fonts/index.js +26 -0
- package/plugins/icons/index.js +26 -0
- package/plugins/images/index.js +45 -0
- package/plugins/markdown/index.js +1097 -0
- package/plugins/robots/index.js +23 -0
- package/plugins/styles/index.js +69 -0
- package/plugins/vectors/index.js +38 -0
- package/plugins/xml/index.js +196 -0
- package/stylesheets/DefaultStyles.css +329 -263
- package/stylesheets/ResetStyles.css +119 -123
- package/stylesheets/TypographyStyles.css +259 -242
- package/docs-source/.vercel/README.txt +0 -11
- package/docs-source/.vercel/project.json +0 -1
- package/docs-source/assets/styles.css +0 -51
- package/docs-source/blog/home.md +0 -5
- /package/docs-source/{$features → features}/cards.md +0 -0
- /package/docs-source/{$features → features}/editing.md +0 -0
- /package/docs-source/{$features → features}/emoji.md +0 -0
- /package/docs-source/{$features → features}/frontmatter.md +0 -0
- /package/docs-source/{$features → features}/lists.md +0 -0
- /package/docs-source/{$features → features}/navigation.md +0 -0
- /package/docs-source/{$features → features}/rich-previews.md +0 -0
- /package/docs-source/{$features → features}/robots.md +0 -0
- /package/docs-source/{$features → features}/rss.md +0 -0
- /package/docs-source/{$features → features}/sitemap.md +0 -0
- /package/docs-source/{$features → features}/speed.md +0 -0
- /package/docs-source/{$features → features}/static.md +0 -0
- /package/docs-source/{$features → features}/taxonomies.md +0 -0
|
@@ -3,331 +3,397 @@
|
|
|
3
3
|
Barebones, Basic.css, Pico, Typeplate, Simple.css, and more
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
--accent-color: hsl(215, 100%, 35%);
|
|
9
|
-
--accent-color-hover: hsl(215, 76%, 49%);
|
|
10
|
-
--border-color: hsl(0, 0%, 73%);
|
|
11
|
-
--main-background: hsl(0, 0%, 100%);
|
|
12
|
-
--code-background: hsl(0, 0%, 95%);
|
|
13
|
-
/* --soft-background: hsl(0, 0%, 95%); */
|
|
14
|
-
--soft-background: #00000005;
|
|
15
|
-
}
|
|
6
|
+
@layer reset, typography, default;
|
|
7
|
+
|
|
16
8
|
|
|
17
|
-
@
|
|
9
|
+
@layer default {
|
|
18
10
|
:root {
|
|
19
|
-
--text-color: hsl(0, 0%,
|
|
20
|
-
--accent-color: hsl(
|
|
21
|
-
--accent-color-hover: hsl(
|
|
22
|
-
--border-color: hsl(0, 0%,
|
|
23
|
-
--main-background: hsl(0, 0%,
|
|
24
|
-
--code-background: hsl(0, 0%,
|
|
25
|
-
|
|
26
|
-
--soft-background: #
|
|
11
|
+
--text-color: hsl(0, 0%, 13%);
|
|
12
|
+
--accent-color: hsl(215, 100%, 35%);
|
|
13
|
+
--accent-color-hover: hsl(215, 76%, 49%);
|
|
14
|
+
--border-color: hsl(0, 0%, 73%);
|
|
15
|
+
--main-background: hsl(0, 0%, 100%);
|
|
16
|
+
--code-background: hsl(0, 0%, 95%);
|
|
17
|
+
--soft-background: hsl(0, 0%, 95%);
|
|
18
|
+
/* --soft-background: #00000005; */
|
|
27
19
|
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* Layout */
|
|
31
20
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
padding-bottom: 4rem;
|
|
45
|
-
display: flex;
|
|
46
|
-
flex-direction: row;
|
|
47
|
-
flex-wrap: wrap;
|
|
48
|
-
align-items: baseline;
|
|
49
|
-
column-gap: 0.5rem;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
:is(main, article.thumbnail)>* {
|
|
53
|
-
flex-basis: 100%;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
:is(main, article.thumbnail) :is(time, dl:not(.link)) {
|
|
57
|
-
flex-basis: 0;
|
|
58
|
-
display: inline !important;
|
|
59
|
-
font-size: 0.9em;
|
|
60
|
-
opacity: 0.8;
|
|
61
|
-
}
|
|
21
|
+
@media (prefers-color-scheme: dark) {
|
|
22
|
+
:root {
|
|
23
|
+
--text-color: hsl(0, 0%, 80%);
|
|
24
|
+
--accent-color: hsl(194, 76%, 49%);
|
|
25
|
+
--accent-color-hover: hsl(194, 86%, 57%);
|
|
26
|
+
--border-color: hsl(0, 0%, 27%);
|
|
27
|
+
--main-background: hsl(0, 0%, 12%);
|
|
28
|
+
--code-background: hsl(0, 0%, 5%);
|
|
29
|
+
--soft-background: hsl(0, 0%, 14%);
|
|
30
|
+
/* --soft-background: #ffffff07; */
|
|
31
|
+
}
|
|
32
|
+
}
|
|
62
33
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
34
|
+
/* Layout */
|
|
35
|
+
|
|
36
|
+
body {
|
|
37
|
+
overflow-y: scroll;
|
|
38
|
+
font-family: var(--font-sans);
|
|
39
|
+
max-width: min(100ch, 100vi - 10vw);
|
|
40
|
+
margin-inline: auto;
|
|
41
|
+
margin-bottom: 5em;
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
align-items: center;
|
|
45
|
+
gap: 4rem 1rem;
|
|
46
|
+
|
|
47
|
+
main {
|
|
48
|
+
width: 95vw;
|
|
49
|
+
max-width: 80ch;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
66
52
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
53
|
+
main,
|
|
54
|
+
article {
|
|
55
|
+
margin-bottom: auto;
|
|
56
|
+
padding-bottom: 4rem;
|
|
57
|
+
display: grid;
|
|
58
|
+
gap: 1rem;
|
|
59
|
+
flex-wrap: wrap;
|
|
60
|
+
align-items: baseline;
|
|
61
|
+
column-gap: 0.5rem;
|
|
62
|
+
}
|
|
70
63
|
|
|
71
|
-
|
|
72
|
-
margin-top: 2.5rem;
|
|
73
|
-
}
|
|
64
|
+
@media (width >=700px) {
|
|
74
65
|
|
|
75
|
-
|
|
66
|
+
body:not(.home) main {
|
|
67
|
+
grid-template-columns: 3fr 1fr;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
76
70
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
71
|
+
main>*:not(nav[aria-label=Contents]) {
|
|
72
|
+
grid-column: 1;
|
|
73
|
+
}
|
|
81
74
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
75
|
+
:is(main, article)>* {
|
|
76
|
+
flex-basis: 100%;
|
|
77
|
+
}
|
|
85
78
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
79
|
+
:is(main, article) :is(time, dl:not(.link)) {
|
|
80
|
+
/* flex-basis: 0; */
|
|
81
|
+
/* display: inline !important; */
|
|
82
|
+
font-size: 0.9em;
|
|
83
|
+
opacity: 0.8;
|
|
84
|
+
}
|
|
89
85
|
|
|
90
|
-
|
|
91
|
-
pre {
|
|
92
|
-
background: var(--code-background);
|
|
93
|
-
}
|
|
86
|
+
/* Colors */
|
|
94
87
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
88
|
+
html {
|
|
89
|
+
color: var(--text-color);
|
|
90
|
+
background: var(--main-background);
|
|
91
|
+
}
|
|
98
92
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
background: var(--soft-background);
|
|
102
|
-
padding: 1.8rem 2rem 1.5rem;
|
|
103
|
-
border-radius: 0.5rem;
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-direction: column;
|
|
106
|
-
}
|
|
93
|
+
a:where(:not([rel=home])) {
|
|
94
|
+
color: var(--accent-color);
|
|
107
95
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
96
|
+
&:hover {
|
|
97
|
+
color: var(--accent-color-hover);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
112
100
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
101
|
+
code,
|
|
102
|
+
pre {
|
|
103
|
+
background: var(--code-background);
|
|
104
|
+
}
|
|
116
105
|
|
|
117
|
-
|
|
106
|
+
blockquote {
|
|
107
|
+
border-left: 5px solid var(--border-color);
|
|
108
|
+
}
|
|
118
109
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
110
|
+
article {
|
|
111
|
+
border: 1px solid var(--border-color);
|
|
112
|
+
background: var(--soft-background);
|
|
113
|
+
padding: 2rem 2rem 2rem;
|
|
114
|
+
border-radius: calc(1rem + 5px);
|
|
115
|
+
display: flex;
|
|
116
|
+
flex-direction: column;
|
|
117
|
+
}
|
|
122
118
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
119
|
+
th,
|
|
120
|
+
td {
|
|
121
|
+
border-bottom: 1px solid var(--border-color-softer);
|
|
122
|
+
}
|
|
126
123
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
}
|
|
124
|
+
hr {
|
|
125
|
+
border-top: 1px solid var(--text-color);
|
|
126
|
+
}
|
|
130
127
|
|
|
131
|
-
|
|
132
|
-
order: calc(Infinity);
|
|
133
|
-
margin-top: 2.5rem;
|
|
134
|
-
margin-bottom: 0;
|
|
135
|
-
}
|
|
128
|
+
/* Frontmatter */
|
|
136
129
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
}
|
|
130
|
+
main>img {
|
|
131
|
+
margin-bottom: 2.5rem;
|
|
132
|
+
}
|
|
141
133
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
134
|
+
nav[aria-label=Contents]:has(>ol:empty),
|
|
135
|
+
nav[aria-label=Contents]:has(>ol>li:only-of-type>a) {
|
|
136
|
+
display: none;
|
|
137
|
+
}
|
|
145
138
|
|
|
146
|
-
dl.tags :is(dd, ul, li) {
|
|
147
|
-
padding-inline: 0;
|
|
148
|
-
display: inline;
|
|
149
|
-
}
|
|
150
139
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
140
|
+
@media (width >=700px) {
|
|
141
|
+
nav[aria-label=Contents] {
|
|
142
|
+
grid-column: 2;
|
|
143
|
+
grid-row-start: 3;
|
|
144
|
+
height: 0px;
|
|
145
|
+
overflow: visible;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
154
148
|
|
|
155
|
-
dl.tags li:before {
|
|
156
|
-
content: '#';
|
|
157
|
-
}
|
|
158
149
|
|
|
159
|
-
dl.contents ul {
|
|
160
|
-
list-style: none;
|
|
161
|
-
padding: 0;
|
|
162
|
-
}
|
|
163
150
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
151
|
+
nav[aria-label=Contents] {
|
|
152
|
+
min-width: max-content;
|
|
153
|
+
flex-basis: 30%;
|
|
154
|
+
max-width: 100%;
|
|
167
155
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
156
|
+
&:before {
|
|
157
|
+
content: "Contents";
|
|
158
|
+
font-weight: 600;
|
|
159
|
+
margin-bottom: 0.5em;
|
|
160
|
+
display: block;
|
|
161
|
+
width: max-content;
|
|
162
|
+
}
|
|
172
163
|
|
|
173
|
-
|
|
164
|
+
& ol {
|
|
165
|
+
list-style: none;
|
|
166
|
+
width: max-content;
|
|
167
|
+
margin: 0;
|
|
168
|
+
padding: 0;
|
|
174
169
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
170
|
+
& ol {
|
|
171
|
+
margin-left: 1em;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
178
175
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
176
|
+
/* Header */
|
|
177
|
+
|
|
178
|
+
header {
|
|
179
|
+
margin-top: 4rem;
|
|
180
|
+
display: flex;
|
|
181
|
+
flex-direction: row;
|
|
182
|
+
flex-wrap: wrap;
|
|
183
|
+
align-items: center;
|
|
184
|
+
column-gap: 1em;
|
|
185
|
+
|
|
186
|
+
p.tagline {
|
|
187
|
+
margin-left: auto;
|
|
188
|
+
align-self: flex-end;
|
|
189
|
+
margin-bottom: 0.5em;
|
|
190
|
+
font-size: 1.5em;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
nav {
|
|
194
|
+
border: 1px solid var(--border-color);
|
|
195
|
+
padding: 0px 6px;
|
|
196
|
+
width: 100%;
|
|
197
|
+
|
|
198
|
+
&:first-of-type {
|
|
199
|
+
padding-top: 7px;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&:last-of-type {
|
|
203
|
+
padding-bottom: 7px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
margin-inline: -3px;
|
|
207
|
+
border-radius: 5px;
|
|
208
|
+
display: flex;
|
|
209
|
+
column-gap: 2rem;
|
|
210
|
+
flex-wrap: wrap;
|
|
211
|
+
justify-content: flex-start;
|
|
212
|
+
background: var(--soft-background);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
nav:has(+ nav) {
|
|
216
|
+
border-bottom: none;
|
|
217
|
+
border-bottom-left-radius: 0;
|
|
218
|
+
border-bottom-right-radius: 0;
|
|
219
|
+
|
|
220
|
+
&:after {
|
|
221
|
+
display: block;
|
|
222
|
+
content: '';
|
|
223
|
+
border-bottom: 1px solid var(--border-color);
|
|
224
|
+
flex-basis: 100%;
|
|
225
|
+
margin-block: 0.7rem;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
nav+nav {
|
|
230
|
+
border-top-left-radius: 0;
|
|
231
|
+
border-top-right-radius: 0;
|
|
232
|
+
border-top: none;
|
|
233
|
+
margin-top: 0;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
191
236
|
|
|
192
|
-
nav
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
border-bottom-right-radius: 0;
|
|
196
|
-
}
|
|
237
|
+
nav[aria-label=Breadcrumbs]>a:only-child {
|
|
238
|
+
display: none;
|
|
239
|
+
}
|
|
197
240
|
|
|
198
|
-
nav
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
border-bottom: 1px solid var(--border-color);
|
|
202
|
-
flex-basis: 100%;
|
|
203
|
-
margin-top: 0.7rem;
|
|
204
|
-
}
|
|
241
|
+
nav[aria-label=Breadcrumbs] {
|
|
242
|
+
text-transform: uppercase;
|
|
243
|
+
color: var(--border-color);
|
|
205
244
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
margin-top: 0;
|
|
211
|
-
}
|
|
245
|
+
a {
|
|
246
|
+
color: unset;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
212
249
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
250
|
+
/* Sidebar */
|
|
251
|
+
|
|
252
|
+
aside nav {
|
|
253
|
+
margin-inline: auto;
|
|
254
|
+
|
|
255
|
+
&>ul {
|
|
256
|
+
display: flex;
|
|
257
|
+
flex-direction: row;
|
|
258
|
+
gap: 2em;
|
|
259
|
+
justify-content: center;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
ul {
|
|
263
|
+
list-style: none;
|
|
264
|
+
padding-left: 0;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
li {
|
|
268
|
+
margin: 0;
|
|
269
|
+
line-height: 1.7em;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&>ul>li {
|
|
273
|
+
&>a {
|
|
274
|
+
font-weight: 500;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
&>ul {
|
|
278
|
+
font-size: 0.9em;
|
|
279
|
+
line-height: 1.2em;
|
|
280
|
+
|
|
281
|
+
ul {
|
|
282
|
+
padding-left: 1em;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
216
287
|
|
|
217
|
-
|
|
218
|
-
margin-block: 4rem 1rem;
|
|
219
|
-
}
|
|
288
|
+
/* Footer */
|
|
220
289
|
|
|
221
|
-
|
|
290
|
+
footer {
|
|
291
|
+
text-align: center;
|
|
292
|
+
}
|
|
222
293
|
|
|
223
|
-
|
|
224
|
-
margin-inline: auto;
|
|
225
|
-
}
|
|
294
|
+
/* Main */
|
|
226
295
|
|
|
227
|
-
|
|
296
|
+
p:where([itemprop=description]) {
|
|
297
|
+
font-size: 1.3em;
|
|
298
|
+
}
|
|
228
299
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
300
|
+
article a {
|
|
301
|
+
display: flex;
|
|
302
|
+
flex-direction: column;
|
|
303
|
+
row-gap: 1em;
|
|
233
304
|
|
|
234
|
-
|
|
305
|
+
&>* {
|
|
306
|
+
margin: 0;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
235
309
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
310
|
+
article img {
|
|
311
|
+
order: -1;
|
|
312
|
+
}
|
|
239
313
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
314
|
+
article a,
|
|
315
|
+
article a:hover {
|
|
316
|
+
color: unset;
|
|
317
|
+
}
|
|
243
318
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
grid-gap: 2rem;
|
|
319
|
+
article h1 {
|
|
320
|
+
grid-area: title;
|
|
321
|
+
font-size: 1.6rem;
|
|
322
|
+
}
|
|
249
323
|
|
|
250
|
-
|
|
251
|
-
|
|
324
|
+
article p {
|
|
325
|
+
font-size: 1.6rem;
|
|
252
326
|
}
|
|
253
|
-
}
|
|
254
327
|
|
|
255
|
-
article.
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
'title icon'
|
|
260
|
-
'description description';
|
|
261
|
-
align-content: start;
|
|
262
|
-
}
|
|
328
|
+
article dl.icon {
|
|
329
|
+
grid-area: icon;
|
|
330
|
+
font-size: 1.5em;
|
|
331
|
+
}
|
|
263
332
|
|
|
264
|
-
article.
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
}
|
|
333
|
+
article dl.icon dd {
|
|
334
|
+
text-align: right;
|
|
335
|
+
}
|
|
268
336
|
|
|
269
|
-
article
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
}
|
|
337
|
+
article .description {
|
|
338
|
+
grid-area: description;
|
|
339
|
+
}
|
|
273
340
|
|
|
274
|
-
article
|
|
275
|
-
|
|
276
|
-
}
|
|
341
|
+
article dt {
|
|
342
|
+
display: none;
|
|
343
|
+
}
|
|
277
344
|
|
|
278
|
-
article
|
|
279
|
-
|
|
280
|
-
}
|
|
345
|
+
article dl.icon {
|
|
346
|
+
order: -1;
|
|
347
|
+
}
|
|
281
348
|
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
349
|
+
aside.alert.note {
|
|
350
|
+
--icon: 'ℹ️';
|
|
351
|
+
--rgb: 71, 139, 230;
|
|
352
|
+
}
|
|
285
353
|
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
354
|
+
aside.alert.tip {
|
|
355
|
+
--icon: '💡';
|
|
356
|
+
--rgb: 87, 171, 90;
|
|
357
|
+
}
|
|
289
358
|
|
|
290
|
-
aside.alert.
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
}
|
|
359
|
+
aside.alert.important {
|
|
360
|
+
--icon: '💬';
|
|
361
|
+
--rgb: 152, 110, 226;
|
|
362
|
+
}
|
|
294
363
|
|
|
295
|
-
aside.alert.
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
}
|
|
364
|
+
aside.alert.warning {
|
|
365
|
+
--icon: '⚠️';
|
|
366
|
+
--rgb: 198, 144, 38;
|
|
367
|
+
}
|
|
299
368
|
|
|
300
|
-
aside.alert.
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
}
|
|
369
|
+
aside.alert.caution {
|
|
370
|
+
--icon: '⛔️';
|
|
371
|
+
--rgb: 229, 83, 75;
|
|
372
|
+
}
|
|
304
373
|
|
|
305
|
-
aside.alert
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
374
|
+
aside.alert {
|
|
375
|
+
border-left: 3px solid rgb(var(--rgb));
|
|
376
|
+
padding: 1.5rem 2rem;
|
|
377
|
+
background: rgba(var(--rgb), 0.04);
|
|
378
|
+
}
|
|
309
379
|
|
|
310
|
-
aside.alert
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
}
|
|
380
|
+
aside.alert h2 {
|
|
381
|
+
color: rgb(var(--rgb));
|
|
382
|
+
}
|
|
314
383
|
|
|
315
|
-
aside.alert {
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
}
|
|
384
|
+
aside.alert h2:before {
|
|
385
|
+
font-size: 0.8em;
|
|
386
|
+
margin-right: 0.7rem;
|
|
387
|
+
opacity: 0.9;
|
|
388
|
+
}
|
|
320
389
|
|
|
321
|
-
aside.alert h2 {
|
|
322
|
-
|
|
390
|
+
aside.alert h2:before {
|
|
391
|
+
content: var(--icon);
|
|
392
|
+
}
|
|
323
393
|
}
|
|
324
394
|
|
|
325
|
-
|
|
326
|
-
font-size: 0.8em;
|
|
327
|
-
margin-right: 0.7rem;
|
|
328
|
-
opacity: 0.9;
|
|
329
|
-
}
|
|
395
|
+
/* Elements */
|
|
330
396
|
|
|
331
|
-
|
|
332
|
-
|
|
397
|
+
img {
|
|
398
|
+
border-radius: 5px;
|
|
333
399
|
}
|