chore: fixes

This commit is contained in:
MattTheTekie 2026-03-28 17:04:52 -04:00
commit 495cc30b6f

View file

@ -817,3 +817,62 @@ a:hover {
}
/* =========================
* DEFAULT (mobile + small screens)
* HIDE completely
= *======================== */
.left_banner,
.right_banner {
display: none;
}
/* =========================
* TABLETS / LAPTOPS (between 1280 and 1919)
* small version
= *======================== */
@media (min-width: 1280px) and (max-width: 1919px) {
.left_banner,
.right_banner {
display: block;
width: 160px;
height: 262px;
opacity: 0.8;
}
.left_banner {
top: 180px;
left: 10px;
}
.right_banner {
top: 120px;
right: 10px;
}
}
/* =========================
* DESKTOP 1920×1080 (FULL SIZE)
= *======================== */
@media (min-width: 1920px) {
.left_banner,
.right_banner {
display: block;
width: 383px;
height: 626px;
opacity: 1;
}
.left_banner {
top: 250px;
left: 40px;
}
.right_banner {
top: 150px;
right: 40px;
}
}