forked from jaruba/PowderPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.css
More file actions
179 lines (179 loc) · 3.94 KB
/
Copy pathloader.css
File metadata and controls
179 lines (179 loc) · 3.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#loading {
height: 100%;
width: 100%;
position: fixed;
z-index: 1004;
margin-top: 0px;
top: 0px;
}
#loading-center {
width: 100%;
height: 100%;
position: relative;
}
#loading-center-absolute {
position: absolute;
left: 50%;
top: 50%;
height: 150px;
width: 150px;
margin-top: -75px;
margin-left: -75px;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.object {
width: 20px;
height: 20px;
background-color: #88a825;
position: absolute;
left: 65px;
top: 65px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
}
.object:nth-child(2n+0) {
margin-right: 0px;
}
#object_one {
-webkit-animation: object_one 2s infinite;
animation: object_one 2s infinite;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#object_two {
-webkit-animation: object_two 2s infinite;
animation: object_two 2s infinite;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#object_three {
-webkit-animation: object_three 2s infinite;
animation: object_three 2s infinite;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#object_four {
-webkit-animation: object_four 2s infinite;
animation: object_four 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#object_five {
-webkit-animation: object_five 2s infinite;
animation: object_five 2s infinite;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#object_six {
-webkit-animation: object_six 2s infinite;
animation: object_six 2s infinite;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#object_seven {
-webkit-animation: object_seven 2s infinite;
animation: object_seven 2s infinite;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#object_eight {
-webkit-animation: object_eight 2s infinite;
animation: object_eight 2s infinite;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#object_big {
position: absolute;
width: 50px;
height: 50px;
left: 50px;
top: 50px;
-webkit-animation: object_big 2s infinite;
animation: object_big 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@-webkit-keyframes object_big {
50% { -webkit-transform: scale(0.5); }
}
@keyframes object_big {
50% {
transform: scale(0.5);
-webkit-transform: scale(0.5);
}
}
@-webkit-keyframes object_one {
50% { -webkit-transform: translate(-65px,-65px); }
}
@keyframes object_one {
50% {
transform: translate(-65px,-65px);
-webkit-transform: translate(-65px,-65px);
}
}
@-webkit-keyframes object_two {
50% { -webkit-transform: translate(0,-65px); }
}
@keyframes object_two {
50% {
transform: translate(0,-65px);
-webkit-transform: translate(0,-65px);
}
}
@-webkit-keyframes object_three {
50% { -webkit-transform: translate(65px,-65px); }
}
@keyframes object_three {
50% {
transform: translate(65px,-65px);
-webkit-transform: translate(65px,-65px);
}
}
@-webkit-keyframes object_four {
50% { -webkit-transform: translate(65px,0); }
}
@keyframes object_four {
50% {
transform: translate(65px,0);
-webkit-transform: translate(65px,0);
}
}
@-webkit-keyframes object_five {
50% { -webkit-transform: translate(65px,65px); }
}
@keyframes object_five {
50% {
transform: translate(65px,65px);
-webkit-transform: translate(65px,65px);
}
}
@-webkit-keyframes object_six {
50% { -webkit-transform: translate(0,65px); }
}
@keyframes object_six {
50% {
transform: translate(0,65px);
-webkit-transform: translate(0,65px);
}
}
@-webkit-keyframes object_seven {
50% { -webkit-transform: translate(-65px,65px); }
}
@keyframes object_seven {
50% {
transform: translate(-65px,65px);
-webkit-transform: translate(-65px,65px);
}
}
@-webkit-keyframes object_eight {
50% { -webkit-transform: translate(-65px,0); }
}
@keyframes object_eight {
50% {
transform: translate(-65px,0);
-webkit-transform: translate(-65px,0);
}
}