-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.404.css
executable file
·56 lines (50 loc) · 1.45 KB
/
style.404.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
@-webkit-keyframes 'delayed_appearance' {
0% { opacity: 0; }
99% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes 'delayed_appearance' {
0% { opacity: 0; }
99% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes 'delayed_appearance' {
0% { opacity: 0; }
99% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes 'delayed_appearance' {
0% { opacity: 0; }
99% { opacity: 0; }
100% { opacity: 1; }
}
.firstdot {
-webkit-animation-name: 'delayed_appearance';
-webkit-animation-duration: 1s;
-moz-animation-name: 'delayed_appearance';
-moz-animation-duration: 1s;
-o-animation-name: 'delayed_appearance';
-o-animation-duration: 1s;
animation-name: 'delayed_appearance';
animation-duration: 1s;
}
.seconddot {
-webkit-animation-name: 'delayed_appearance';
-webkit-animation-duration: 2s;
-moz-animation-name: 'delayed_appearance';
-moz-animation-duration: 2s;
-o-animation-name: 'delayed_appearance';
-o-animation-duration: 2s;
animation-name: 'delayed_appearance';
animation-duration: 2s;
}
.thirddot {
-webkit-animation-name: 'delayed_appearance';
-webkit-animation-duration: 3s;
-moz-animation-name: 'delayed_appearance';
-moz-animation-duration: 3s;
-o-animation-name: 'delayed_appearance';
-o-animation-duration: 3s;
animation-name: 'delayed_appearance';
animation-duration: 3s;
}