From 015432f5fc5de15cb6d0855998301c55bcee5b5f Mon Sep 17 00:00:00 2001 From: dagadeta Date: Mon, 6 Jan 2025 20:10:05 +0100 Subject: [PATCH] Make font smaller on desktop devices --- style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.css b/style.css index 64966fc..b9efdcc 100644 --- a/style.css +++ b/style.css @@ -513,4 +513,12 @@ a { .asciiArt { font-size: 2.5vmin; text-align: center; +} + +/* For Desktop View */ +@media screen and (min-width: 1024px) { + body, .contentdiv, button, .infotable, .tablediv { + font-size: 3vmin; + font-family: "Courier Bold", "Courier Prime", "Courier New", Courier, monospace, serif; + } } \ No newline at end of file