You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
19 lines
364 B
.spinner { |
|
width: 1em; |
|
height: 1em; |
|
border: 0.12em solid var(--color,white); |
|
border-bottom-color: transparent; |
|
border-radius: 50%; |
|
display: inline-block; |
|
box-sizing: border-box; |
|
animation: spinner-rotation 800ms linear infinite; |
|
} |
|
|
|
@keyframes spinner-rotation { |
|
0% { |
|
transform: rotate(0deg); |
|
} |
|
100% { |
|
transform: rotate(360deg); |
|
} |
|
}
|
|
|