From c7448e0b351b6cac17f135a28cc93b01ac901abb Mon Sep 17 00:00:00 2001 From: Tim Friedrich Weber Date: Mon, 15 Dec 2025 10:18:02 +0100 Subject: [PATCH] =?UTF-8?q?Kacheln=20f=C3=BCr=20Webinare?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/webinare/index.md | 16 ++++++++ overrides/assets/css/modules/webinar.scss | 46 +++++++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/docs/webinare/index.md b/docs/webinare/index.md index 1638a1c..ed01514 100644 --- a/docs/webinare/index.md +++ b/docs/webinare/index.md @@ -13,7 +13,23 @@ führende Unternehmen diese Technologie zur Effizienzsteigerung im Arbeitsalltag **Melden Sie sich jetzt zu einem Webinar an und sichern Sie sich den Innovationsvorsprung in Ihrer Branche.** +
+ + + + +

Zu den nächsten kostenfreien KI-Webinaren

+ + + +

Zur Anmeldung für unsere kostenfreien KI-Webinare

+ + + +

Zu den aufgezeichneten KI-Webinaren

+ +
diff --git a/overrides/assets/css/modules/webinar.scss b/overrides/assets/css/modules/webinar.scss index 151e4ad..34c01df 100644 --- a/overrides/assets/css/modules/webinar.scss +++ b/overrides/assets/css/modules/webinar.scss @@ -73,3 +73,49 @@ color: #666; font-style: italic; } + +// Icon tiles for webinar overview page +.satag--webinar-tiles { + display: grid; + grid-template-columns: 1fr 2fr; // Linke Spalte schmaler (1/3), rechte Spalte breiter (2/3) + gap: 2rem; + margin: 3rem 0; + + // Responsive: Auf mobilen Geräten einspaltig + @media (max-width: 768px) { + grid-template-columns: 1fr; + } +} + +.satag--webinar-tile { + background-color: #521370; // Primary button color + border-radius: 0; + padding: 4rem; + text-align: center; + transition: all 0.3s ease; + text-decoration: none; + display: block; + font-size: 4rem; + color: #fff; + + &:hover { + background-color: #7e3a9e; // Lighter variant + transform: translateY(-5px); + box-shadow: 0 8px 20px rgba(82, 19, 112, 0.4); + } + + .satag--webinar-tile-icon { + font-size: 3.5rem; + color: #fff; + margin-bottom: 1.5rem; + display: block; + } + + .satag--webinar-tile-title { + color: #fff; + font-size: 1.6rem; + font-weight: 400; + line-height: 1.5; + margin: 0; + } +}