blob: 30ec0eea544e16f5929480d05426f81ada5e9e86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
div.tile_row {
display: flex;
}
div.tile {
width: 100px;
height: 100px;
}
div.neutral {
background: antiquewhite;
}
div.black {
background: black;
}
div.green {
background: green;
}
div.red {
background: red;
}
div.blue {
background: blue;
}
.game-mode-0,
.game-mode-1,
.game-mode-2 {
display: none;
}
html[data-game-mode="0"] .game-mode-0,
html[data-game-mode="1"] .game-mode-1,
html[data-game-mode="2"] .game-mode-2 {
display: inherit;
}
|