From 25b879bd290528adfb47b0042749305a6a408800 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Sun, 5 Apr 2026 09:52:36 +0200 Subject: fix: resolve matrix rain opacity, menu styling, and featured articles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issues fixed: 1. Added missing header.css and footer.css imports to main.css (fixes unstyled menu) 2. Increased matrix rain canvas opacity (0.13→0.25, 0.18→0.35) for better visibility 3. Updated home.html to display featured articles first, then latest 3 4. Removed invalid pseudo-element CSS rule on canvas element The form on /is/here should now be visible, menu properly styled, and matrix rain more prominent. Co-Authored-By: Claude Haiku 4.5 --- assets/css/components/hero.css | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'assets/css/components/hero.css') diff --git a/assets/css/components/hero.css b/assets/css/components/hero.css index a1f93fc..9672ffd 100644 --- a/assets/css/components/hero.css +++ b/assets/css/components/hero.css @@ -16,12 +16,12 @@ #matrix-canvas { position: absolute; inset: 0; - opacity: 0.13; + opacity: 0.25; pointer-events: none; } html.theme-light #matrix-canvas { - opacity: 0.18; + opacity: 0.35; } .hero-content { @@ -77,20 +77,6 @@ html.theme-light #matrix-canvas { max-width: 400px; } -/* Scanlines effect on canvas */ -#matrix-canvas::after { - content: ''; - position: absolute; - inset: 0; - background: repeating-linear-gradient( - 0deg, - rgba(0, 0, 0, 0.15), - rgba(0, 0, 0, 0.15) 1px, - transparent 1px, - transparent 2px - ); - pointer-events: none; -} /* Ambient glow behind hero */ .hero::before { -- cgit v1.2.3