@simple-reporting/base 1.0.36 → 1.0.38
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/dev/.ddev/config.yaml +1 -1
- package/dev/.idea/codeStyles/Project.xml +61 -0
- package/dev/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/dev/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/dev/.idea/deployment.xml +14 -0
- package/dev/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/dev/.idea/modules.xml +8 -0
- package/dev/.idea/nsfd_report-demo-mms.iml +8 -0
- package/dev/.idea/php.xml +19 -0
- package/dev/.idea/prettier.xml +6 -0
- package/dev/.idea/vcs.xml +6 -0
- package/dev/.idea/watcherTasks.xml +4 -0
- package/dev/livingdocs.config.json +1192 -27
- package/dev/package.json +2 -3
- package/dev/src/App.vue +1 -2
- package/dev/src/Autoload.ts +1 -1
- package/dev/src/Dialog.vue +12 -61
- package/dev/src/assets/fonts/FontAwesome/font.scss +2 -0
- package/dev/src/assets/fonts/Inter/inter.scss +2 -4
- package/dev/src/assets/images/accordion-minus.svg +4 -0
- package/dev/src/assets/images/accordion-plus.svg +4 -0
- package/dev/src/assets/images/arrow-left.svg +5 -0
- package/dev/src/assets/images/arrow-right.svg +5 -0
- package/dev/src/assets/images/arrow-up.svg +5 -0
- package/dev/src/assets/images/chevron-down.svg +1 -0
- package/dev/src/assets/images/chevron-left.svg +1 -0
- package/dev/src/assets/images/chevron-right.svg +1 -0
- package/dev/src/assets/images/chevron-up.svg +1 -0
- package/dev/src/assets/images/close.svg +5 -0
- package/dev/src/assets/images/download.svg +6 -0
- package/dev/src/assets/images/facebook.svg +1 -0
- package/dev/src/assets/images/instagram.svg +1 -0
- package/dev/src/assets/images/language.svg +1 -0
- package/dev/src/assets/images/linkedIn.svg +1 -0
- package/dev/src/assets/images/logo.svg +1 -0
- package/dev/src/assets/images/menu-light.svg +3 -0
- package/dev/src/assets/images/menu.svg +3 -0
- package/dev/src/assets/images/nav-arrow-left.svg +3 -0
- package/dev/src/assets/images/nav-arrow-right.svg +3 -0
- package/dev/src/assets/images/search.svg +5 -0
- package/dev/src/assets/images/twitter.svg +1 -0
- package/dev/src/assets/images/xing.svg +1 -0
- package/dev/src/assets/scss/app.scss +9 -0
- package/dev/src/assets/scss/components/button.scss +37 -0
- package/dev/src/assets/scss/components/dialog.scss +84 -0
- package/dev/src/assets/scss/components/fontawesome.scss +56 -0
- package/dev/src/assets/scss/components/note/accordion.scss +55 -41
- package/dev/src/assets/scss/editor.scss +5 -5
- package/dev/src/assets/scss/general.scss +29 -2
- package/dev/src/assets/scss/margins.scss +57 -0
- package/dev/src/assets/scss/pdf.scss +0 -32
- package/dev/src/assets/scss/placeholders/breakout-grid.scss +34 -0
- package/dev/src/assets/scss/placeholders/button.scss +230 -0
- package/dev/src/assets/scss/placeholders/fontawesome.scss +7 -0
- package/dev/src/assets/scss/placeholders/grid.scss +354 -0
- package/dev/src/assets/scss/web.scss +17 -21
- package/dev/src/assets/scss/xbrl.scss +1 -0
- package/dev/src/components/Button/Default/Action.vue +65 -0
- package/dev/src/components/Button/Default/Content.vue +225 -0
- package/dev/src/components/Button/Default/ExternalLink.vue +63 -0
- package/dev/src/components/Button/Default/InternalLink.vue +64 -0
- package/dev/src/components/Button/Default.vue +101 -0
- package/dev/src/components/Page/MainNavigation.vue +96 -6
- package/dev/src/components/Page/MetaNavigation.vue +116 -0
- package/dev/src/components/Page/PrevNext.vue +140 -70
- package/dev/src/components/PageFooter.vue +405 -0
- package/dev/src/components/PageHeader.vue +828 -0
- package/dev/src/components/{Page/Main.vue → PageMain.vue} +11 -0
- package/dev/src/composables/globalLinks.ts +46 -0
- package/dev/src/composables/isDesktopView.ts +18 -0
- package/dev/src/composables/mainNavigation.ts +11 -0
- package/dev/src/entries/pdf.ts +5 -5
- package/dev/src/i18n/index.ts +1 -1
- package/dev/src/locales/de.json +40 -0
- package/dev/src/locales/en.json +40 -0
- package/dev/src/router/index.ts +1 -2
- package/dev/src/views/DevView.vue +1 -835
- package/dev/src/views/PageNotFound.vue +3 -69
- package/dev/srl.config.json +34 -49
- package/livingdocs/010.Titles/010.title-h1/scss/_spacing-variations.scss +17 -0
- package/livingdocs/010.Titles/010.title-h1/scss/general.scss +4 -0
- package/livingdocs/010.Titles/020.title-h2/scss/_spacing-variations.scss +12 -0
- package/livingdocs/010.Titles/020.title-h2/scss/general.scss +4 -0
- package/livingdocs/010.Titles/020.title-h2/title-h2.html +2 -1
- package/livingdocs/010.Titles/030.title-h3/scss/_spacing-variations.scss +13 -0
- package/livingdocs/010.Titles/030.title-h3/scss/general.scss +5 -1
- package/livingdocs/010.Titles/030.title-h3/title-h3.html +2 -1
- package/livingdocs/010.Titles/040.title-h4/scss/_spacing-variations.scss +12 -0
- package/livingdocs/010.Titles/040.title-h4/scss/general.scss +5 -1
- package/livingdocs/010.Titles/040.title-h4/title-h4.html +2 -1
- package/livingdocs/010.Titles/050.title-h5/scss/_spacing-variations.scss +11 -0
- package/livingdocs/010.Titles/050.title-h5/scss/general.scss +4 -0
- package/livingdocs/010.Titles/060.title-h6/scss/_spacing-variations.scss +10 -0
- package/livingdocs/010.Titles/060.title-h6/scss/general.scss +4 -0
- package/livingdocs/020.Text/010.lead/scss/_spacing-variations.scss +5 -0
- package/livingdocs/020.Text/010.lead/scss/general.scss +4 -0
- package/livingdocs/020.Text/020.paragraph/scss/_spacing-variations.scss +22 -0
- package/livingdocs/020.Text/020.paragraph/scss/general.scss +4 -0
- package/livingdocs/020.Text/060.quote-with-portrait/scss/_spacing-variations.scss +7 -0
- package/livingdocs/020.Text/060.quote-with-portrait/scss/general.scss +4 -1
- package/livingdocs/020.Text/060.quote-with-portrait/scss/pdf.scss +4 -10
- package/livingdocs/020.Text/060.quote-with-portrait/scss/web.scss +0 -1
- package/livingdocs/020.Text/070.footnote-container/scss/_spacing-variations.scss +22 -0
- package/livingdocs/020.Text/070.footnote-container/scss/general.scss +8 -0
- package/livingdocs/020.Text/070.footnote-container/scss/pdf.scss +0 -8
- package/livingdocs/020.Text/070.footnote-container/scss/web.scss +0 -5
- package/livingdocs/020.Text/070.footnote-container/scss/xbrl.scss +9 -1
- package/livingdocs/020.Text/080.footnote-item/scss/_spacing-variations.scss +4 -0
- package/livingdocs/020.Text/080.footnote-item/scss/general.scss +28 -1
- package/livingdocs/020.Text/080.footnote-item/scss/web.scss +0 -20
- package/livingdocs/020.Text/080.footnote-item/scss/xbrl.scss +26 -1
- package/livingdocs/030.Lists/010.unordered-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/010.unordered-list/scss/_spacing-variations.scss +22 -0
- package/livingdocs/030.Lists/010.unordered-list/scss/general.scss +3 -5
- package/livingdocs/030.Lists/010.unordered-list/scss/pdf.scss +3 -1
- package/livingdocs/030.Lists/010.unordered-list/scss/web.scss +15 -1
- package/livingdocs/030.Lists/010.unordered-list/scss/word.scss +1 -6
- package/livingdocs/030.Lists/010.unordered-list/scss/xbrl.scss +2 -1
- package/livingdocs/030.Lists/020.ordered-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/030.alphanumeric-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/040.list-item-unordered-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/list-item-unordered-list.html +8 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/_spacing-variations.scss +4 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/general.scss +14 -0
- package/livingdocs/030.Lists/{040.list-item → 040.list-item-unordered-list}/scss/pdf.scss +7 -1
- package/livingdocs/030.Lists/{040.list-item/scss/general.scss → 040.list-item-unordered-list/scss/web.scss} +17 -6
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/word.scss +5 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/xbrl.scss +2 -0
- package/livingdocs/030.Lists/050.list-item-ordered-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/050.list-item-ordered-list/list-item-ordered-list.html +8 -0
- package/livingdocs/030.Lists/060.list-item-alphanumeric-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/060.list-item-alphanumeric-list/list-item-alphanumeric-list.html +8 -0
- package/livingdocs/040.Media/010.table/scss/_spacing-variations.scss +19 -0
- package/livingdocs/040.Media/010.table/scss/general.scss +270 -251
- package/livingdocs/040.Media/010.table/scss/pdf.scss +2 -18
- package/livingdocs/040.Media/010.table/scss/web.scss +0 -19
- package/livingdocs/040.Media/010.table/scss/xbrl.scss +4 -3
- package/livingdocs/040.Media/020.image/scss/_spacing-variations.scss +7 -0
- package/livingdocs/040.Media/020.image/scss/editor.scss +0 -1
- package/livingdocs/040.Media/020.image/scss/general.scss +6 -2
- package/livingdocs/040.Media/020.image/scss/pdf.scss +0 -4
- package/livingdocs/040.Media/020.image/scss/web.scss +0 -5
- package/livingdocs/040.Media/020.image/scss/xbrl.scss +1 -3
- package/livingdocs/040.Media/030.video/scss/_spacing-variations.scss +7 -0
- package/livingdocs/040.Media/030.video/scss/general.scss +19 -0
- package/livingdocs/040.Media/030.video/scss/pdf.scss +0 -10
- package/livingdocs/040.Media/030.video/scss/web.scss +0 -11
- package/livingdocs/040.Media/030.video/scss/xbrl.scss +1 -4
- package/livingdocs/060.Buttons/020.button/scss/general.scss +14 -75
- package/livingdocs/070.Container/020.columns-container/columns-container.html +1 -1
- package/livingdocs/070.Container/030.background-container/background-container.html +3 -0
- package/livingdocs/070.Container/030.background-container/ld-conf.json +4 -0
- package/livingdocs/070.Container/030.background-container/properties.json +1 -0
- package/livingdocs/070.Container/030.background-container/scss/_spacing-variations.scss +3 -0
- package/livingdocs/070.Container/030.background-container/scss/general.scss +9 -0
- package/livingdocs/070.Container/030.background-container/scss/pdf.scss +13 -0
- package/livingdocs/070.Container/030.background-container/scss/web.scss +1 -0
- package/livingdocs/070.Container/030.background-container/scss/word.scss +1 -0
- package/livingdocs/070.Container/030.background-container/scss/xbrl.scss +3 -0
- package/livingdocs/080.CV/010.cv/cv.html +2 -1
- package/livingdocs/080.CV/010.cv/scss/_spacing-variations.scss +5 -0
- package/livingdocs/080.CV/010.cv/scss/app.scss +16 -1
- package/livingdocs/080.CV/010.cv/scss/general.scss +4 -0
- package/livingdocs/080.CV/010.cv/scss/pdf.scss +2 -3
- package/livingdocs/080.CV/010.cv/scss/web.scss +17 -1
- package/livingdocs/080.CV/020.cv-time-span/scss/_spacing-variations.scss +14 -0
- package/livingdocs/080.CV/020.cv-time-span/scss/general.scss +4 -0
- package/livingdocs/080.CV/020.cv-time-span/scss/web.scss +0 -1
- package/livingdocs/100.Misc/010.anchor/scss/editor.scss +0 -1
- package/livingdocs/100.Misc/020.accordion/accordion.html +54 -7
- package/livingdocs/100.Misc/020.accordion/accordion.vue +83 -0
- package/livingdocs/100.Misc/020.accordion/scss/editor.scss +12 -0
- package/livingdocs/110.PDF/010.pdf-pagebreak/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/021.pdf-columnbreak/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/030.pdf-publication-title/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/040.pdf-chapter-title/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/050.pdf-chapter-navigation-container/scss/editor.scss +1 -1
- package/livingdocs/110.PDF/075.pdf-landscape-container/ld-conf.json +7 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/pdf-landscape-container.html +9 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/properties.json +15 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/scss/pdf.scss +19 -0
- package/livingdocs/110.PDF/100.pdf-toc-item/pdf-toc-item.html +3 -2
- package/livingdocs/110.PDF/100.pdf-toc-item/scss/general.scss +6 -5
- package/livingdocs/110.PDF/100.pdf-toc-item/scss/pdf.scss +9 -1
- package/livingdocs/130.Hosting_Components/010.download-center/download-center.html +7 -0
- package/livingdocs/130.Hosting_Components/010.download-center/download-center.vue +68 -0
- package/livingdocs/130.Hosting_Components/010.download-center/ld-conf.json +4 -0
- package/livingdocs/130.Hosting_Components/010.download-center/properties.json +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/_spacing-variations.scss +3 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/editor.scss +15 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/general.scss +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/pdf.scss +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/web.scss +42 -0
- package/livingdocs/130.Hosting_Components/020.search/ld-conf.json +4 -0
- package/livingdocs/130.Hosting_Components/020.search/properties.json +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/_spacing-variations.scss +4 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/editor.scss +14 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/general.scss +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/pdf.scss +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/web.scss +200 -0
- package/livingdocs/130.Hosting_Components/020.search/search.html +7 -0
- package/livingdocs/130.Hosting_Components/020.search/search.vue +484 -0
- package/livingdocs/999.Properties/breakout-grid/web.scss +5 -0
- package/livingdocs/999.Properties/grid/scss/app.scss +1 -0
- package/livingdocs/999.Properties/grid/scss/general.scss +31 -0
- package/livingdocs/999.Properties/grid/scss/pdf.scss +9 -0
- package/livingdocs/999.Properties/grid/scss/web.scss +1 -0
- package/livingdocs/999.Properties/grid/scss/xbrl.scss +2 -0
- package/livingdocs/999.Properties/icon/properties.json +2 -2
- package/package.json +1 -1
- package/plugins/viteSrlPlugin.js +16 -1
- package/scripts/build.js +1 -0
- package/scripts/config.js +6 -2
- package/scss/button.scss +25 -0
- package/scss/fa/font-free.scss +17 -0
- package/scss/fa/font-pro.scss +41 -0
- package/scss/fa/index.scss +118 -0
- package/scss/fa/source-free.scss +14 -0
- package/scss/fa/source-pro.scss +15 -0
- package/scss/index.scss +1 -0
- package/srl/.srl/components/Srl/Aria/TabChain.vue +6 -5
- package/srl/.srl/components/Srl/Article/Accordion.vue +37 -24
- package/srl/.srl/components/Srl/Article/Dialog/Button.vue +6 -5
- package/srl/.srl/components/Srl/Article/Root.vue +4 -1
- package/srl/.srl/components/Srl/Category/Accordion/Content.vue +2 -2
- package/srl/.srl/components/Srl/Category/Accordion/Toggle.vue +17 -8
- package/srl/.srl/components/Srl/Category/Accordion.vue +8 -5
- package/srl/.srl/components/Srl/Menu/Item.vue +20 -5
- package/srl/.srl/components/Srl/Page/Dialog.vue +31 -14
- package/srl/.srl/types/nswow.d.ts +6 -1
- package/srl/.srl/utils/index.ts +2 -0
- package/srl/.srl/utils/pageState.ts +24 -23
- package/srl/srl/button.scss +2 -0
- package/srl/srl/fa/font-free.scss +17 -0
- package/srl/srl/fa/font-pro.scss +41 -0
- package/srl/srl/fa/index.scss +118 -0
- package/srl/srl/fa/source-free.scss +14 -0
- package/srl/srl/fa/source-pro.scss +15 -0
- package/dev/src/assets/fonts/Inter/Inter-Regular.ttf +0 -0
- package/dev/src/assets/fonts/Inter/Inter-SemiBold.ttf +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-300.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-700.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-italic.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-regular.woff2 +0 -0
- package/dev/src/assets/images/mms-logo-white.svg +0 -105
- package/dev/src/assets/scss/components/icons.scss +0 -287
- package/dev/src/assets/scss/components/round-button.scss +0 -75
- package/dev/src/assets/scss/placeholders.scss +0 -588
- package/dev/src/components/Page/Footer.vue +0 -45
- package/dev/src/components/Page/Header.vue +0 -40
- package/dev/src/views/HomeView.vue +0 -5
- package/livingdocs/030.Lists/020.ordered-list/scss/general.scss +0 -6
- package/livingdocs/030.Lists/020.ordered-list/scss/pdf.scss +0 -5
- package/livingdocs/030.Lists/020.ordered-list/scss/word.scss +0 -9
- package/livingdocs/030.Lists/020.ordered-list/scss/xbrl.scss +0 -1
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/general.scss +0 -6
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/pdf.scss +0 -5
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/word.scss +0 -9
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/xbrl.scss +0 -1
- package/livingdocs/030.Lists/040.list-item/ld-conf.json +0 -5
- package/livingdocs/030.Lists/040.list-item/list-item.html +0 -5
- package/livingdocs/030.Lists/040.list-item/scss/web.scss +0 -27
- package/livingdocs/030.Lists/040.list-item/scss/word.scss +0 -19
- package/livingdocs/030.Lists/040.list-item/scss/xbrl.scss +0 -1
- /package/livingdocs/030.Lists/{020.ordered-list → 040.list-item-unordered-list}/scss/app.scss +0 -0
- /package/livingdocs/030.Lists/{020.ordered-list → 040.list-item-unordered-list}/scss/editor.scss +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list → 070.Container/030.background-container}/scss/app.scss +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list → 070.Container/030.background-container}/scss/editor.scss +0 -0
- /package/livingdocs/{030.Lists/040.list-item → 130.Hosting_Components/010.download-center}/scss/app.scss +0 -0
- /package/{dev/livingdocs/.gitkeep → livingdocs/130.Hosting_Components/010.download-center/scss/word.scss} +0 -0
- /package/livingdocs/{030.Lists/020.ordered-list/scss/web.scss → 130.Hosting_Components/010.download-center/scss/xbrl.scss} +0 -0
- /package/livingdocs/{030.Lists/040.list-item/scss/editor.scss → 130.Hosting_Components/020.search/scss/app.scss} +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list/scss/web.scss → 130.Hosting_Components/020.search/scss/word.scss} +0 -0
- /package/livingdocs/{060.Buttons/.gitkeep → 130.Hosting_Components/020.search/scss/xbrl.scss} +0 -0
- /package/livingdocs/999.Properties/{width → grid}/properties.json +0 -0
|
@@ -5,73 +5,7 @@ const props = defineProps<{
|
|
|
5
5
|
</script>
|
|
6
6
|
|
|
7
7
|
<template>
|
|
8
|
-
<
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
<h2>{{ $t('page.notFound') }}</h2>
|
|
12
|
-
<svg
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
width="16"
|
|
15
|
-
height="16"
|
|
16
|
-
fill="currentColor"
|
|
17
|
-
class="bi bi-robot"
|
|
18
|
-
viewBox="0 0 16 16"
|
|
19
|
-
>
|
|
20
|
-
<path
|
|
21
|
-
d="M6 12.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM3 8.062C3 6.76 4.235 5.765 5.53 5.886a26.58 26.58 0 0 0 4.94 0C11.765 5.765 13 6.76 13 8.062v1.157a.933.933 0 0 1-.765.935c-.845.147-2.34.346-4.235.346-1.895 0-3.39-.2-4.235-.346A.933.933 0 0 1 3 9.219V8.062Zm4.542-.827a.25.25 0 0 0-.217.068l-.92.9a24.767 24.767 0 0 1-1.871-.183.25.25 0 0 0-.068.495c.55.076 1.232.149 2.02.193a.25.25 0 0 0 .189-.071l.754-.736.847 1.71a.25.25 0 0 0 .404.062l.932-.97a25.286 25.286 0 0 0 1.922-.188.25.25 0 0 0-.068-.495c-.538.074-1.207.145-1.98.189a.25.25 0 0 0-.166.076l-.754.785-.842-1.7a.25.25 0 0 0-.182-.135Z"
|
|
22
|
-
/>
|
|
23
|
-
<path
|
|
24
|
-
d="M8.5 1.866a1 1 0 1 0-1 0V3h-2A4.5 4.5 0 0 0 1 7.5V8a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1v1a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-1a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1v-.5A4.5 4.5 0 0 0 10.5 3h-2V1.866ZM14 7.5V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7.5A3.5 3.5 0 0 1 5.5 4h5A3.5 3.5 0 0 1 14 7.5Z"
|
|
25
|
-
/>
|
|
26
|
-
</svg>
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
8
|
+
<PagePrevNext :mainNavigation="props.mainNavigation">
|
|
9
|
+
<SrlArticleRoot />
|
|
10
|
+
</PagePrevNext>
|
|
29
11
|
</template>
|
|
30
|
-
|
|
31
|
-
<style scoped lang="scss">
|
|
32
|
-
@use 'srl';
|
|
33
|
-
|
|
34
|
-
.srl-notfound {
|
|
35
|
-
margin: 0 auto;
|
|
36
|
-
@include srl.grid-container();
|
|
37
|
-
@include srl.fonts-core-styles();
|
|
38
|
-
|
|
39
|
-
&__inner {
|
|
40
|
-
display: flex;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
align-items: center;
|
|
43
|
-
flex-direction: column;
|
|
44
|
-
min-height: 80vh;
|
|
45
|
-
|
|
46
|
-
svg {
|
|
47
|
-
height: 100px;
|
|
48
|
-
width: 100px;
|
|
49
|
-
margin-top: 2rem;
|
|
50
|
-
animation: spin 600ms linear 2;
|
|
51
|
-
|
|
52
|
-
@keyframes spin {
|
|
53
|
-
10%,
|
|
54
|
-
90% {
|
|
55
|
-
transform: translate3d(-1px, 0, 0);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
20%,
|
|
59
|
-
80% {
|
|
60
|
-
transform: translate3d(2px, 0, 0);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
30%,
|
|
64
|
-
50%,
|
|
65
|
-
70% {
|
|
66
|
-
transform: translate3d(-4px, 0, 0);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
40%,
|
|
70
|
-
60% {
|
|
71
|
-
transform: translate3d(4px, 0, 0);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
</style>
|
package/dev/srl.config.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"meta": {
|
|
4
4
|
"title": {
|
|
5
5
|
"number-width": 800,
|
|
6
|
-
"number-width-pdf":
|
|
6
|
+
"number-width-pdf": 1200
|
|
7
7
|
},
|
|
8
8
|
"list": {
|
|
9
9
|
"marker-width": 40,
|
|
@@ -63,7 +63,8 @@
|
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"vertical-align": "bottom",
|
|
66
|
-
"notes-separator": ", "
|
|
66
|
+
"notes-separator": ", ",
|
|
67
|
+
"cells-width-in-mm": false
|
|
67
68
|
},
|
|
68
69
|
"footnote": {
|
|
69
70
|
"number-width": 19,
|
|
@@ -86,10 +87,6 @@
|
|
|
86
87
|
"toc-page-number": {
|
|
87
88
|
"width": 40,
|
|
88
89
|
"width-pdf": "35pt"
|
|
89
|
-
},
|
|
90
|
-
"toc-number": {
|
|
91
|
-
"width": 25,
|
|
92
|
-
"width-pdf": "20pt"
|
|
93
90
|
}
|
|
94
91
|
}
|
|
95
92
|
}
|
|
@@ -103,7 +100,6 @@
|
|
|
103
100
|
"line-height": 1.5,
|
|
104
101
|
"font-style": "normal",
|
|
105
102
|
"font-weight": 600,
|
|
106
|
-
"color": "black-1000",
|
|
107
103
|
"letter-spacing": 0,
|
|
108
104
|
"media": {
|
|
109
105
|
"print": {
|
|
@@ -128,7 +124,6 @@
|
|
|
128
124
|
"line-height": 1.2,
|
|
129
125
|
"font-style": "normal",
|
|
130
126
|
"font-weight": 600,
|
|
131
|
-
"color": "white-1000",
|
|
132
127
|
"letter-spacing": 0,
|
|
133
128
|
"media": {
|
|
134
129
|
"print": {
|
|
@@ -144,7 +139,6 @@
|
|
|
144
139
|
"line-height": 1.5,
|
|
145
140
|
"font-style": "normal",
|
|
146
141
|
"font-weight": 600,
|
|
147
|
-
"color": "black-1000",
|
|
148
142
|
"letter-spacing": 0,
|
|
149
143
|
"media": {
|
|
150
144
|
"print": {
|
|
@@ -166,7 +160,6 @@
|
|
|
166
160
|
"line-height": 0.875,
|
|
167
161
|
"font-style": "normal",
|
|
168
162
|
"font-weight": 600,
|
|
169
|
-
"color": "white-1000",
|
|
170
163
|
"letter-spacing": 0,
|
|
171
164
|
"media": {
|
|
172
165
|
"print": {
|
|
@@ -182,7 +175,6 @@
|
|
|
182
175
|
"line-height": 1.1,
|
|
183
176
|
"font-style": "normal",
|
|
184
177
|
"font-weight": 600,
|
|
185
|
-
"color": "black-1000",
|
|
186
178
|
"letter-spacing": 0,
|
|
187
179
|
"media": {
|
|
188
180
|
"print": {
|
|
@@ -204,7 +196,6 @@
|
|
|
204
196
|
"line-height": 1.5,
|
|
205
197
|
"font-style": "normal",
|
|
206
198
|
"font-weight": 600,
|
|
207
|
-
"color": "black-1000",
|
|
208
199
|
"letter-spacing": 0,
|
|
209
200
|
"media": {
|
|
210
201
|
"print": {
|
|
@@ -225,7 +216,6 @@
|
|
|
225
216
|
"line-height": 1.5,
|
|
226
217
|
"font-style": "normal",
|
|
227
218
|
"font-weight": 600,
|
|
228
|
-
"color": "black-1000",
|
|
229
219
|
"letter-spacing": 0,
|
|
230
220
|
"media": {
|
|
231
221
|
"print": {
|
|
@@ -246,7 +236,6 @@
|
|
|
246
236
|
"line-height": 1.5,
|
|
247
237
|
"font-style": "normal",
|
|
248
238
|
"font-weight": 600,
|
|
249
|
-
"color": "black-1000",
|
|
250
239
|
"letter-spacing": 0,
|
|
251
240
|
"media": {
|
|
252
241
|
"print": {
|
|
@@ -267,7 +256,6 @@
|
|
|
267
256
|
"line-height": 1.5,
|
|
268
257
|
"font-style": "normal",
|
|
269
258
|
"font-weight": 400,
|
|
270
|
-
"color": "black-1000",
|
|
271
259
|
"letter-spacing": 0,
|
|
272
260
|
"media": {
|
|
273
261
|
"print": {
|
|
@@ -291,7 +279,6 @@
|
|
|
291
279
|
"line-height": 1.5,
|
|
292
280
|
"font-style": "normal",
|
|
293
281
|
"font-weight": 400,
|
|
294
|
-
"color": "black-1000",
|
|
295
282
|
"letter-spacing": 0,
|
|
296
283
|
"media": {
|
|
297
284
|
"print": {
|
|
@@ -312,7 +299,6 @@
|
|
|
312
299
|
"line-height": 1.5,
|
|
313
300
|
"font-style": "normal",
|
|
314
301
|
"font-weight": 600,
|
|
315
|
-
"color": "black-1000",
|
|
316
302
|
"letter-spacing": 0,
|
|
317
303
|
"media": {
|
|
318
304
|
"print": {
|
|
@@ -333,7 +319,6 @@
|
|
|
333
319
|
"line-height": 1.5,
|
|
334
320
|
"font-style": "normal",
|
|
335
321
|
"font-weight": 400,
|
|
336
|
-
"color": "black-1000",
|
|
337
322
|
"letter-spacing": 0,
|
|
338
323
|
"media": {
|
|
339
324
|
"print": {
|
|
@@ -354,7 +339,6 @@
|
|
|
354
339
|
"line-height": 1.5,
|
|
355
340
|
"font-style": "normal",
|
|
356
341
|
"font-weight": 400,
|
|
357
|
-
"color": "black-1000",
|
|
358
342
|
"letter-spacing": 0,
|
|
359
343
|
"media": {
|
|
360
344
|
"print": {
|
|
@@ -375,7 +359,6 @@
|
|
|
375
359
|
"line-height": 1.5,
|
|
376
360
|
"font-style": "normal",
|
|
377
361
|
"font-weight": 600,
|
|
378
|
-
"color": "black-1000",
|
|
379
362
|
"letter-spacing": 0,
|
|
380
363
|
"media": {
|
|
381
364
|
"print": {
|
|
@@ -396,7 +379,6 @@
|
|
|
396
379
|
"line-height": 1.5,
|
|
397
380
|
"font-style": "normal",
|
|
398
381
|
"font-weight": 400,
|
|
399
|
-
"color": "black-1000",
|
|
400
382
|
"letter-spacing": 0,
|
|
401
383
|
"media": {
|
|
402
384
|
"print": {
|
|
@@ -417,7 +399,6 @@
|
|
|
417
399
|
"line-height": 1.5,
|
|
418
400
|
"font-style": "normal",
|
|
419
401
|
"font-weight": 400,
|
|
420
|
-
"color": "black-1000",
|
|
421
402
|
"letter-spacing": 0,
|
|
422
403
|
"media": {
|
|
423
404
|
"print": {
|
|
@@ -438,7 +419,6 @@
|
|
|
438
419
|
"line-height": 1.5,
|
|
439
420
|
"font-style": "normal",
|
|
440
421
|
"font-weight": 400,
|
|
441
|
-
"color": "black-1000",
|
|
442
422
|
"letter-spacing": 0,
|
|
443
423
|
"media": {
|
|
444
424
|
"print": {
|
|
@@ -459,7 +439,6 @@
|
|
|
459
439
|
"line-height": 1.5,
|
|
460
440
|
"font-style": "normal",
|
|
461
441
|
"font-weight": 400,
|
|
462
|
-
"color": "black-1000",
|
|
463
442
|
"letter-spacing": 0,
|
|
464
443
|
"media": {
|
|
465
444
|
"print": {
|
|
@@ -480,7 +459,6 @@
|
|
|
480
459
|
"line-height": 1.5,
|
|
481
460
|
"font-style": "normal",
|
|
482
461
|
"font-weight": 400,
|
|
483
|
-
"color": "primary-1000",
|
|
484
462
|
"letter-spacing": 0,
|
|
485
463
|
"media": {
|
|
486
464
|
"print": {
|
|
@@ -501,7 +479,6 @@
|
|
|
501
479
|
"line-height": 1.5,
|
|
502
480
|
"font-style": "normal",
|
|
503
481
|
"font-weight": 600,
|
|
504
|
-
"color": "black-1000",
|
|
505
482
|
"letter-spacing": 0,
|
|
506
483
|
"media": {
|
|
507
484
|
"print": {
|
|
@@ -522,7 +499,6 @@
|
|
|
522
499
|
"line-height": 1.5,
|
|
523
500
|
"font-style": "normal",
|
|
524
501
|
"font-weight": 400,
|
|
525
|
-
"color": "black-1000",
|
|
526
502
|
"letter-spacing": 0,
|
|
527
503
|
"media": {
|
|
528
504
|
"print": {
|
|
@@ -543,7 +519,6 @@
|
|
|
543
519
|
"line-height": 1,
|
|
544
520
|
"font-style": "normal",
|
|
545
521
|
"font-weight": 400,
|
|
546
|
-
"color": "black-1000",
|
|
547
522
|
"letter-spacing": 0,
|
|
548
523
|
"media": {
|
|
549
524
|
"print": {
|
|
@@ -564,7 +539,6 @@
|
|
|
564
539
|
"line-height": 1.5,
|
|
565
540
|
"font-style": "normal",
|
|
566
541
|
"font-weight": 400,
|
|
567
|
-
"color": "black-1000",
|
|
568
542
|
"letter-spacing": 0,
|
|
569
543
|
"media": {
|
|
570
544
|
"up": {
|
|
@@ -586,7 +560,6 @@
|
|
|
586
560
|
"line-height": 1.5,
|
|
587
561
|
"font-style": "normal",
|
|
588
562
|
"font-weight": 400,
|
|
589
|
-
"color": "black-1000",
|
|
590
563
|
"letter-spacing": 0,
|
|
591
564
|
"media": {
|
|
592
565
|
"print": {
|
|
@@ -602,7 +575,6 @@
|
|
|
602
575
|
"line-height": 1.5,
|
|
603
576
|
"font-style": "normal",
|
|
604
577
|
"font-weight": 600,
|
|
605
|
-
"color": "black-1000",
|
|
606
578
|
"letter-spacing": 0,
|
|
607
579
|
"media": {
|
|
608
580
|
"print": {
|
|
@@ -618,7 +590,6 @@
|
|
|
618
590
|
"line-height": 1.5,
|
|
619
591
|
"font-style": "normal",
|
|
620
592
|
"font-weight": 400,
|
|
621
|
-
"color": "black-1000",
|
|
622
593
|
"letter-spacing": 0,
|
|
623
594
|
"media": {
|
|
624
595
|
"print": {
|
|
@@ -634,7 +605,6 @@
|
|
|
634
605
|
"line-height": 1.5,
|
|
635
606
|
"font-style": "normal",
|
|
636
607
|
"font-weight": 600,
|
|
637
|
-
"color": "black-1000",
|
|
638
608
|
"letter-spacing": 0,
|
|
639
609
|
"media": {
|
|
640
610
|
"print": {
|
|
@@ -650,7 +620,6 @@
|
|
|
650
620
|
"line-height": 1.5,
|
|
651
621
|
"font-style": "normal",
|
|
652
622
|
"font-weight": 400,
|
|
653
|
-
"color": "black-1000",
|
|
654
623
|
"letter-spacing": 0,
|
|
655
624
|
"media": {
|
|
656
625
|
"print": {
|
|
@@ -666,7 +635,6 @@
|
|
|
666
635
|
"line-height": 1.5,
|
|
667
636
|
"font-style": "normal",
|
|
668
637
|
"font-weight": 600,
|
|
669
|
-
"color": "black-1000",
|
|
670
638
|
"letter-spacing": 0,
|
|
671
639
|
"media": {
|
|
672
640
|
"print": {
|
|
@@ -682,7 +650,6 @@
|
|
|
682
650
|
"line-height": 1.5,
|
|
683
651
|
"font-style": "normal",
|
|
684
652
|
"font-weight": 400,
|
|
685
|
-
"color": "black-1000",
|
|
686
653
|
"letter-spacing": 0,
|
|
687
654
|
"media": {
|
|
688
655
|
"print": {
|
|
@@ -703,7 +670,6 @@
|
|
|
703
670
|
"line-height": 1.5,
|
|
704
671
|
"font-style": "normal",
|
|
705
672
|
"font-weight": 400,
|
|
706
|
-
"color": "black-1000",
|
|
707
673
|
"letter-spacing": 0,
|
|
708
674
|
"media": {
|
|
709
675
|
"print": {
|
|
@@ -719,7 +685,6 @@
|
|
|
719
685
|
"line-height": 1.14,
|
|
720
686
|
"font-style": "normal",
|
|
721
687
|
"font-weight": 600,
|
|
722
|
-
"color": "black-1000",
|
|
723
688
|
"letter-spacing": 0,
|
|
724
689
|
"media": {
|
|
725
690
|
"print": {
|
|
@@ -735,7 +700,6 @@
|
|
|
735
700
|
"line-height": 1.2,
|
|
736
701
|
"font-style": "normal",
|
|
737
702
|
"font-weight": 600,
|
|
738
|
-
"color": "black-1000",
|
|
739
703
|
"letter-spacing": 0,
|
|
740
704
|
"media": {
|
|
741
705
|
"print": {
|
|
@@ -751,7 +715,6 @@
|
|
|
751
715
|
"line-height": 1.5,
|
|
752
716
|
"font-style": "normal",
|
|
753
717
|
"font-weight": 600,
|
|
754
|
-
"color": "black-1000",
|
|
755
718
|
"letter-spacing": 0,
|
|
756
719
|
"media": {
|
|
757
720
|
"print": {
|
|
@@ -772,7 +735,6 @@
|
|
|
772
735
|
"line-height": 1.5,
|
|
773
736
|
"font-style": "normal",
|
|
774
737
|
"font-weight": 400,
|
|
775
|
-
"color": "primary-1000",
|
|
776
738
|
"letter-spacing": 0,
|
|
777
739
|
"media": {
|
|
778
740
|
"print": {
|
|
@@ -788,7 +750,6 @@
|
|
|
788
750
|
"line-height": 1.5,
|
|
789
751
|
"font-style": "normal",
|
|
790
752
|
"font-weight": 400,
|
|
791
|
-
"color": "black-1000",
|
|
792
753
|
"letter-spacing": 0,
|
|
793
754
|
"media": {
|
|
794
755
|
"print": {
|
|
@@ -831,23 +792,23 @@
|
|
|
831
792
|
},
|
|
832
793
|
{
|
|
833
794
|
"name": "primary-400",
|
|
834
|
-
"color": "#
|
|
795
|
+
"color": "#ffcb9a"
|
|
835
796
|
},
|
|
836
797
|
{
|
|
837
798
|
"name": "primary-600",
|
|
838
|
-
"color": "#
|
|
799
|
+
"color": "#ffb065"
|
|
839
800
|
},
|
|
840
801
|
{
|
|
841
802
|
"name": "primary-800",
|
|
842
|
-
"color": "#
|
|
803
|
+
"color": "#ff9734"
|
|
843
804
|
},
|
|
844
805
|
{
|
|
845
806
|
"name": "primary-1000",
|
|
846
|
-
"color": "#
|
|
807
|
+
"color": "#F05000"
|
|
847
808
|
},
|
|
848
809
|
{
|
|
849
810
|
"name": "secondary-200",
|
|
850
|
-
"color": "#
|
|
811
|
+
"color": "#ccd1e6"
|
|
851
812
|
},
|
|
852
813
|
{
|
|
853
814
|
"name": "secondary-400",
|
|
@@ -855,11 +816,11 @@
|
|
|
855
816
|
},
|
|
856
817
|
{
|
|
857
818
|
"name": "secondary-600",
|
|
858
|
-
"color": "#
|
|
819
|
+
"color": "#6675b6"
|
|
859
820
|
},
|
|
860
821
|
{
|
|
861
822
|
"name": "secondary-800",
|
|
862
|
-
"color": "#
|
|
823
|
+
"color": "#32469f"
|
|
863
824
|
},
|
|
864
825
|
{
|
|
865
826
|
"name": "secondary-1000",
|
|
@@ -965,6 +926,14 @@
|
|
|
965
926
|
}
|
|
966
927
|
}
|
|
967
928
|
},
|
|
929
|
+
"150": {
|
|
930
|
+
"size": 12,
|
|
931
|
+
"media": {
|
|
932
|
+
"print": {
|
|
933
|
+
"size": "6pt"
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
},
|
|
968
937
|
"200": {
|
|
969
938
|
"size": 16,
|
|
970
939
|
"media": {
|
|
@@ -973,6 +942,14 @@
|
|
|
973
942
|
}
|
|
974
943
|
}
|
|
975
944
|
},
|
|
945
|
+
"300": {
|
|
946
|
+
"size": 24,
|
|
947
|
+
"media": {
|
|
948
|
+
"print": {
|
|
949
|
+
"size": "12pt"
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
},
|
|
976
953
|
"400": {
|
|
977
954
|
"size": 32,
|
|
978
955
|
"media": {
|
|
@@ -989,6 +966,14 @@
|
|
|
989
966
|
}
|
|
990
967
|
}
|
|
991
968
|
},
|
|
969
|
+
"1200": {
|
|
970
|
+
"size": 96,
|
|
971
|
+
"media": {
|
|
972
|
+
"print": {
|
|
973
|
+
"size": "48pt"
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
},
|
|
992
977
|
"1600": {
|
|
993
978
|
"size": 128,
|
|
994
979
|
"media": {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-title-h1', '*'): 400,
|
|
3
|
+
('.srl-title-h1', '.srl-lead'): 400,
|
|
4
|
+
('.srl-title-h1', '.srl-paragraph'): 200,
|
|
5
|
+
('.srl-title-h1', '.srl-paragraph-strong'): 200,
|
|
6
|
+
('.srl-title-h1', '.srl-table'): 400,
|
|
7
|
+
('.srl-title-h1', '.srl-button-container'): 400,
|
|
8
|
+
('.srl-title-h1', '.srl-columns'): 400,
|
|
9
|
+
('.srl-title-h1', '.srl-pdf-pagebreak'): 800,
|
|
10
|
+
('.srl-title-h1', '.srl-anchor'): 800,
|
|
11
|
+
('.srl-title-h1', '.srl-title-h2'): 800,
|
|
12
|
+
('.srl-title-h1', '.srl-image'): 800,
|
|
13
|
+
('.srl-title-h1', '.srl-video'): 800,
|
|
14
|
+
('.srl-title-h1', '.srl-cv'): 800,
|
|
15
|
+
('.srl-title-h1', '.srl-pdf-toc'): 800,
|
|
16
|
+
('.srl-title-h1', '.srl-background-container'): 1600,
|
|
17
|
+
)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use "@/assets/scss/margins";
|
|
3
|
+
@use "spacing-variations";
|
|
2
4
|
|
|
3
5
|
.srl-title-h1 {
|
|
4
6
|
@include srl.typography-title-h1();
|
|
@@ -15,3 +17,5 @@
|
|
|
15
17
|
color: srl.colors-primary-1000();
|
|
16
18
|
}
|
|
17
19
|
}
|
|
20
|
+
|
|
21
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-title-h2', '*'): 200,
|
|
3
|
+
('.srl-title-h2', '.srl-paragraph'): 200,
|
|
4
|
+
('.srl-title-h2', '.srl-paragraph-strong'): 200,
|
|
5
|
+
('.srl-title-h2', '.srl-title-h3'): 400,
|
|
6
|
+
('.srl-title-h2', '.srl-button-container'): 400,
|
|
7
|
+
('.srl-title-h2', '.srl-columns'): 400,
|
|
8
|
+
('.srl-title-h2', '.srl-pdf-pagebreak'): 800,
|
|
9
|
+
('.srl-title-h2', '.srl-anchor'): 800,
|
|
10
|
+
('.srl-title-h2', '.srl-keyfigure__icon'): 800,
|
|
11
|
+
('.srl-title-h2', '.srl-background-container'): 1600,
|
|
12
|
+
);
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use "@/assets/scss/margins";
|
|
3
|
+
@use "spacing-variations";
|
|
2
4
|
|
|
3
5
|
.srl-title-h2 {
|
|
4
6
|
@include srl.typography-title-h2();
|
|
@@ -16,6 +18,8 @@
|
|
|
16
18
|
}
|
|
17
19
|
}
|
|
18
20
|
|
|
21
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
22
|
+
|
|
19
23
|
.srl-title-h2__number-text-container {
|
|
20
24
|
display: flex;
|
|
21
25
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
<h2 class="srl-grid srl-title-h2 srl-linkable"
|
|
1
|
+
<h2 class="srl-grid srl-title-h2 srl-linkable">
|
|
2
2
|
<span
|
|
3
3
|
class="srl-grid__inner srl-title-h2__number-text-container"
|
|
4
|
+
data-category-marker="container"
|
|
4
5
|
>
|
|
5
6
|
<span
|
|
6
7
|
class="srl-title-h2__number"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-title-h3', '*'): 100,
|
|
3
|
+
('.srl-title-h3', '.srl-paragraph'): 100,
|
|
4
|
+
('.srl-title-h3', '.srl-paragraph-strong'): 100,
|
|
5
|
+
('.srl-title-h3', '.srl-table'): 200,
|
|
6
|
+
('.srl-title-h3', '.srl-title-h4'): 200,
|
|
7
|
+
('.srl-cv__header-content .srl-title-h3', '.srl-title-h4'): 100,
|
|
8
|
+
('.srl-title-h3', '.srl-button-container'): 400,
|
|
9
|
+
('.srl-title-h3', '.srl-columns'): 400,
|
|
10
|
+
('.srl-title-h3', '.srl-pdf-pagebreak'): 800,
|
|
11
|
+
('.srl-title-h3', '.srl-anchor'): 800,
|
|
12
|
+
('.srl-title-h3', '.srl-background-container'): 1600,
|
|
13
|
+
)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use "@/assets/scss/margins";
|
|
3
|
+
@use "spacing-variations";
|
|
2
4
|
|
|
3
5
|
.srl-title-h3 {
|
|
4
6
|
@include srl.typography-title-h3();
|
|
@@ -6,4 +8,6 @@
|
|
|
6
8
|
|
|
7
9
|
.srl-title-h3__number-text-container {
|
|
8
10
|
display: flex;
|
|
9
|
-
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
<h3 class="srl-grid srl-title-h3 srl-linkable"
|
|
1
|
+
<h3 class="srl-grid srl-title-h3 srl-linkable">
|
|
2
2
|
<span
|
|
3
3
|
class="srl-grid__inner srl-title-h3__number-text-container"
|
|
4
|
+
data-category-marker="container"
|
|
4
5
|
>
|
|
5
6
|
<span
|
|
6
7
|
class="srl-title-h3__number"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-title-h4', '*'): 100,
|
|
3
|
+
('.srl-title-h4', '.srl-paragraph'): 100,
|
|
4
|
+
('.srl-title-h4', '.srl-paragraph-strong'): 100,
|
|
5
|
+
('.srl-title-h4', '.srl-title-h5'): 200,
|
|
6
|
+
('.srl-title-h4', '.srl-table'): 200,
|
|
7
|
+
('.srl-title-h4', '.srl-button-container'): 400,
|
|
8
|
+
('.srl-title-h4', '.srl-columns'): 400,
|
|
9
|
+
('.srl-title-h4', '.srl-pdf-pagebreak'): 800,
|
|
10
|
+
('.srl-title-h4', '.srl-anchor'): 800,
|
|
11
|
+
('.srl-title-h4', '.srl-background-container'): 1600,
|
|
12
|
+
)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use "@/assets/scss/margins";
|
|
3
|
+
@use "spacing-variations";
|
|
2
4
|
|
|
3
5
|
.srl-title-h4 {
|
|
4
6
|
@include srl.typography-title-h4();
|
|
@@ -6,4 +8,6 @@
|
|
|
6
8
|
|
|
7
9
|
.srl-title-h4__number-text-container {
|
|
8
10
|
display: flex;
|
|
9
|
-
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
<h4 class="srl-grid srl-title-h4 srl-linkable"
|
|
1
|
+
<h4 class="srl-grid srl-title-h4 srl-linkable">
|
|
2
2
|
<span
|
|
3
3
|
class="srl-grid__inner srl-title-h4__number-text-container"
|
|
4
|
+
data-category-marker="container"
|
|
4
5
|
>
|
|
5
6
|
<span
|
|
6
7
|
class="srl-title-h4__number"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-title-h5', '*'): 0,
|
|
3
|
+
('.srl-title-h5', '.srl-paragraph'): 0,
|
|
4
|
+
('.srl-title-h5', '.srl-paragraph-strong'): 0,
|
|
5
|
+
('.srl-title-h5', '.srl-title-h6'): 100,
|
|
6
|
+
('.srl-title-h5', '.srl-button-container'): 400,
|
|
7
|
+
('.srl-title-h5', '.srl-columns'): 400,
|
|
8
|
+
('.srl-title-h5', '.srl-pdf-pagebreak'): 800,
|
|
9
|
+
('.srl-title-h5', '.srl-anchor'): 800,
|
|
10
|
+
('.srl-title-h5', '.srl-background-container'): 1600,
|
|
11
|
+
)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-title-h6', '*'): 0,
|
|
3
|
+
('.srl-title-h6', '.srl-paragraph'): 0,
|
|
4
|
+
('.srl-title-h6', '.srl-paragraph-strong'): 0,
|
|
5
|
+
('.srl-title-h6', '.srl-button-container'): 400,
|
|
6
|
+
('.srl-title-h6', '.srl-columns'): 400,
|
|
7
|
+
('.srl-title-h6', '.srl-pdf-pagebreak'): 800,
|
|
8
|
+
('.srl-title-h6', '.srl-anchor'): 800,
|
|
9
|
+
('.srl-title-h6', '.srl-background-container'): 1600,
|
|
10
|
+
)
|