From 6f21ee78657193568da11baf3b39f50c27823749 Mon Sep 17 00:00:00 2001 From: MattTheTekie Date: Sat, 28 Mar 2026 17:09:36 -0400 Subject: [PATCH] chore: fixes --- css/global.css | 71 ++++++++++++++++++++++++-------------------------- 1 file changed, 34 insertions(+), 37 deletions(-) diff --git a/css/global.css b/css/global.css index 781b64d..75dfa65 100644 --- a/css/global.css +++ b/css/global.css @@ -818,48 +818,45 @@ a:hover { -.left_banner { - position:fixed; - top: 250px; - left: 40px; - width: 383px; - height: 626px; - background-image: url("https://www.veltron.net/images/dragon.png"); - background-size: contain; - background-position: center; - background-repeat: no-repeat; - animation: float 6s ease-in-out infinite; - z-index: 94; - -} - - - +/* default: hide everything */ +.left_banner, .right_banner { - position:fixed; - top: 150px; - right: 40px; - width: 383px; - height: 626px; - background-image: url("https://www.veltron.net/images/digimon.png"); - background-size: contain; - background-position: center; - background-repeat: no-repeat; - animation: float 6s ease-in-out infinite; - z-index: 94; - + display: none; } - - - -/* ========================= - * BELOW 1920 (HIDE) - = *======================== */ -@media (max-width: 1920px) { +/* ONLY show on 1920px and above */ +@media (min-width: 1920px) { .left_banner, .right_banner { - display: none !important; + display: block; + } + + .left_banner { + position: fixed; + top: 250px; + left: 40px; + width: 383px; + height: 626px; + background-image: url("https://www.veltron.net/images/dragon.png"); + background-size: contain; + background-position: center; + background-repeat: no-repeat; + animation: float 6s ease-in-out infinite; + z-index: 94; + } + + .right_banner { + position: fixed; + top: 150px; + right: 40px; + width: 383px; + height: 626px; + background-image: url("https://www.veltron.net/images/digimon.png"); + background-size: contain; + background-position: center; + background-repeat: no-repeat; + animation: float 6s ease-in-out infinite; + z-index: 94; } }