From c6942b581a771a7e82f76f9081ee15516669abcf Mon Sep 17 00:00:00 2001 From: Bratonien Cosplay Date: Mon, 10 Nov 2025 17:39:11 +0100 Subject: [PATCH] optical enhancement --- adventskalender/2025/css/day.css | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/adventskalender/2025/css/day.css b/adventskalender/2025/css/day.css index 9b0c46e..c484aae 100644 --- a/adventskalender/2025/css/day.css +++ b/adventskalender/2025/css/day.css @@ -95,17 +95,24 @@ audio { } } -/* Tablets & kleine Laptops (768 px – 1366 px) */ -@media (min-width: 768px) and (max-width: 1366px) { +/* Tablets (768–1024 px) */ +@media (min-width: 768px) and (max-width: 1024px) { .popup-day { - max-width: 90vw; + max-width: 92vw; } } -/* Große Monitore (ab 1600 px) */ -@media (min-width: 1600px) { +/* Kleine Laptops / Standard-Desktops (1025–1599 px) */ +@media (min-width: 1025px) and (max-width: 1599px) { .popup-day { - max-width: 70vw; + max-width: 80vw; + } +} + +/* Große Monitore (1600–2559 px) */ +@media (min-width: 1600px) and (max-width: 2559px) { + .popup-day { + max-width: 72vw; } }