From e00adcd1288f0a4ef0ec3b84d872b6b794cf61c2 Mon Sep 17 00:00:00 2001 From: MattTheTekie Date: Sat, 28 Mar 2026 17:06:47 -0400 Subject: [PATCH] chore: fixes --- css/global.css | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/css/global.css b/css/global.css index 87e7d25..f83baa0 100644 --- a/css/global.css +++ b/css/global.css @@ -817,10 +817,6 @@ a:hover { } -/* ========================= - * BASE (1920 DESIGN DEFAULT) - * ALWAYS ON (prevents breakage) - = *======================== */ .left_banner, .right_banner { position: fixed; @@ -837,42 +833,48 @@ a:hover { pointer-events: none; } -/* original images */ -.left_banner { - top: 250px; - left: 40px; - background-image: url("https://www.veltron.net/images/dragon.png"); -} +/* ========================= + * 1920×1080 (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"); + .right_banner { + top: 150px; + right: 40px; + background-image: url("https://www.veltron.net/images/digimon.png"); + } } /* ========================= - * TABLETS / LAPTOPS (smaller but visible) + * 1280–1919 (SMALL BUT VISIBLE) = *======================== */ @media (max-width: 1919px) and (min-width: 1280px) { .left_banner, .right_banner { - width: 200px; - height: 327px; + width: 220px; + height: 360px; } .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"); } } /* ========================= - * SMALL SCREENS (hide safely) + * BELOW 1280 (HIDE) = *======================== */ @media (max-width: 1279px) { .left_banner,