blob: 6aa0d8f04be121a70351731b00082f1c25d2bd57 (
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
|
/** Add some styles */
#board {
display: flex;
background: var(--board-color);
padding: 20px;
border-radius: 10%;
justify-content: center;
flex-flow: row;
flex-direction: row;
width: 800px;
height: 400px;
}
#pits {
position: relative;
display: inline-flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 80%;
}
.playArea {
position: relative;
}
.playerStatus {
position: relative;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 100px;
}
|