From: Damian Myrda Date: Wed, 11 Sep 2024 12:57:53 +0000 (-0500) Subject: Center home page when screen is big enough X-Git-Url: http://git.prime8.dev/?a=commitdiff_plain;h=3675fbdc6ab63519327566c02086d13ff6867991;p=p8d.git Center home page when screen is big enough --- 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 %}