From: Carl Worth Date: Sun, 17 May 2020 15:52:25 +0000 (-0700) Subject: Move input sizing from empires to top-level X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=94562509de48088d7fb61bd58405e2ccd76a6c19;hp=0d3b2c75ae2fed4783121c1f9a390d1d8526e79c 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). --- 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);