| 1 |
#react-ui h1 { |
| 2 |
text-align: center; |
| 3 |
color: #999; |
| 4 |
margin-top: 150px; |
| 5 |
} |
| 6 |
|
| 7 |
.react-loading { |
| 8 |
position: absolute; |
| 9 |
width: 100%; |
| 10 |
height: 100%; |
| 11 |
} |
| 12 |
|
| 13 |
.react-loading-spinner { |
| 14 |
position: absolute; |
| 15 |
width: 120px; |
| 16 |
height: 120px; |
| 17 |
left: 50%; |
| 18 |
margin-left: -65px; |
| 19 |
|
| 20 |
background-color: #333; |
| 21 |
border-radius: 100%; |
| 22 |
-webkit-animation: sk-scaleout-loading 1.0s infinite ease-in-out; |
| 23 |
animation: sk-scaleout-loading 1.0s infinite ease-in-out; |
| 24 |
} |
| 25 |
|
| 26 |
@-webkit-keyframes sk-scaleout-loading { |
| 27 |
0% { -webkit-transform: scale(0) } |
| 28 |
100% { |
| 29 |
-webkit-transform: scale(1.0); |
| 30 |
opacity: 0; |
| 31 |
} |
| 32 |
} |
| 33 |
|
| 34 |
@keyframes sk-scaleout-loading { |
| 35 |
0% { |
| 36 |
-webkit-transform: scale(0); |
| 37 |
transform: scale(0); |
| 38 |
} 100% { |
| 39 |
-webkit-transform: scale(1.0); |
| 40 |
transform: scale(1.0); |
| 41 |
opacity: 0; |
| 42 |
} |
| 43 |
} |
| 44 |
|