blob: ed680fd628d2824fa233b5aa0a83ba98feac2ea3 (
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
|
@keyframes anim {
from { color: red; }
50% { color: red; }
50.000001% { color: yellow; }
to { color: yellow; }
}
.direction-normal, .direction-reverse, .direction-alternate, .direction-alternate-reverse {
animation: anim 20s infinite;
}
.direction-normal {
animation-direction: normal;
}
.direction-reverse {
animation-direction: reverse;
}
.direction-alternate {
animation-direction: alternate;
}
.direction-alternate-reverse {
animation-direction: alternate-reverse;
}
.delay-5s {
animation-delay: -5s;
}
.delay-15s {
animation-delay: -15s;
}
.delay-25s {
animation-delay: -25s;
}
.delay-35s {
animation-delay: -35s;
}
.delay-45s {
animation-delay: -45s;
}
.delay-55s {
animation-delay: -55s;
}
.delay-65s {
animation-delay: -65s;
}
.delay-75s {
animation-delay: -75s;
}
|