]> git.cworth.org Git - lmno.games/blob - tictactoe/tictactoe.css
10ad37052f266b90fcdd9a0c5509f5737a657404
[lmno.games] / tictactoe / tictactoe.css
1 ol, ul {
2   padding-left: 30px;
3 }
4
5 .board-row:after {
6   clear: both;
7   content: "";
8   display: table;
9 }
10
11 .status {
12   margin-bottom: 10px;
13 }
14
15 .square {
16   background: #fff;
17   color: black;
18   border: 1px solid #999;
19   float: left;
20   font-size: 24px;
21   font-weight: bold;
22   line-height: 34px;
23   height: 34px;
24   margin-right: -1px;
25   margin-top: -1px;
26   padding: 0;
27   text-align: center;
28   width: 34px;
29 }
30
31 .square:focus {
32   outline: none;
33 }
34
35 .kbd-navigation .square:focus {
36   background: #ddd;
37 }
38
39 .game {
40   display: flex;
41   flex-direction: row;
42 }
43
44 .game-info {
45   margin-left: 20px;
46   margin-bottom: 20px;
47 }