diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_rte-content.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_rte-content.scss index e3e87526..0ff04697 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_rte-content.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_rte-content.scss @@ -11,5 +11,5 @@ p { } a:not(.button) { - @apply text-ep-primary sbw:text-sbw-primary-dark; + @apply text-ep-primary-light sbw:text-sbw-primary-dark; } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_typography.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_typography.scss index 753df416..d37d5519 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_typography.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/base/_typography.scss @@ -1,6 +1,6 @@ h1, .headline--primary { - @apply block text-3xl md:text-4xl text-gray-800 font-normal; + @apply block text-3xl md:text-4xl text-gray-800 font-bold; } h2, @@ -19,12 +19,12 @@ h4, } .headline--underlined:after { - @apply block border-b-4 border-ep-primary sbw:border-sbw-primary pb-4 mb-4 -mt-2 w-20; + @apply block border-b-4 border-ep-primary-light sbw:border-sbw-primary pb-4 mb-4 -mt-2 w-20; content: ''; } .subline { - @apply block text-sm md:text-base uppercase font-light tracking-widest leading-6 md:leading-10 pb-2 md:pb-0; + @apply block text-sm md:text-base font-normal leading-6 md:leading-10 pb-2 md:pb-0; } // Lists @@ -34,7 +34,7 @@ h4, li { @apply relative pl-8; &:before { - @apply absolute left-0 top-0 w-6 h-6 text-ep-primary text-lg; + @apply absolute left-0 top-0 w-6 h-6 text-ep-primary-dark text-lg; font-family: 'fontello'; content: '\e800'; } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss index 7755f384..f05be3f1 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss @@ -2,7 +2,7 @@ @apply inline-flex items-center justify-center space-x-2 px-4 py-2 md:px-8 cursor-pointer; @apply uppercase leading-none text-center; @apply transition-colors outline-none focus:outline-none; - @apply bg-ep-secondary text-white; + @apply bg-ep-primary-light text-white; @apply sbw:bg-sbw-secondary; @apply snz:bg-snz-secondary; @apply uch:bg-uch-secondary; @@ -26,7 +26,7 @@ &--light { @apply bg-white border-2; @apply font-bold; - @apply border-ep-primary text-ep-primary; + @apply border-ep-primary-light text-ep-primary; @apply sbw:bg-white sbw:border-sbw-primary sbw:text-sbw-primary; @apply snz:bg-white snz:border-snz-primary snz:text-snz-primary; @apply uch:bg-white uch:border-uch-primary uch:text-uch-primary; diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_contact-bar.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_contact-bar.scss index f2f7824a..c390f1ac 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_contact-bar.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_contact-bar.scss @@ -8,7 +8,7 @@ } .contact-bar__item { - @apply flex-1 text-white py-2 bg-ep-primary border-r border-white last:border-0; + @apply flex-1 text-white py-2 bg-ep-primary-light border-r border-white last:border-0; @screen md { @apply flex flex-none items-start transition-transform duration-300 ease-in-out p-1 shadow-md focus:text-white border-0; diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_herounit.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_herounit.scss index 8398e429..f8d69be8 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_herounit.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_herounit.scss @@ -21,18 +21,12 @@ } .herounit__badge { - @apply absolute; + @apply absolute bg-badge-gradient text-white py-8 px-2; &--skipass { top: 0; right: 16px; - width: 60px; - height: auto; - @screen md { - width: 100px; - } @screen lg { - width: auto; right: 90px; } } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_misc.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_misc.scss index 6b65a0c9..b408f97f 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_misc.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_misc.scss @@ -1,3 +1,3 @@ .headerbar { - @apply bg-ep-primary sbw:bg-sbw-primary text-white uppercase font-semibold py-2 px-4 mb-4; + @apply bg-ep-primary-light sbw:bg-sbw-primary text-white uppercase font-semibold py-2 px-4 mb-4; } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/remix/_sidebar.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/remix/_sidebar.scss deleted file mode 100644 index e69de29b..00000000 diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html index 9bf5d8a9..c182f287 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html @@ -4,7 +4,7 @@ xmlns:f="http://typo3.org/ns/fluid/ViewHelpers" xmlns:ep="http://typo3.org/ns/EP/EpTheme/ViewHelpers"> -
Ski-
Pass
inklusive