rizzo-css 0.0.50 → 0.0.52
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/README.md +3 -3
- package/bin/rizzo-css.js +13 -13
- package/dist/rizzo.min.css +3 -2
- package/dist/sfx/click.wav +0 -0
- package/package.json +1 -1
- package/scaffold/astro/BackToTop.astro +59 -0
- package/scaffold/astro/DocsSidebar.astro +146 -0
- package/scaffold/astro/Settings.astro +1 -1
- package/scaffold/astro/ThemeSwitcher.astro +2 -1
- package/scaffold/astro/icons/ChevronUp.astro +29 -0
- package/scaffold/astro-core/.astro/content-assets.mjs +1 -0
- package/scaffold/astro-core/.astro/content-modules.mjs +1 -0
- package/scaffold/astro-core/.astro/content.d.ts +199 -0
- package/scaffold/astro-core/.astro/types.d.ts +2 -0
- package/scaffold/astro-core/README-RIZZO.md +1 -1
- package/scaffold/astro-core/dist/.gitkeep +0 -0
- package/scaffold/astro-core/dist/_noop-middleware.mjs +3 -0
- package/scaffold/astro-core/dist/chunks/astro/server_9Mzx7luy.mjs +6023 -0
- package/scaffold/astro-core/dist/chunks/astro_BOYUKg7r.mjs +1 -0
- package/scaffold/astro-core/dist/favicon.svg +18 -0
- package/scaffold/astro-core/dist/manifest_DXpJmqSX.mjs +154 -0
- package/scaffold/astro-core/dist/noop-entrypoint.mjs +3 -0
- package/scaffold/astro-core/dist/pages/index.astro.mjs +87 -0
- package/scaffold/astro-core/dist/renderers.mjs +3 -0
- package/scaffold/astro-core/node_modules/.astro/data-store.json +1 -0
- package/scaffold/astro-core/node_modules/.vite/deps/_metadata.json +31 -0
- package/scaffold/astro-core/node_modules/.vite/deps/astro___aria-query.js +6776 -0
- package/scaffold/astro-core/node_modules/.vite/deps/astro___aria-query.js.map +7 -0
- package/scaffold/astro-core/node_modules/.vite/deps/astro___axobject-query.js +3754 -0
- package/scaffold/astro-core/node_modules/.vite/deps/astro___axobject-query.js.map +7 -0
- package/scaffold/astro-core/node_modules/.vite/deps/astro___cssesc.js +99 -0
- package/scaffold/astro-core/node_modules/.vite/deps/astro___cssesc.js.map +7 -0
- package/scaffold/astro-core/node_modules/.vite/deps/chunk-BUSYA2B4.js +8 -0
- package/scaffold/astro-core/node_modules/.vite/deps/chunk-BUSYA2B4.js.map +7 -0
- package/scaffold/astro-core/node_modules/.vite/deps/package.json +3 -0
- package/scaffold/astro-core/src/components/rizzo/CopyToClipboard.astro +157 -0
- package/scaffold/astro-core/src/components/rizzo/icons/Check.astro +29 -0
- package/scaffold/astro-core/src/components/rizzo/icons/Copy.astro +30 -0
- package/scaffold/astro-core/src/pages/index.astro +3 -15
- package/scaffold/shared/sound-effects-inline.js +3 -3
- package/scaffold/svelte/BackToTop.svelte +53 -0
- package/scaffold/svelte/Settings.svelte +1 -1
- package/scaffold/svelte/index.ts +4 -0
- package/scaffold/svelte/theme.ts +16 -2
- package/scaffold/svelte-core/README-RIZZO.md +1 -1
- package/scaffold/svelte-core/src/routes/+page.svelte +2 -9
- package/scaffold/utils/theme.ts +16 -2
- package/scaffold/vanilla/README-RIZZO.md +5 -4
- package/scaffold/vanilla/components/accordion.html +30 -1
- package/scaffold/vanilla/components/alert.html +30 -1
- package/scaffold/vanilla/components/avatar.html +30 -1
- package/scaffold/vanilla/components/back-to-top.html +623 -0
- package/scaffold/vanilla/components/badge.html +30 -1
- package/scaffold/vanilla/components/breadcrumb.html +30 -1
- package/scaffold/vanilla/components/button.html +30 -1
- package/scaffold/vanilla/components/cards.html +30 -1
- package/scaffold/vanilla/components/copy-to-clipboard.html +30 -1
- package/scaffold/vanilla/components/divider.html +30 -1
- package/scaffold/vanilla/components/docs-sidebar.html +30 -1
- package/scaffold/vanilla/components/dropdown.html +30 -1
- package/scaffold/vanilla/components/font-switcher.html +30 -1
- package/scaffold/vanilla/components/footer.html +30 -1
- package/scaffold/vanilla/components/forms.html +30 -1
- package/scaffold/vanilla/components/icons.html +30 -1
- package/scaffold/vanilla/components/index.html +31 -1
- package/scaffold/vanilla/components/modal.html +30 -1
- package/scaffold/vanilla/components/navbar.html +30 -1
- package/scaffold/vanilla/components/pagination.html +30 -1
- package/scaffold/vanilla/components/progress-bar.html +30 -1
- package/scaffold/vanilla/components/search.html +30 -1
- package/scaffold/vanilla/components/settings.html +30 -1
- package/scaffold/vanilla/components/sound-effects.html +30 -1
- package/scaffold/vanilla/components/spinner.html +30 -1
- package/scaffold/vanilla/components/table.html +30 -1
- package/scaffold/vanilla/components/tabs.html +30 -1
- package/scaffold/vanilla/components/theme-switcher.html +30 -1
- package/scaffold/vanilla/components/toast.html +30 -1
- package/scaffold/vanilla/components/tooltip.html +30 -1
- package/scaffold/vanilla/icons/ChevronUp.svg +12 -0
- package/scaffold/vanilla/index.html +38 -5
- package/scaffold/vanilla/js/main.js +19 -0
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2"><line x1="4" y1="4" x2="12" y2="12"></line><line x1="12" y1="4" x2="4" y2="12"></line></svg>
|
|
144
144
|
</button>
|
|
145
145
|
</div>
|
|
146
|
-
<div class="settings__content">
|
|
146
|
+
<div class="settings__content" tabindex="-1" aria-label="Settings options">
|
|
147
147
|
<section class="settings__section">
|
|
148
148
|
<h3 class="settings__section-title">Theme</h3>
|
|
149
149
|
<div class="settings__control">
|
|
@@ -397,6 +397,17 @@
|
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
400
411
|
|
|
401
412
|
|
|
402
413
|
|
|
@@ -589,6 +600,24 @@
|
|
|
589
600
|
|
|
590
601
|
|
|
591
602
|
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
615
|
+
<button type="button" class="back-to-top__btn" aria-label="Back to top" data-back-to-top-btn>
|
|
616
|
+
<span class="back-to-top__icon" aria-hidden="true">
|
|
617
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>
|
|
618
|
+
</span>
|
|
619
|
+
</button>
|
|
620
|
+
</div>
|
|
592
621
|
<script src="../js/main.js"></script>
|
|
593
622
|
</body>
|
|
594
623
|
</html>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg" width="24" height="24"
|
|
3
|
+
viewBox="0 0 24 24"
|
|
4
|
+
fill="none"
|
|
5
|
+
stroke="currentColor"
|
|
6
|
+
stroke-width="2"
|
|
7
|
+
stroke-linecap="round"
|
|
8
|
+
stroke-linejoin="round"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
>
|
|
11
|
+
<path d="m18 15-6-6-6 6" />
|
|
12
|
+
</svg>
|