accomadesc 0.3.22 → 0.3.24
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 +84 -1
- package/package.json +1 -1
|
@@ -95,7 +95,9 @@
|
|
|
95
95
|
</div>
|
|
96
96
|
{:else}
|
|
97
97
|
<div class="flag-wrapper">
|
|
98
|
-
<a
|
|
98
|
+
<a
|
|
99
|
+
data-sveltekit-keepfocus
|
|
100
|
+
data-sveltekit-noscroll
|
|
99
101
|
onclick={() => (updateCurrentLang ? updateCurrentLang(l) : '')}
|
|
100
102
|
href={pathForLang(l)}
|
|
101
103
|
>
|
|
@@ -348,4 +350,85 @@
|
|
|
348
350
|
background-color: var(--header-bg-color);
|
|
349
351
|
bottom: -3rem;
|
|
350
352
|
}
|
|
353
|
+
|
|
354
|
+
:global(*) {
|
|
355
|
+
* {
|
|
356
|
+
font-family: var(--main-font-family);
|
|
357
|
+
font-variant: var(--main-font-variant);
|
|
358
|
+
|
|
359
|
+
box-sizing: border-box;
|
|
360
|
+
margin: 0;
|
|
361
|
+
padding: 0;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
*::selection {
|
|
365
|
+
background-color: var(--font-select-color);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
*::after {
|
|
369
|
+
box-sizing: border-box;
|
|
370
|
+
margin: 0;
|
|
371
|
+
padding: 0;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
*::before {
|
|
375
|
+
box-sizing: border-box;
|
|
376
|
+
margin: 0;
|
|
377
|
+
padding: 0;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
:global(hr) {
|
|
382
|
+
margin-top: 1rem;
|
|
383
|
+
margin-bottom: 1rem;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
:global(h4) {
|
|
387
|
+
font-family: var(--header-font-family);
|
|
388
|
+
font-variant: var(--header-font-variant);
|
|
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
|
+
}
|
|
403
|
+
|
|
404
|
+
:global(h2) {
|
|
405
|
+
font-family: var(--header-font-family);
|
|
406
|
+
font-variant: var(--header-font-variant);
|
|
407
|
+
font-size: 2.2rem;
|
|
408
|
+
margin-bottom: 0.8rem;
|
|
409
|
+
margin-top: 1.2rem;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
:global(h1) {
|
|
413
|
+
font-family: var(--header-font-family);
|
|
414
|
+
font-variant: var(--header-font-variant);
|
|
415
|
+
font-size: 3.2rem;
|
|
416
|
+
margin-bottom: 0.8rem;
|
|
417
|
+
margin-top: 1.2rem;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
:global(ol) {
|
|
421
|
+
padding-left: 0.5rem;
|
|
422
|
+
margin: 1rem;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
:global(ul) {
|
|
426
|
+
margin-left: 1rem;
|
|
427
|
+
padding-left: 0.2rem;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
:global(input) {
|
|
431
|
+
background-color: var(--main-bg-color);
|
|
432
|
+
color: var(--main-font-color);
|
|
433
|
+
}
|
|
351
434
|
</style>
|