From 9727ff5dc0dab34db6243c3e448db44c1f32daa5 Mon Sep 17 00:00:00 2001 From: Kirik Date: Wed, 12 Nov 2025 20:08:30 +0100 Subject: [PATCH] Zoom out mobile background 3x for better composition - Change background-size from cover to 300% on mobile devices - Makes the image appear 3x further away - Better composition and less cropped view of the scene --- static/css/adaptive-background.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/adaptive-background.css b/static/css/adaptive-background.css index 39ba004..5289af7 100644 --- a/static/css/adaptive-background.css +++ b/static/css/adaptive-background.css @@ -6,7 +6,7 @@ background-image: url('../../images/overlay.png'), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../../images/desktop.webp') !important; - background-size: cover; + background-size: 300%; background-position: center; background-attachment: fixed; }