From 785d9a691a633a9a73f8b4db135651b06ba85947 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 26 May 2020 22:24:52 -0700 Subject: [PATCH] tictactoe: Increase the size of the board a bit This is a fixed size, not yet dynamic (and also not yet centered) but it's something at least. --- tictactoe/tictactoe.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/tictactoe/tictactoe.css b/tictactoe/tictactoe.css index d505c7d..52a8e87 100644 --- a/tictactoe/tictactoe.css +++ b/tictactoe/tictactoe.css @@ -17,15 +17,20 @@ ol, ul { color: black; border: 1px solid #999; float: left; - font-size: 24px; + font-size: 64px; font-weight: bold; - line-height: 34px; - height: 34px; + line-height: 90px; + width: 90px; + height: 90px; margin-right: -1px; margin-top: -1px; padding: 0; text-align: center; - width: 34px; + border-radius: 4px; +} + +.square:hover { + background-color: var(--accent-color-bright); } .square:focus { -- 2.43.0