From a85519d572ff54256ba971f94454459b691a42e9 Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 15 May 2026 20:28:53 -0500 Subject: [PATCH] Smooth header safe-area blend --- src/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index d6e4c96..91f1f95 100644 --- a/src/style.css +++ b/src/style.css @@ -82,7 +82,16 @@ body.menu-open { .intro-header { z-index: 2000; animation: rise-in 900ms cubic-bezier(0.19, 1, 0.22, 1) 700ms both; - background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0)); + background: + linear-gradient( + to bottom, + #0a0a0a 0%, + rgba(10, 10, 10, 0.98) 18%, + rgba(10, 10, 10, 0.78) 42%, + rgba(10, 10, 10, 0.36) 70%, + rgba(10, 10, 10, 0) 100% + ); + padding-bottom: clamp(2.75rem, 8vw, 7rem); pointer-events: none; }