UNPKG

682 BCSSView Raw
1.react-spinner {
2 position: relative;
3 width: 32px;
4 height: 32px;
5 top: 50%;
6 left: 50%;
7}
8
9.react-spinner_bar {
10 -webkit-animation: react-spinner_spin 1.2s linear infinite;
11 -moz-animation: react-spinner_spin 1.2s linear infinite;
12 animation: react-spinner_spin 1.2s linear infinite;
13 border-radius: 5px;
14 background-color: white;
15 position: absolute;
16 width: 20%;
17 height: 7.8%;
18 top: -3.9%;
19 left: -10%;
20}
21
22@keyframes "react-spinner_spin" {
23 0% { opacity: 1; }
24 100% { opacity: 0.15; }
25}
26
27@-moz-keyframes react-spinner_spin {
28 0% { opacity: 1; }
29 100% { opacity: 0.15; }
30}
31
32@-webkit-keyframes "react-spinner_spin" {
33 0% { opacity: 1; }
34 100% { opacity: 0.15; }
35}