From 026c2946e0bd6705134fef96a83371272e210159 Mon Sep 17 00:00:00 2001 From: TheOldGuy Date: Tue, 3 Sep 2024 23:13:45 +0000 Subject: [PATCH] Input Field Size Adjustments. --- index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b94e51e..5511e8f 100644 --- a/index.html +++ b/index.html @@ -22,14 +22,17 @@ background-color: rgba(0, 0, 0, 0.6); padding: 20px; border-radius: 10px; + width:100%; + max-width: 600px; } input[type="text"] { padding: 10px; font-size: 20px; border-radius: 5px; border: none; - width: 100%; - max-width: 400px; + width: 75%; + margin: 0 auto; + display: block; } button[type="submit"] { padding: 8px 16px;