-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchess.css
More file actions
77 lines (59 loc) · 1.43 KB
/
Copy pathchess.css
File metadata and controls
77 lines (59 loc) · 1.43 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
#chess td{
width: 60px;
}
#chess tr{
height: 60px;
}
.moveable {
background-color: #dddddd;
}
img {
width: 60px;
height: 60px;
}
div {
width: 60px;
height: 60px;
}
.black_soldier {
background:transparent url(images/chess.png) no-repeat scroll -360px 0;
}
.black_cannon {
background:transparent url(images/chess.png) no-repeat scroll -300px 0;
}
.black_car {
background:transparent url(images/chess.png) no-repeat scroll -240px 0;
}
.black_horse {
background:transparent url(images/chess.png) no-repeat scroll -180px 0;
}
.black_prime {
background:transparent url(images/chess.png) no-repeat scroll -120px 0;
}
.black_bodyguard {
background:transparent url(images/chess.png) no-repeat scroll -60px 0;
}
.black_general {
background:transparent url(images/chess.png) no-repeat scroll 0 0;
}
.red_soldier {
background:transparent url(images/chess.png) no-repeat scroll -360px -60px;
}
.red_cannon {
background:transparent url(images/chess.png) no-repeat scroll -300px -60px;
}
.red_car {
background:transparent url(images/chess.png) no-repeat scroll -240px -60px;
}
.red_horse {
background:transparent url(images/chess.png) no-repeat scroll -180px -60px;
}
.red_prime {
background:transparent url(images/chess.png) no-repeat scroll -120px -60px;
}
.red_bodyguard {
background:transparent url(images/chess.png) no-repeat scroll -60px -60px;
}
.red_general {
background:transparent url(images/chess.png) no-repeat scroll 0 -60px;
}