accomadesc 0.3.24 → 0.3.26
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/dist/PageComponent.svelte +45 -61
- package/package.json +1 -1
|
@@ -351,84 +351,68 @@
|
|
|
351
351
|
bottom: -3rem;
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
-
:global
|
|
354
|
+
div.page-wrapper :global {
|
|
355
355
|
* {
|
|
356
356
|
font-family: var(--main-font-family);
|
|
357
357
|
font-variant: var(--main-font-variant);
|
|
358
|
-
|
|
359
|
-
box-sizing: border-box;
|
|
360
|
-
margin: 0;
|
|
361
|
-
padding: 0;
|
|
362
358
|
}
|
|
363
359
|
|
|
364
360
|
*::selection {
|
|
365
361
|
background-color: var(--font-select-color);
|
|
366
362
|
}
|
|
367
363
|
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
margin:
|
|
371
|
-
padding: 0;
|
|
364
|
+
hr {
|
|
365
|
+
margin-top: 1rem;
|
|
366
|
+
margin-bottom: 1rem;
|
|
372
367
|
}
|
|
373
368
|
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
369
|
+
h4 {
|
|
370
|
+
font-family: var(--header-font-family);
|
|
371
|
+
font-variant: var(--header-font-variant);
|
|
372
|
+
font-size: 1.2rem;
|
|
373
|
+
text-align: center;
|
|
374
|
+
margin-bottom: 0.2rem;
|
|
375
|
+
margin-top: 0.4rem;
|
|
378
376
|
}
|
|
379
|
-
}
|
|
380
377
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
font-size: 1.2rem;
|
|
390
|
-
text-align: center;
|
|
391
|
-
margin-bottom: 0.2rem;
|
|
392
|
-
margin-top: 0.4rem;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
:global(h3) {
|
|
396
|
-
font-family: var(--header-font-family);
|
|
397
|
-
font-variant: var(--header-font-variant);
|
|
398
|
-
text-align: center;
|
|
399
|
-
font-size: 1.8rem;
|
|
400
|
-
margin-bottom: 0.6rem;
|
|
401
|
-
margin-top: 1rem;
|
|
402
|
-
}
|
|
378
|
+
h3 {
|
|
379
|
+
font-family: var(--header-font-family);
|
|
380
|
+
font-variant: var(--header-font-variant);
|
|
381
|
+
text-align: center;
|
|
382
|
+
font-size: 1.8rem;
|
|
383
|
+
margin-bottom: 0.6rem;
|
|
384
|
+
margin-top: 1rem;
|
|
385
|
+
}
|
|
403
386
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
387
|
+
h2 {
|
|
388
|
+
font-family: var(--header-font-family);
|
|
389
|
+
font-variant: var(--header-font-variant);
|
|
390
|
+
font-size: 2.2rem;
|
|
391
|
+
margin-bottom: 0.8rem;
|
|
392
|
+
margin-top: 1.2rem;
|
|
393
|
+
}
|
|
411
394
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
395
|
+
h1 {
|
|
396
|
+
font-family: var(--header-font-family);
|
|
397
|
+
font-variant: var(--header-font-variant);
|
|
398
|
+
font-size: 3.2rem;
|
|
399
|
+
margin-bottom: 0.8rem;
|
|
400
|
+
margin-top: 1.2rem;
|
|
401
|
+
}
|
|
419
402
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
403
|
+
ol {
|
|
404
|
+
padding-left: 0.5rem;
|
|
405
|
+
margin: 1rem;
|
|
406
|
+
}
|
|
424
407
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
408
|
+
ul {
|
|
409
|
+
margin-left: 1rem;
|
|
410
|
+
padding-left: 0.2rem;
|
|
411
|
+
}
|
|
429
412
|
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
413
|
+
input {
|
|
414
|
+
background-color: var(--main-bg-color);
|
|
415
|
+
color: var(--main-font-color);
|
|
416
|
+
}
|
|
433
417
|
}
|
|
434
418
|
</style>
|