mirror of
https://github.com/plausible/analytics.git
synced 2024-11-27 09:16:25 +03:00
23 lines
429 B
CSS
23 lines
429 B
CSS
|
.loading {
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
}
|
||
|
|
||
|
.loading div {
|
||
|
display: inline-block;
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
border: 3px solid #dae1e7;
|
||
|
border-radius: 50%;
|
||
|
border-top-color: #606f7b;
|
||
|
animation: spin 1s ease-in-out infinite;
|
||
|
-webkit-animation: spin 1s ease-in-out infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes spin {
|
||
|
to { -webkit-transform: rotate(360deg); }
|
||
|
}
|
||
|
@-webkit-keyframes spin {
|
||
|
to { -webkit-transform: rotate(360deg); }
|
||
|
}
|