2019-02-14 19:02:00 +00:00
|
|
|
.Loading-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2019-03-06 19:47:33 +00:00
|
|
|
justify-content: center;
|
2019-02-14 19:02:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.Loading-logo {
|
|
|
|
animation: Loading-logo-spin infinite 20s linear;
|
|
|
|
height: 40vmin;
|
|
|
|
pointer-events: none;
|
2019-03-06 19:47:33 +00:00
|
|
|
margin-bottom: 5%;
|
|
|
|
margin-top: 10%;
|
2019-02-14 19:02:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes Loading-logo-spin {
|
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|