From 385dabac69a789c37dbfc444ac58785112dc6cde Mon Sep 17 00:00:00 2001 From: MattTheTekie Date: Sat, 28 Mar 2026 17:07:25 -0400 Subject: [PATCH] chore: fixes --- css/global.css | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/css/global.css b/css/global.css index f83baa0..2e66826 100644 --- a/css/global.css +++ b/css/global.css @@ -817,6 +817,9 @@ a:hover { } +/* ========================= + * BASE (always stable foundation) + = *======================== */ .left_banner, .right_banner { position: fixed; @@ -833,25 +836,32 @@ a:hover { pointer-events: none; } +/* always define images ONCE (no duplication bugs) */ +.left_banner { + background-image: url("https://www.veltron.net/images/dragon.png"); +} + +.right_banner { + background-image: url("https://www.veltron.net/images/digimon.png"); +} + /* ========================= - * 1920×1080 (NORMAL SIZE) + * 1920+ DESKTOP (NORMAL SIZE) = *======================== */ @media (min-width: 1920px) { .left_banner { top: 250px; left: 40px; - background-image: url("https://www.veltron.net/images/dragon.png"); } .right_banner { top: 150px; right: 40px; - background-image: url("https://www.veltron.net/images/digimon.png"); } } /* ========================= - * 1280–1919 (SMALL BUT VISIBLE) + * 1280–1919 (SMALL VERSION, STILL VISIBLE) = *======================== */ @media (max-width: 1919px) and (min-width: 1280px) { .left_banner, @@ -863,13 +873,11 @@ a:hover { .left_banner { top: 180px; left: 10px; - background-image: url("https://www.veltron.net/images/dragon.png"); } .right_banner { top: 120px; right: 10px; - background-image: url("https://www.veltron.net/images/digimon.png"); } } @@ -879,6 +887,6 @@ a:hover { @media (max-width: 1279px) { .left_banner, .right_banner { - display: none; + display: none !important; } }