-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (49 loc) · 779 Bytes
/
styles.css
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
47
48
49
50
51
52
53
54
55
56
57
58
#chess-board{
width: 320px;
height: 320px;
display: flex;
flex-wrap: wrap;
margin: auto;
margin-top: 10vh;
}
.square{
width: 40px;
height: 40px;
background-color: white;
position: relative;
}
.square svg{
width: 30px;
height: 30px;
margin: 5px;
position: relative;
z-index: -9;
}
.pieces{
position: relative;
z-index: 9;
}
.path{
position: relative;
z-index: -10;
}
.teal{
background-color:teal;
}
.mint-green{
background-color: #99edc3;
}
#player{
text-align: center;
margin-top: 50px;
font-size: 50px;
}
div#info{
height: 90px;
display: flex;
justify-content: space-evenly;
}
div#points-white,div#points-black{
display: inline-block;
font-size: 40px;
}