ldrs
Version:
Minimalist loading animations for React and web components
41 lines (37 loc) • 815 B
CSS
.container_5e8073 {
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
height: var(--uib-size);
width: var(--uib-size);
}
.inner_e4bf28 {
height: var(--uib-size);
width: var(--uib-size);
transform-origin: center;
overflow: visible;
}
.car_8b024f {
fill: none;
stroke: var(--uib-color);
stroke-dasharray: var(--uib-dash), var(--uib-gap);
stroke-dashoffset: 0;
stroke-linecap: round;
animation: travel_2b6bf5 var(--uib-speed) linear infinite;
will-change: stroke-dasharray, stroke-dashoffset;
transition: stroke 0.5s ease;
}
.track_58231c {
stroke: var(--uib-color);
opacity: var(--uib-bg-opacity);
transition: stroke 0.5s ease;
}
@keyframes travel_2b6bf5 {
0% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: -100;
}
}