summaryrefslogtreecommitdiff
path: root/codenames/assets/css/codenames.css
blob: db3fb716cbea638076b9b2a47e20d847f49638ff (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
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;
}