|
169 | 169 | width: 100%;
|
170 | 170 | height: 100%;
|
171 | 171 | -webkit-animation: container-rotate 1568ms linear infinite;
|
| 172 | + animation: container-rotate 1568ms linear infinite; |
172 | 173 | }
|
173 | 174 |
|
174 |
| - @-webkit-keyframes container-rotate { |
| 175 | + @keyframes container-rotate { |
175 | 176 | to {
|
176 | 177 | transform: rotate(360deg);
|
177 | 178 | }
|
|
189 | 190 | .spinner-layer--blue {
|
190 | 191 | border-color: #4285f4;
|
191 | 192 | -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
|
| 193 | + animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both; |
192 | 194 | }
|
193 | 195 |
|
194 | 196 | .spinner-layer--red {
|
195 | 197 | border-color: #db4437;
|
196 | 198 | -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
|
| 199 | + animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both; |
197 | 200 | }
|
198 | 201 |
|
199 | 202 | .spinner-layer--yellow {
|
200 | 203 | border-color: #f4b400;
|
201 | 204 | -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
|
| 205 | + animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both; |
202 | 206 | }
|
203 | 207 |
|
204 | 208 | .spinner-layer--green {
|
205 | 209 | border-color: #0f9d58;
|
206 | 210 | -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
|
| 211 | + animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both; |
207 | 212 | }
|
208 | 213 |
|
209 |
| - @-webkit-keyframes fill-unfill-rotate { |
| 214 | + @keyframes fill-unfill-rotate { |
210 | 215 | 12.5% {
|
211 | 216 | transform: rotate(135deg);
|
212 | 217 | }
|
|
242 | 247 | ;
|
243 | 248 | }
|
244 | 249 |
|
245 |
| - @-webkit-keyframes blue-fade-in-out { |
| 250 | + @keyframes blue-fade-in-out { |
246 | 251 | from {
|
247 | 252 | opacity: 1;
|
248 | 253 | }
|
|
270 | 275 | ;
|
271 | 276 | }
|
272 | 277 |
|
273 |
| - @-webkit-keyframes red-fade-in-out { |
| 278 | + @keyframes red-fade-in-out { |
274 | 279 | from {
|
275 | 280 | opacity: 0;
|
276 | 281 | }
|
|
294 | 299 | ;
|
295 | 300 | }
|
296 | 301 |
|
297 |
| - @-webkit-keyframes yellow-fade-in-out { |
| 302 | + @keyframes yellow-fade-in-out { |
298 | 303 | from {
|
299 | 304 | opacity: 0;
|
300 | 305 | }
|
|
318 | 323 | ;
|
319 | 324 | }
|
320 | 325 |
|
321 |
| - @-webkit-keyframes green-fade-in-out { |
| 326 | + @keyframes green-fade-in-out { |
322 | 327 | from {
|
323 | 328 | opacity: 0;
|
324 | 329 | }
|
|
365 | 370 | border-width: 4px;
|
366 | 371 | border-radius: 50%;
|
367 | 372 | -webkit-animation: none;
|
| 373 | + animation: none; |
368 | 374 | }
|
369 | 375 |
|
370 | 376 | .spinner-clipper--left .spinner-circle {
|
371 | 377 | border-right-color: transparent !important;
|
372 | 378 | transform: rotate(129deg);
|
373 | 379 | -webkit-animation: left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
|
| 380 | + animation: left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both; |
374 | 381 | }
|
375 | 382 |
|
376 | 383 | .spinner-clipper--right .spinner-circle {
|
377 | 384 | left: -100%;
|
378 | 385 | border-left-color: transparent !important;
|
379 | 386 | transform: rotate(-129deg);
|
380 | 387 | -webkit-animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
|
| 388 | + animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both; |
381 | 389 | }
|
382 | 390 |
|
383 |
| - @-webkit-keyframes left-spin { |
| 391 | + @keyframes left-spin { |
384 | 392 | from {
|
385 | 393 | transform: rotate(130deg);
|
386 | 394 | }
|
|
395 | 403 |
|
396 | 404 | }
|
397 | 405 |
|
398 |
| - @-webkit-keyframes right-spin { |
| 406 | + @keyframes right-spin { |
399 | 407 | from {
|
400 | 408 | transform: rotate(-130deg);
|
401 | 409 | }
|
|
0 commit comments