2022-10-19 14:26:49 +00:00
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2023-05-04 04:43:52 +00:00
|
|
|
transform: translate(-50%, -50%);
|
2022-10-19 14:26:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
animation-name: spin;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
background-image: url(/icons/arrows-rotate.svg);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
animation-duration: 2s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: linear;
|
2023-07-02 05:08:42 +00:00
|
|
|
|
|
|
|
.small & {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2022-10-19 14:26:49 +00:00
|
|
|
}
|