forked from prakhar05/GameOfAmazons
-
Notifications
You must be signed in to change notification settings - Fork 2
/
game.css
46 lines (36 loc) · 735 Bytes
/
game.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
.table {
border-collapse: collapse;
border : 4px solid #2B0E00;
}
.o {
background-color: #b58863;
}
.e {
background-color: #f0d9b5;
}
.pawnWselect:hover{
cursor:pointer;
filter: opacity(30%);
-webkit-filter: opacity(30%);
}
.pawnBselect:hover{
cursor:pointer;
filter: opacity(30%);
-webkit-filter: opacity(30%);
}
.arrow{
-webkit-animation: mymove 300ms; /* Chrome, Safari, Opera */
animation: mymove 300ms;
}
@keyframes mymove{
from {max-width: 10%; padding-left: 20%;}
to {max-width: 60%; padding-left: 20%;}
}
@-webkit-keyframes mymove {
from {max-width: 10%; padding-left: 20%;}
to {max-width: 60%; padding-left: 20%;}
}
.pawnTurn{
filter: opacity(30%);
-webkit-filter: opacity(30%);
}