-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
40 lines (37 loc) · 1017 Bytes
/
style.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
/* Your board style here */
.racer-table td {
height: 100px;
width: 100px;
border: 1px solid rgb(238, 238, 238);
}
.racer-table td.active {
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
}
#player1-race td.finish {
background-image: url("images/finish.png");
background-size: cover;
}
#player2-race td.finish {
background-image: url("images/finish.png");
background-size: cover;
}
#player1-race td.active {
background-image: url("images/player_1.png");
}
#player2-race td.active {
background-image: url("images/player_2.png");
}
#player1-race td.finish.active {
background-repeat: no-repeat;
background-image: url('images/player_1.png'), url('images/finish.png');
background-size: 90%, cover;
background-position: center, top left;
}
#player2-race td.finish.active {
background-repeat: no-repeat;
background-image: url('images/player_2.png'), url('images/finish.png');
background-size: 90%, cover;
background-position: center, top left;
}