accomadesc 0.3.23 → 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 -49
- package/package.json +1 -1
|
@@ -351,12 +351,10 @@
|
|
|
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
|
-
background-color: var(--main-bg-color);
|
|
359
|
-
color: var(--main-font-color);
|
|
360
358
|
|
|
361
359
|
box-sizing: border-box;
|
|
362
360
|
margin: 0;
|
|
@@ -378,59 +376,59 @@
|
|
|
378
376
|
margin: 0;
|
|
379
377
|
padding: 0;
|
|
380
378
|
}
|
|
381
|
-
}
|
|
382
379
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
380
|
+
hr {
|
|
381
|
+
margin-top: 1rem;
|
|
382
|
+
margin-bottom: 1rem;
|
|
383
|
+
}
|
|
387
384
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
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
|
+
}
|
|
396
393
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
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
|
+
}
|
|
405
402
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
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
|
+
}
|
|
413
410
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
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
|
+
}
|
|
421
418
|
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
419
|
+
ol {
|
|
420
|
+
padding-left: 0.5rem;
|
|
421
|
+
margin: 1rem;
|
|
422
|
+
}
|
|
426
423
|
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
424
|
+
ul {
|
|
425
|
+
margin-left: 1rem;
|
|
426
|
+
padding-left: 0.2rem;
|
|
427
|
+
}
|
|
431
428
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
429
|
+
input {
|
|
430
|
+
background-color: var(--main-bg-color);
|
|
431
|
+
color: var(--main-font-color);
|
|
432
|
+
}
|
|
435
433
|
}
|
|
436
434
|
</style>
|