From 94562509de48088d7fb61bd58405e2ccd76a6c19 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 17 May 2020 08:52:25 -0700 Subject: [PATCH] Move input sizing from empires to top-level There's no reason the empires client should be overriding the size of input fields. These should be consistent across all games. And we choose the size of 40 that the empires client had, which is slightly smaller than what we were getting otherwise, (which looked just a tiny bit, comically large). --- empires/style.css | 4 ---- style.css | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/empires/style.css b/empires/style.css index 8b00356..5dcda65 100644 --- a/empires/style.css +++ b/empires/style.css @@ -32,10 +32,6 @@ display: none; } -input { - height: 40px; -} - #character-reveal { color: #333738; font-size: 300%; diff --git a/style.css b/style.css index 02d0be5..cfef9c8 100644 --- a/style.css +++ b/style.css @@ -211,6 +211,7 @@ label { input { box-sizing: border-box; font-size: 125%; + height: 40px; padding: 0.5em; width: 100%; border: 1px solid var(--accent-color); -- 2.43.0