From 276a2065853617cebb4e89899230310a219a5b3f Mon Sep 17 00:00:00 2001 From: esquizo Date: Sat, 14 Mar 2026 19:37:37 -0300 Subject: melhor compatibilidade com mobile --- static/style.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index b7d3305..e4b74bf 100644 --- a/static/style.css +++ b/static/style.css @@ -2,9 +2,10 @@ body { color: white; background-color: black; - min-width: 800px; - width: 70%; - margin: auto; + width: 80%; + max-width: 1000px; + margin: 20px auto; + font-size: 16px; } .bottom-align { @@ -15,6 +16,7 @@ body { .title { display: flex; + flex-direction: column; } .title h1 { @@ -30,3 +32,9 @@ body { width: 100px; display: inline; } + +@media (min-width: 768px) { + .title { + flex-direction: row; /* Volta a ficar lado a lado */ + } +} -- cgit v1.2.3