accomadesc 0.3.24 → 0.3.25
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 +47 -47
- package/package.json +1 -1
|
@@ -351,7 +351,7 @@
|
|
|
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);
|
|
@@ -376,59 +376,59 @@
|
|
|
376
376
|
margin: 0;
|
|
377
377
|
padding: 0;
|
|
378
378
|
}
|
|
379
|
-
}
|
|
380
379
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
380
|
+
hr {
|
|
381
|
+
margin-top: 1rem;
|
|
382
|
+
margin-bottom: 1rem;
|
|
383
|
+
}
|
|
385
384
|
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
385
|
+
h4 {
|
|
386
|
+
font-family: var(--header-font-family);
|
|
387
|
+
font-variant: var(--header-font-variant);
|
|
388
|
+
font-size: 1.2rem;
|
|
389
|
+
text-align: center;
|
|
390
|
+
margin-bottom: 0.2rem;
|
|
391
|
+
margin-top: 0.4rem;
|
|
392
|
+
}
|
|
394
393
|
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
394
|
+
h3 {
|
|
395
|
+
font-family: var(--header-font-family);
|
|
396
|
+
font-variant: var(--header-font-variant);
|
|
397
|
+
text-align: center;
|
|
398
|
+
font-size: 1.8rem;
|
|
399
|
+
margin-bottom: 0.6rem;
|
|
400
|
+
margin-top: 1rem;
|
|
401
|
+
}
|
|
403
402
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
403
|
+
h2 {
|
|
404
|
+
font-family: var(--header-font-family);
|
|
405
|
+
font-variant: var(--header-font-variant);
|
|
406
|
+
font-size: 2.2rem;
|
|
407
|
+
margin-bottom: 0.8rem;
|
|
408
|
+
margin-top: 1.2rem;
|
|
409
|
+
}
|
|
411
410
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
411
|
+
h1 {
|
|
412
|
+
font-family: var(--header-font-family);
|
|
413
|
+
font-variant: var(--header-font-variant);
|
|
414
|
+
font-size: 3.2rem;
|
|
415
|
+
margin-bottom: 0.8rem;
|
|
416
|
+
margin-top: 1.2rem;
|
|
417
|
+
}
|
|
419
418
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
419
|
+
ol {
|
|
420
|
+
padding-left: 0.5rem;
|
|
421
|
+
margin: 1rem;
|
|
422
|
+
}
|
|
424
423
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
424
|
+
ul {
|
|
425
|
+
margin-left: 1rem;
|
|
426
|
+
padding-left: 0.2rem;
|
|
427
|
+
}
|
|
429
428
|
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
429
|
+
input {
|
|
430
|
+
background-color: var(--main-bg-color);
|
|
431
|
+
color: var(--main-font-color);
|
|
432
|
+
}
|
|
433
433
|
}
|
|
434
434
|
</style>
|