From 9b7b69f603d3d47a09c22c4a000ea8878d286279 Mon Sep 17 00:00:00 2001 From: collidingScopes <166117863+collidingScopes@users.noreply.github.com> Date: Mon, 15 Jul 2024 06:56:41 -0400 Subject: [PATCH] Adjust input table formatting --- style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index cf551bc..0094dc3 100644 --- a/style.css +++ b/style.css @@ -243,7 +243,7 @@ button { } /* applies when screen is wide enough */ -@media (min-width: 600px) { +@media (min-width: 700px) { button, .tableText { font-size: 14px; } @@ -261,7 +261,7 @@ table { } td { - max-width: 100px; + max-width: 150px; } #inputTable{ @@ -269,7 +269,7 @@ td { text-align: center; min-width: 280px; width:100vw; - max-width: 400px; + max-width: 350px; margin-top: 15px; margin-bottom: 15px; border-top: 1px solid black; @@ -277,10 +277,10 @@ td { } /* applies when screen is wide enough */ -@media (min-width: 600px) { +@media (min-width: 700px) { #inputTable { font-size:1em; - max-width: 600px; + max-width: 500px; } }