mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
24 lines
359 B
CSS
24 lines
359 B
CSS
.load {
|
|
border: 4px solid #f3f3f3;
|
|
border-top: 4px solid var(--text-color);
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
animation: spin 2s linear infinite;
|
|
|
|
margin: 10px;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.loadContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|