From 7e18fe15b0b261bdeb3930187f70e8c0928ac5f8 Mon Sep 17 00:00:00 2001 From: filifa Date: Mon, 15 Dec 2025 20:45:47 -0500 Subject: [PATCH] set monospace font for the whole page --- styles.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index bda1c0f..507e7f4 100644 --- a/styles.css +++ b/styles.css @@ -14,12 +14,15 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ +html { + font-family: monospace; +} + #calculator { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.3rem; font-size: xx-large; - font-family: monospace; } input { @@ -117,6 +120,5 @@ footer { display: flex; justify-content: center; font-size: small; - font-family: monospace; margin: 5%; }