A single-element spinner loader
Create a spinner loader using one element and less than 10 CSS declarations
.loader {
width: 120px; /* the size */
padding: 15px; /* the border thickness */
background: #07e8d6; /* the color */
aspect-ratio: 1;
border-radius: 50%;
mask:
conic-gradient(#0000,#000) subtract,
conic-gradient(#000 0 0) content-box;
animation: load 1s linear infinite;
}
@keyframes load {
to{rotate: 1turn}
}
See the Pen Spinner loader by Temani Afif (@t_afif) on CodePen.
More loaders: css-loaders.com