-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChess.css
More file actions
79 lines (69 loc) · 1.34 KB
/
Copy pathChess.css
File metadata and controls
79 lines (69 loc) · 1.34 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* #board {
padding: 5px;
display: table-cell;
text-align: center;
} */
#board_1 {
margin: 25px;
padding: 10px;
background-color: #e8e7de;
width: 500px;
height: 500px;
display: inline-block;
vertical-align: middle;
}
#board_2 {
margin: 25px;
padding: 10px;
background-color: #e8e7de;
width: 500px;
height: 500px;
display: inline-block;
vertical-align: middle;
}
.square_white {
background-color: white;
width: 62.5px;
height: 62.5px;
text-align: center;
display: table-cell;
vertical-align: middle;
font-size: 50px;
}
.square_black {
background-color: #e59110;
width: 62.5px;
height: 62.5px;
text-align: center;
display: table-cell;
vertical-align: middle;
font-size: 50px;
}
.row {
/* background-color: red; */
width: 500px;
height: 62.5px;
}
.square_selected {
background-color: rgb(77, 77, 172, 0.65);
width: 62.5px;
height: 62.5px;
}
#player_order {
font-size: 30px;
padding: 25px;
margin-left: 200px;
}
.center {
text-align: center;
border: 3px solid green;
margin-top: 5px;
margin-left: 25px;
margin-right: 25px;
}
.mute {
opacity: 0.6;
}
.threaten {
background-color: rgba(250, 46, 46, 0.9);
}