]> git.cworth.org Git - lmno.games/blobdiff - tictactoe/tictactoe.css
tictactoe: Increase the size of the board a bit
[lmno.games] / tictactoe / tictactoe.css
index 0e56082c8fa7e495d1c82200f2103ea5d073a557..52a8e87b0d81895374560a61a11ad29087d79fe6 100644 (file)
@@ -1,8 +1,3 @@
-body {
-  font: 14px "Century Gothic", Futura, sans-serif;
-  margin: 20px;
-}
-
 ol, ul {
   padding-left: 30px;
 }
@@ -19,17 +14,23 @@ ol, ul {
 
 .square {
   background: #fff;
+  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 {
@@ -39,12 +40,3 @@ ol, ul {
 .kbd-navigation .square:focus {
   background: #ddd;
 }
-
-.game {
-  display: flex;
-  flex-direction: row;
-}
-
-.game-info {
-  margin-left: 20px;
-}