From b7235e121a198fa718dae1e311d5e35151245f99 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 25 May 2020 20:02:12 -0700 Subject: [PATCH] tictactoe: Integrate the standard LMNO styling Include the LMNO CSS files and add a header. The LMNO button styling looks better here than I expected. Just required a couple of padding tweaks to get things looking correct. --- tictactoe/index.html | 22 ++++++++++++++++++++-- tictactoe/tictactoe.css | 7 ++----- 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/tictactoe/index.html b/tictactoe/index.html index 6a6d289..b9136b7 100644 --- a/tictactoe/index.html +++ b/tictactoe/index.html @@ -6,12 +6,30 @@ Tic-tac-toe + + + + - -
+ +
+ +

Tic Tac Toe

+ +

+ Just the classic game. +

+ +
+
+ +
+ +
+ diff --git a/tictactoe/tictactoe.css b/tictactoe/tictactoe.css index 0e56082..10ad370 100644 --- a/tictactoe/tictactoe.css +++ b/tictactoe/tictactoe.css @@ -1,8 +1,3 @@ -body { - font: 14px "Century Gothic", Futura, sans-serif; - margin: 20px; -} - ol, ul { padding-left: 30px; } @@ -19,6 +14,7 @@ ol, ul { .square { background: #fff; + color: black; border: 1px solid #999; float: left; font-size: 24px; @@ -47,4 +43,5 @@ ol, ul { .game-info { margin-left: 20px; + margin-bottom: 20px; } -- 2.43.0