Files
shoppy/web/static/css/spinner.css
T
2025-01-17 12:36:37 +01:00

20 lines
378 B
CSS

.spinner {
width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: spinner_rotation 1s linear infinite;
}
@keyframes spinner_rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}