From 176cbfa7b7be0194cdf8bccee546ca7ac0ec8d91 Mon Sep 17 00:00:00 2001 From: lilkidsuave <66171643+lilkidsuave@users.noreply.github.com> Date: Sat, 29 Jun 2024 08:01:37 -0400 Subject: [PATCH] Update style.css --- static/style.css | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/static/style.css b/static/style.css index 8bb18f4..cb96734 100644 --- a/static/style.css +++ b/static/style.css @@ -8,8 +8,7 @@ body { } .container { - width: 90%; - max-width: 600px; + width: 100%; margin: 0 auto; background-color: #36393f; padding: 30px; @@ -85,12 +84,26 @@ input[type="submit"]:hover { } /* Media Queries for Responsiveness */ -@media (max-width: 768px) { +@media (min-width: 576px) { + .container { + width: 90%; + } +} + +@media (min-width: 768px) { .container { - padding: 20px; + width: 80%; } +} - h2 { - font-size: 1.5em; +@media (min-width: 992px) { + .container { + width: 70%; + } +} + +@media (min-width: 1200px) { + .container { + width: 60%; } }