From 7fbb736bc8d5830c1fc297c7d84b6ab196582b99 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Sun, 11 Apr 2021 16:57:02 +0100 Subject: [PATCH] styling and board --- src/index.html | 20 +++++++++++++++++++- src/style.css | 14 ++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index ff1032e..a201e56 100644 --- a/src/index.html +++ b/src/index.html @@ -7,9 +7,27 @@ + + Tic Tac Toe - + + + + + + + + + + + + + + + + +
X
O
\ No newline at end of file diff --git a/src/style.css b/src/style.css index e69de29..8f8cee3 100644 --- a/src/style.css +++ b/src/style.css @@ -0,0 +1,14 @@ +#board tr +{ + height: 50px; +} + +#board tr th +{ + width: 50px; +} + +* +{ + text-align: center; +} \ No newline at end of file