blob: f93bb3246b31cc493dccd2c8d6b8c54a218cf4e7 (
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
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
80
81
82
83
84
85
86
87
88
89
|
*{
margin: 0;
padding: 0;
}
.box{
height: 76px;
width: 76px;
position: relative;
user-select: none;
}
.top-corner{
padding: 1px;
position: absolute;
}
.bottom-corner{
padding: 1px;
position: absolute;
bottom: 2px;
right: 2px;
}
.white{
/*background-color: #eaead2;*/
background-color: #EDD6B0;
/*background-color: #B88762;*/
color: #4b7299;
}
.black{
/*background-color: #4b7299; */
background-color: #B88762;
color: #eaead2;
}
body{
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
margin: 1px;
background-color: #2F3646;
}
.chess-board{
width: 608px;
height: 608px;
display: grid;
grid-template-columns:repeat(8,1fr);
grid-template-rows:repeat(8,1fr);
}
.piece {
color: black;
text-align:center;
font-size:50px;
}
.highlight {
background-color: yellow;
}
.w {
color: white;
}
.b {
color: black;
}
.piece-option {
font-size: 8rem;
height: 10rem;
width: 10rem;
text-align: center;
}
#promotion-window {
position: fixed;
height: 10rem;
width: 40rem;
background-color: white;
display: grid;
grid-template-columns: repeat(4,1fr);
visibility: hidden;
}
|