2022-10-09 10:56:39 +00:00
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2022-10-17 22:13:18 +00:00
|
|
|
transform: translate(-50%, 0);
|
2022-10-09 10:56:39 +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;
|
|
|
|
}
|