-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
104 lines (55 loc) · 917 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
59
60
61
62
63
64
65
#FenInDiv {
position: relative;
left: 60px;
}
#fenIn {
width: 480px;
left: 60px;
}
#Board {
position: relative;
top: 20px;
left: 60px;
width: 480px;
height: 480px;
border-style: solid;
border-width: 2px;
}
#EngineOutput {
position: absolute;
left: 600px;
top: 250px;
}
.Square {
position: absolute;
width: 60px;
height: 60px;
}
.Dark {
background-color:#5fbcd3;
}
.Light {
background-color:#afdde9;
}
.SqSelected {
background-color:#216778;
}
.rank1 { top: 420px; }
.rank2 { top: 360px; }
.rank3 { top: 300px; }
.rank4 { top: 240px; }
.rank5 { top: 180px; }
.rank6 { top: 120px; }
.rank7 { top: 60px; }
.rank8 { top: 0px; }
.file1 { left: 0px; }
.file2 { left: 60px; }
.file3 { left: 120px; }
.file4 { left: 180px; }
.file5 { left: 240px; }
.file6 { left: 300px; }
.file7 { left: 360px; }
.file8 { left: 420px; }
.Piece {
position: absolute;
}