mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-16 15:56:42 +00:00
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com> Co-authored-by: James Hawkins <jhawki2005@gmail.com>
20 lines
383 B
CSS
20 lines
383 B
CSS
.spinner {
|
|
font-size: 48px;
|
|
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);
|
|
}
|
|
}
|