From 08b6875d550f0305e7b88218fd3f66e6cc231eb1 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 11 May 2020 16:11:49 -0700 Subject: [PATCH] Style the revealed character names extra large These are an essential element of the game. They should basically fill the content area of the screen. (I think ideally, the game would size the text so the largest name _does_ fill the screen and then use a consistent font size for all of them, but this will do for now.) --- index.html | 2 +- style.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 4f574b9..7ccc7c3 100644 --- a/index.html +++ b/index.html @@ -63,7 +63,7 @@

Watch and memorize each character!

-

+
diff --git a/style.css b/style.css index 0c4f010..b1955f0 100644 --- a/style.css +++ b/style.css @@ -196,3 +196,9 @@ button:hover { ::-moz-focus-inner { border: 0; } + +#character-reveal { + color: #333738; + font-size: 300%; + font-weight: bold; +} -- 2.43.0