From 3675fbdc6ab63519327566c02086d13ff6867991 Mon Sep 17 00:00:00 2001 From: Damian Myrda Date: Wed, 11 Sep 2024 07:57:53 -0500 Subject: [PATCH] Center home page when screen is big enough --- web/templates/index.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web/templates/index.html b/web/templates/index.html index c03960d..6b911ca 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -98,5 +98,16 @@ max-width: 800px !important; margin: auto !important; } + + @media (min-width: 1200px) { + #content { + margin: 0 !important; + position: absolute !important; + top: 50% !important; + left: 50% !important; + transform: translate(-50%, -50%) !important; + width: 800px; + } + } {% endblock %} -- 2.43.4