blob: 8cd3f6397f7c6d8975535350fa7cc81c332e2742 (
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
41
42
43
44
45
46
|
.Pit {
display: inline-flex;
justify-content: center;
align-items: center;
width: 16%;
}
.Recession {
display: flex;
justify-content: center;
align-items: center;
background: var(--recess-color);
}
.Pit .Recession {
border-radius: 50%;
height: 50%;
width: 100%;
}
.Kalaha {
display: inline-flex;
justify-content: center;
align-items: center;
width: 10%;
}
.Kalaha .Recession {
border-radius: 30%;
height: 50%;
width: 100%;
}
.Stone {
position: absolute;
background: gray;
border-radius: 50%;
border: 2px solid black;
height: 16px;
width: 16px;
min-height: 5px;
}
|