@intergrav/dev.css 1.0.6 → 2.0.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/dev.css CHANGED
@@ -1,457 +1,497 @@
1
- :root {
2
- /* Fonts - Geist, Inter, Apple default (Gecko and Blink), Microsoft default, browser default */
3
- --dc-font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont,
4
- "Segoe UI", sans-serif;
5
- --dc-font-mono: "Geist Mono", monospace;
6
- /* Light colors */
7
- --dc-tx-1: #000000;
8
- --dc-tx-2: #1a1a1a;
9
- --dc-bg-1: #fafafa;
10
- --dc-bg-2: #fff;
11
- --dc-bg-3: #ebebeb;
12
- --dc-lk-1: #0068d6;
13
- --dc-lkb-1: #0072f5;
14
- --dc-lkb-2: #0062d1;
15
- --dc-lkb-tx: #ededed;
16
- --dc-ac-1: #8e4ec6;
17
- --dc-ac-tx: #ededed;
18
- /* Dark colors */
19
- --dc-d-tx-1: #ededed;
20
- --dc-d-tx-2: #a1a1a1;
21
- --dc-d-bg-1: #000;
22
- --dc-d-bg-2: #ffffff0f;
23
- --dc-d-bg-3: #ffffff24;
24
- --dc-d-lk-1: #52a8ff;
25
- --dc-d-lkb-1: #0072f5;
26
- --dc-d-lkb-2: #0062d1;
27
- --dc-d-lkb-tx: #ededed;
28
- --dc-d-ac-1: #8e4ec6;
29
- --dc-d-ac-tx: #ededed;
30
- }
31
-
32
- @media (prefers-color-scheme: dark) {
33
- :root {
34
- --dc-tx-1: var(--dc-d-tx-1);
35
- --dc-tx-2: var(--dc-d-tx-2);
36
- --dc-bg-1: var(--dc-d-bg-1);
37
- --dc-bg-2: var(--dc-d-bg-2);
38
- --dc-bg-3: var(--dc-d-bg-3);
39
- --dc-lk-1: var(--dc-d-lk-1);
40
- --dc-lkb-1: var(--dc-d-lkb-1);
41
- --dc-lkb-2: var(--dc-d-lkb-2);
42
- --dc-lkb-tx: var(--dc-d-lkb-tx);
43
- --dc-ac-1: var(--dc-d-ac-1);
44
- --dc-ac-tx: var(--dc-d-ac-tx);
45
- }
46
- }
47
-
48
- * {
49
- margin: 0;
50
- padding: 0;
51
- }
52
-
53
- address,
54
- area,
55
- article,
56
- aside,
57
- audio,
58
- blockquote,
59
- datalist,
60
- details,
61
- dl,
62
- fieldset,
63
- figure,
64
- form,
65
- input,
66
- iframe,
67
- img,
68
- meter,
69
- nav,
70
- ol,
71
- optgroup,
72
- option,
73
- output,
74
- p,
75
- pre,
76
- progress,
77
- ruby,
78
- section,
79
- table,
80
- textarea,
81
- ul,
82
- video {
83
- margin-bottom: 1rem;
84
- }
85
-
86
- html,
87
- input,
88
- select,
89
- button {
90
- font-family: var(--dc-font-sans);
91
- }
92
-
93
- body {
94
- margin: 0 auto;
95
- max-width: 750px;
96
- padding: 2rem;
97
- border-radius: 4px;
98
- overflow-x: hidden;
99
- word-break: break-word;
100
- overflow-wrap: break-word;
101
- background: var(--dc-bg-1);
102
- color: var(--dc-tx-2);
103
- font-size: 1.03rem;
104
- line-height: 1.5;
105
- }
106
-
107
- ::selection {
108
- background: var(--dc-ac-1);
109
- color: var(--dc-ac-tx);
110
- }
111
-
112
- h1,
113
- h2,
114
- h3,
115
- h4,
116
- h5,
117
- h6 {
118
- line-height: 1;
119
- color: var(--dc-tx-1);
120
- padding-top: 0.875rem;
121
- }
122
-
123
- h1,
124
- h2,
125
- h3 {
126
- padding-bottom: 6px;
127
- margin-bottom: 8px;
128
- border-bottom: 1px solid var(--dc-bg-3);
129
- }
130
-
131
- h4,
132
- h5,
133
- h6 {
134
- margin-bottom: 0.3rem;
135
- }
136
-
137
- h1 {
138
- font-size: 2.25rem;
139
- }
140
-
141
- h2 {
142
- font-size: 1.85rem;
143
- }
144
-
145
- h3 {
146
- font-size: 1.55rem;
147
- }
148
-
149
- h4 {
150
- font-size: 1.25rem;
151
- }
152
-
153
- h5 {
154
- font-size: 1rem;
155
- }
156
-
157
- h6 {
158
- font-size: 0.875rem;
159
- }
160
-
161
- a {
162
- color: var(--dc-lk-1);
163
- }
164
-
165
- abbr:hover {
166
- cursor: help;
167
- }
168
-
169
- blockquote {
170
- padding: 1.5rem;
171
- background: var(--dc-bg-2);
172
- border-left: 5px solid var(--dc-bg-3);
173
- border-radius: 4px;
174
- }
175
-
176
- blockquote *:last-child {
177
- padding-bottom: 0;
178
- margin-bottom: 0;
179
- }
180
-
181
- header {
182
- background: var(--dc-bg-2);
183
- border-bottom: 1px solid var(--dc-bg-3);
184
- padding: 0.75rem;
185
- margin: -2rem calc(50% - 50vw) 2rem;
186
- padding-left: calc(50vw - 50%);
187
- padding-right: calc(50vw - 50%);
188
-
189
- /* Sticky header if supported */
190
- position: sticky;
191
- top: 0;
192
-
193
- /* Blur for transparent surface if supported */
194
- backdrop-filter: blur(16px);
195
- }
196
-
197
- /* Make heading text small if header is not moved to the side */
198
- @media (max-width: 1451px) {
199
- header h1 {
200
- font-size: 1.6rem;
201
- }
202
-
203
- header h2 {
204
- font-size: 1.4rem;
205
- }
206
-
207
- header h3 {
208
- font-size: 1.2rem;
209
- }
210
-
211
- header h4 {
212
- font-size: 1rem;
213
- }
214
- }
215
-
216
- /* Move header to the side to preserve vertical space, if screen is minimum width 1452px */
217
- @media (min-width: 1452px) {
218
- header {
219
- width: 260px;
220
- height: auto;
221
- position: fixed;
222
- left: calc(50% - 725px);
223
- background: #ffffff00;
224
- border-bottom: 0;
225
- padding: 2rem 1.5rem;
226
- margin: 0;
227
-
228
- /* Disable blur */
229
- backdrop-filter: none;
230
- }
231
- }
232
-
233
- header h1,
234
- header h2,
235
- header h3 {
236
- padding-bottom: 0;
237
- border-bottom: 0;
238
- }
239
-
240
- header > *:first-child {
241
- margin-top: 0;
242
- padding-top: 0;
243
- }
244
-
245
- header > *:last-child {
246
- margin-bottom: 0;
247
- }
248
-
249
- a button,
250
- button,
251
- input[type="submit"],
252
- input[type="reset"],
253
- input[type="button"] {
254
- font-size: 1rem;
255
- display: inline-block;
256
- padding: 6px 12px;
257
- text-align: center;
258
- text-decoration: none;
259
- white-space: nowrap;
260
- background: var(--dc-lkb-1);
261
- color: var(--dc-lkb-tx);
262
- border: 0;
263
- border-radius: 4px;
264
- box-sizing: border-box;
265
- cursor: pointer;
266
- }
267
-
268
- a button[disabled],
269
- button[disabled],
270
- input[type="submit"][disabled],
271
- input[type="reset"][disabled],
272
- input[type="button"][disabled] {
273
- cursor: not-allowed;
274
- opacity: 0.5;
275
- }
276
-
277
- .button:focus,
278
- .button:enabled:hover,
279
- button:focus,
280
- button:enabled:hover,
281
- input[type="submit"]:focus,
282
- input[type="submit"]:enabled:hover,
283
- input[type="reset"]:focus,
284
- input[type="reset"]:enabled:hover,
285
- input[type="button"]:focus,
286
- input[type="button"]:enabled:hover {
287
- background: var(--dc-lkb-2);
288
- }
289
-
290
- a img {
291
- margin-bottom: 0;
292
- }
293
-
294
- code,
295
- pre,
296
- kbd,
297
- samp {
298
- font-family: var(--dc-font-mono);
299
- }
300
-
301
- code,
302
- samp,
303
- kbd,
304
- pre {
305
- background: var(--dc-bg-2);
306
- border: 1px solid var(--dc-bg-3);
307
- border-radius: 4px;
308
- padding: 3px 6px;
309
- font-size: 0.9em;
310
- }
311
-
312
- kbd {
313
- border-bottom: 3px solid var(--dc-bg-3);
314
- }
315
-
316
- pre {
317
- padding: 1rem 1.4rem;
318
- max-width: 100%;
319
- overflow: auto;
320
- }
321
-
322
- pre code {
323
- background: inherit;
324
- font-size: inherit;
325
- color: inherit;
326
- border: 0;
327
- padding: 0;
328
- margin: 0;
329
- }
330
-
331
- code pre {
332
- display: inline;
333
- background: inherit;
334
- font-size: inherit;
335
- color: inherit;
336
- border: 0;
337
- padding: 0;
338
- margin: 0;
339
- }
340
-
341
- details {
342
- padding: 0.6rem 1rem;
343
- background: var(--dc-bg-2);
344
- border: 1px solid var(--dc-bg-3);
345
- border-radius: 4px;
346
- }
347
-
348
- summary {
349
- cursor: pointer;
350
- font-weight: bold;
351
- }
352
-
353
- details[open] {
354
- padding-bottom: 0.75rem;
355
- }
356
-
357
- details[open] summary {
358
- margin-bottom: 6px;
359
- }
360
-
361
- details[open] > *:last-child {
362
- margin-bottom: 0;
363
- }
364
-
365
- dt {
366
- font-weight: bold;
367
- }
368
-
369
- dd::before {
370
- content: "→ ";
371
- }
372
-
373
- hr {
374
- border: 0;
375
- border-bottom: 1px solid var(--dc-bg-3);
376
- margin: 1rem auto;
377
- }
378
-
379
- fieldset {
380
- margin-top: 1rem;
381
- padding: 2rem;
382
- border: 1px solid var(--dc-bg-3);
383
- border-radius: 4px;
384
- }
385
-
386
- legend {
387
- padding: auto 0.5rem;
388
- }
389
-
390
- table {
391
- border-collapse: collapse;
392
- width: 100%;
393
- }
394
-
395
- td,
396
- th {
397
- border: 1px solid var(--dc-bg-3);
398
- text-align: left;
399
- padding: 0.5rem;
400
- }
401
-
402
- th {
403
- background: var(--dc-bg-2);
404
- }
405
-
406
- tr:nth-child(even) {
407
- background: var(--dc-bg-2);
408
- }
409
-
410
- table caption {
411
- font-weight: bold;
412
- margin-bottom: 0.5rem;
413
- }
414
-
415
- textarea {
416
- max-width: 100%;
417
- }
418
-
419
- ol,
420
- ul {
421
- padding-left: 2rem;
422
- }
423
-
424
- li {
425
- margin-top: 0.4rem;
426
- }
427
-
428
- ul ul,
429
- ol ul,
430
- ul ol,
431
- ol ol {
432
- margin-bottom: 0;
433
- }
434
-
435
- mark {
436
- padding: 3px 6px;
437
- background: var(--dc-ac-1);
438
- color: var(--dc-ac-tx);
439
- border-radius: 4px;
440
- }
441
-
442
- textarea,
443
- select,
444
- input {
445
- padding: 6px 12px;
446
- margin-bottom: 0.5rem;
447
- background: var(--dc-bg-2);
448
- color: var(--dc-tx-2);
449
- border: 1px solid var(--dc-bg-3);
450
- border-radius: 4px;
451
- box-shadow: none;
452
- box-sizing: border-box;
453
- }
454
-
455
- img {
456
- max-width: 100%;
457
- }
1
+ :root {
2
+ /* Font families - Geist, Inter, Apple default (Gecko and Blink), Microsoft default, browser default */
3
+ --dc-font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont,
4
+ "Segoe UI", sans-serif;
5
+ --dc-font-mono: "Geist Mono", monospace;
6
+ /* Light colors */
7
+ --dc-tx-1: #000000;
8
+ --dc-tx-2: #1a1a1a;
9
+ --dc-bg-1: #fafafa;
10
+ --dc-bg-2: #fff;
11
+ --dc-bg-3: #ebebeb;
12
+ --dc-lk-1: #0068d6;
13
+ --dc-lkb-1: #0072f5;
14
+ --dc-lkb-2: #0062d1;
15
+ --dc-lkb-tx: #ededed;
16
+ --dc-ac-1: #8e4ec6;
17
+ --dc-ac-tx: #ededed;
18
+ /* Dark colors */
19
+ --dc-d-tx-1: #ededed;
20
+ --dc-d-tx-2: #a1a1a1;
21
+ --dc-d-bg-1: #000;
22
+ --dc-d-bg-2: #0a0a0a;
23
+ --dc-d-bg-3: #2e2e2e;
24
+ --dc-d-lk-1: #52a8ff;
25
+ --dc-d-lkb-1: #0072f5;
26
+ --dc-d-lkb-2: #0062d1;
27
+ --dc-d-lkb-tx: #ededed;
28
+ --dc-d-ac-1: #8e4ec6;
29
+ --dc-d-ac-tx: #ededed;
30
+ }
31
+
32
+ @media (prefers-color-scheme: dark) {
33
+ :root {
34
+ --dc-tx-1: var(--dc-d-tx-1);
35
+ --dc-tx-2: var(--dc-d-tx-2);
36
+ --dc-bg-1: var(--dc-d-bg-1);
37
+ --dc-bg-2: var(--dc-d-bg-2);
38
+ --dc-bg-3: var(--dc-d-bg-3);
39
+ --dc-lk-1: var(--dc-d-lk-1);
40
+ --dc-lkb-1: var(--dc-d-lkb-1);
41
+ --dc-lkb-2: var(--dc-d-lkb-2);
42
+ --dc-lkb-tx: var(--dc-d-lkb-tx);
43
+ --dc-ac-1: var(--dc-d-ac-1);
44
+ --dc-ac-tx: var(--dc-d-ac-tx);
45
+ }
46
+ }
47
+
48
+ * {
49
+ margin: 0;
50
+ padding: 0;
51
+ }
52
+
53
+ address,
54
+ area,
55
+ article,
56
+ aside,
57
+ audio,
58
+ blockquote,
59
+ datalist,
60
+ details,
61
+ dl,
62
+ fieldset,
63
+ figure,
64
+ form,
65
+ input,
66
+ iframe,
67
+ img,
68
+ meter,
69
+ nav,
70
+ ol,
71
+ optgroup,
72
+ option,
73
+ output,
74
+ p,
75
+ pre,
76
+ progress,
77
+ ruby,
78
+ section,
79
+ table,
80
+ textarea,
81
+ ul,
82
+ video {
83
+ margin-bottom: 1rem;
84
+ }
85
+
86
+ html,
87
+ input,
88
+ select,
89
+ button {
90
+ font-family: var(--dc-font-sans);
91
+ }
92
+
93
+ body {
94
+ margin: 0 auto;
95
+ max-width: 750px;
96
+ padding: 2rem;
97
+ border-radius: 4px;
98
+ overflow-x: hidden;
99
+ word-break: break-word;
100
+ overflow-wrap: break-word;
101
+ background: var(--dc-bg-1);
102
+ color: var(--dc-tx-2);
103
+ font-size: 1.03rem;
104
+ line-height: 1.5;
105
+ }
106
+
107
+ ::selection {
108
+ background: var(--dc-ac-1);
109
+ color: var(--dc-ac-tx);
110
+ }
111
+
112
+ h1,
113
+ h2,
114
+ h3,
115
+ h4,
116
+ h5,
117
+ h6 {
118
+ line-height: 1;
119
+ color: var(--dc-tx-1);
120
+ padding-top: 0.875rem;
121
+ }
122
+
123
+ h1,
124
+ h2,
125
+ h3 {
126
+ padding-bottom: 6px;
127
+ margin-bottom: 8px;
128
+ border-bottom: 1px solid var(--dc-bg-3);
129
+ }
130
+
131
+ h4,
132
+ h5,
133
+ h6 {
134
+ margin-bottom: 0.3rem;
135
+ }
136
+
137
+ h1 {
138
+ font-size: 2.25rem;
139
+ }
140
+
141
+ h2 {
142
+ font-size: 1.85rem;
143
+ }
144
+
145
+ h3 {
146
+ font-size: 1.55rem;
147
+ }
148
+
149
+ h4 {
150
+ font-size: 1.25rem;
151
+ }
152
+
153
+ h5 {
154
+ font-size: 1rem;
155
+ }
156
+
157
+ h6 {
158
+ font-size: 0.875rem;
159
+ }
160
+
161
+ a {
162
+ color: var(--dc-lk-1);
163
+ text-decoration: none;
164
+ }
165
+
166
+ a:hover {
167
+ text-decoration: underline;
168
+ }
169
+
170
+ abbr:hover {
171
+ cursor: help;
172
+ }
173
+
174
+ blockquote {
175
+ padding: 1.5rem;
176
+ background: var(--dc-bg-2);
177
+ border: 1px solid var(--dc-bg-3);
178
+ border-left: 6px solid var(--dc-bg-3);
179
+ border-radius: 4px;
180
+ }
181
+
182
+ @media (max-width: 1424px) {
183
+ header {
184
+ background: var(--dc-bg-2);
185
+ border-bottom: 1px solid var(--dc-bg-3);
186
+ padding-top: 0.9rem;
187
+ padding-bottom: 0.6rem;
188
+ margin: -2rem calc(50% - 50vw) 2rem;
189
+ padding-left: calc(50vw - 50%);
190
+ padding-right: calc(50vw - 50%);
191
+ }
192
+
193
+ header nav a + a::before {
194
+ content: "• ";
195
+ color: var(--dc-tx-2);
196
+ }
197
+
198
+ header h1 {
199
+ font-size: 1.6rem;
200
+ }
201
+
202
+ header h2 {
203
+ font-size: 1.4rem;
204
+ }
205
+
206
+ header h3 {
207
+ font-size: 1.2rem;
208
+ }
209
+
210
+ header h4 {
211
+ font-size: 1rem;
212
+ }
213
+
214
+ header h5 {
215
+ font-size: 0.9rem;
216
+ }
217
+
218
+ header p {
219
+ font-size: 1rem;
220
+ }
221
+
222
+ header nav {
223
+ font-size: 0.9rem;
224
+ }
225
+
226
+ header h6 {
227
+ font-size: 0.8rem;
228
+ }
229
+
230
+ header * {
231
+ padding-top: 0.15rem;
232
+ padding-bottom: 0.15rem;
233
+ margin-top: 0rem;
234
+ margin-bottom: 0rem;
235
+ }
236
+ }
237
+
238
+ @media (min-width: 1425px) {
239
+ header {
240
+ background: none;
241
+ padding: 2rem 1.5rem;
242
+ margin: 0;
243
+ position: fixed;
244
+ top: 0;
245
+ left: calc(50% - 700px);
246
+ width: 255px;
247
+ height: 100%;
248
+ }
249
+
250
+ header nav {
251
+ display: flex;
252
+ flex-direction: column;
253
+ }
254
+
255
+ header nav a::before {
256
+ content: "• ";
257
+ color: var(--dc-tx-2);
258
+ }
259
+
260
+ header * {
261
+ padding-top: 0.25rem;
262
+ padding-bottom: 0.25rem;
263
+ margin-top: 0rem;
264
+ margin-bottom: 0rem;
265
+ }
266
+ }
267
+
268
+ header h1,
269
+ header h2,
270
+ header h3,
271
+ header h4,
272
+ header h5,
273
+ header h6 {
274
+ border-bottom: 0;
275
+ }
276
+
277
+ header > *:first-child {
278
+ margin-top: 0;
279
+ padding-top: 0;
280
+ }
281
+
282
+ header > *:last-child {
283
+ margin-bottom: 0;
284
+ padding-bottom: 0;
285
+ }
286
+
287
+ a button,
288
+ button,
289
+ input[type="submit"],
290
+ input[type="reset"],
291
+ input[type="button"] {
292
+ font-size: 1rem;
293
+ display: inline-block;
294
+ padding: 6px 12px;
295
+ text-align: center;
296
+ text-decoration: none;
297
+ white-space: nowrap;
298
+ background: var(--dc-lkb-1);
299
+ color: var(--dc-lkb-tx);
300
+ border: 0;
301
+ border-radius: 4px;
302
+ box-sizing: border-box;
303
+ cursor: pointer;
304
+ }
305
+
306
+ a button[disabled],
307
+ button[disabled],
308
+ input[type="submit"][disabled],
309
+ input[type="reset"][disabled],
310
+ input[type="button"][disabled] {
311
+ cursor: not-allowed;
312
+ opacity: 0.5;
313
+ }
314
+
315
+ .button:focus,
316
+ .button:enabled:hover,
317
+ button:focus,
318
+ button:enabled:hover,
319
+ input[type="submit"]:focus,
320
+ input[type="submit"]:enabled:hover,
321
+ input[type="reset"]:focus,
322
+ input[type="reset"]:enabled:hover,
323
+ input[type="button"]:focus,
324
+ input[type="button"]:enabled:hover {
325
+ background: var(--dc-lkb-2);
326
+ }
327
+
328
+ a img {
329
+ margin-bottom: 0;
330
+ }
331
+
332
+ code,
333
+ pre,
334
+ kbd,
335
+ samp {
336
+ font-family: var(--dc-font-mono);
337
+ }
338
+
339
+ code,
340
+ samp,
341
+ kbd,
342
+ pre {
343
+ background: var(--dc-bg-2);
344
+ border: 1px solid var(--dc-bg-3);
345
+ border-radius: 4px;
346
+ padding: 3px 6px;
347
+ font-size: 0.9em;
348
+ }
349
+
350
+ kbd {
351
+ border-bottom: 3px solid var(--dc-bg-3);
352
+ }
353
+
354
+ pre {
355
+ padding: 1rem 1.4rem;
356
+ max-width: 100%;
357
+ overflow: auto;
358
+ }
359
+
360
+ pre code {
361
+ background: inherit;
362
+ font-size: inherit;
363
+ color: inherit;
364
+ border: 0;
365
+ padding: 0;
366
+ margin: 0;
367
+ }
368
+
369
+ code pre {
370
+ display: inline;
371
+ background: inherit;
372
+ font-size: inherit;
373
+ color: inherit;
374
+ border: 0;
375
+ padding: 0;
376
+ margin: 0;
377
+ }
378
+
379
+ details {
380
+ padding: 0.6rem 1rem;
381
+ background: var(--dc-bg-2);
382
+ border: 1px solid var(--dc-bg-3);
383
+ border-radius: 4px;
384
+ }
385
+
386
+ summary {
387
+ cursor: pointer;
388
+ font-weight: bold;
389
+ }
390
+
391
+ details[open] summary {
392
+ margin-bottom: 8px;
393
+ }
394
+
395
+ details[open] > *:first-child {
396
+ margin-top: 0;
397
+ padding-top: 0;
398
+ }
399
+
400
+ details[open] > *:last-child {
401
+ margin-bottom: 0;
402
+ padding-bottom: 0;
403
+ }
404
+
405
+ dt {
406
+ font-weight: bold;
407
+ }
408
+
409
+ dd::before {
410
+ content: "→ ";
411
+ }
412
+
413
+ hr {
414
+ border: 0;
415
+ border-bottom: 1px solid var(--dc-bg-3);
416
+ margin: 1rem auto;
417
+ }
418
+
419
+ fieldset {
420
+ margin-top: 1rem;
421
+ padding: 2rem;
422
+ border: 1px solid var(--dc-bg-3);
423
+ border-radius: 4px;
424
+ }
425
+
426
+ legend {
427
+ padding: auto 0.5rem;
428
+ }
429
+
430
+ table {
431
+ border-collapse: collapse;
432
+ width: 100%;
433
+ }
434
+
435
+ td,
436
+ th {
437
+ border: 1px solid var(--dc-bg-3);
438
+ text-align: left;
439
+ padding: 0.5rem;
440
+ }
441
+
442
+ th {
443
+ background: var(--dc-bg-2);
444
+ }
445
+
446
+ tr:nth-child(even) {
447
+ background: var(--dc-bg-2);
448
+ }
449
+
450
+ table caption {
451
+ font-weight: bold;
452
+ margin-bottom: 0.5rem;
453
+ }
454
+
455
+ textarea {
456
+ max-width: 100%;
457
+ }
458
+
459
+ ol,
460
+ ul {
461
+ padding-left: 2rem;
462
+ }
463
+
464
+ li {
465
+ margin-top: 0.4rem;
466
+ }
467
+
468
+ ul ul,
469
+ ol ul,
470
+ ul ol,
471
+ ol ol {
472
+ margin-bottom: 0;
473
+ }
474
+
475
+ mark {
476
+ padding: 3px 6px;
477
+ background: var(--dc-ac-1);
478
+ color: var(--dc-ac-tx);
479
+ border-radius: 4px;
480
+ }
481
+
482
+ textarea,
483
+ select,
484
+ input {
485
+ padding: 6px 12px;
486
+ margin-bottom: 0.5rem;
487
+ background: var(--dc-bg-2);
488
+ color: var(--dc-tx-2);
489
+ border: 1px solid var(--dc-bg-3);
490
+ border-radius: 4px;
491
+ box-shadow: none;
492
+ box-sizing: border-box;
493
+ }
494
+
495
+ img {
496
+ max-width: 100%;
497
+ }