| 1 |
.wpupg-admin-loader { |
| 2 |
display: inline-block; |
| 3 |
width: 10px; |
| 4 |
height: 10px; |
| 5 |
border: 2px solid rgba(200, 200, 200, 0.3); |
| 6 |
border-radius: 50%; |
| 7 |
border-top-color: #444; |
| 8 |
animation: spin 1s ease-in-out infinite; |
| 9 |
-webkit-animation: spin 1s ease-in-out infinite; |
| 10 |
} |
| 11 |
|
| 12 |
@keyframes spin { |
| 13 |
to { -webkit-transform: rotate(360deg); } |
| 14 |
} |
| 15 |
@-webkit-keyframes spin { |
| 16 |
to { -webkit-transform: rotate(360deg); } |
| 17 |
} |