From b2ca2c733a42efe1e3ef5489b8b364d2914c14a4 Mon Sep 17 00:00:00 2001 From: Ronny Date: Sun, 12 Apr 2026 12:39:23 +0200 Subject: [PATCH] style: stronger glow, bigger LED, fix vertical alignment, tighter spacing --- frontend/src/pages/DashboardPage.module.css | 26 +++++++++++---------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/frontend/src/pages/DashboardPage.module.css b/frontend/src/pages/DashboardPage.module.css index 20a7a35..4a71473 100644 --- a/frontend/src/pages/DashboardPage.module.css +++ b/frontend/src/pages/DashboardPage.module.css @@ -32,15 +32,15 @@ transform: scale(1.01); } -/* Radial glow behind the teams — stronger, like Stitch */ +/* Radial glow behind the teams — strong stadium light */ .heroGlow { position: absolute; - top: 45%; + top: 50%; left: 50%; - width: 320px; - height: 280px; + width: 400px; + height: 350px; transform: translate(-50%, -50%); - background: radial-gradient(circle at center, rgba(75, 183, 248, 0.15) 0%, transparent 70%); + background: radial-gradient(circle at center, rgba(75, 183, 248, 0.2) 0%, rgba(75, 183, 248, 0.08) 35%, transparent 65%); pointer-events: none; z-index: 0; } @@ -101,13 +101,15 @@ .heroLED { font-family: 'DSEG7', 'Courier New', monospace; - font-size: 24px; + font-size: 28px; color: #FECC4C; - letter-spacing: 0.04em; + letter-spacing: -0.02em; + word-spacing: -0.3em; text-shadow: 0 0 4px rgba(254, 174, 50, 0.9), - 0 0 12px rgba(254, 174, 50, 0.5), - 0 0 24px rgba(254, 174, 50, 0.25); + 0 0 12px rgba(254, 174, 50, 0.6), + 0 0 28px rgba(254, 174, 50, 0.35), + 0 0 48px rgba(254, 174, 50, 0.15); } .heroGroup { @@ -121,9 +123,9 @@ .heroTeams { display: flex; justify-content: center; - align-items: flex-start; - gap: 24px; - margin: 12px 0 20px; + align-items: center; + gap: 12px; + margin: 16px 0 20px; position: relative; z-index: 1; }