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