Spaces:
Running
Running
File size: 300 Bytes
cc1ccff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | .loading-bar {
width: 100px;
height: 6px;
background: linear-gradient(90deg, #333 0%, #ccc 50%, #333 100%);
background-size: 200% 100%;
animation: slide 1.2s linear infinite;
}
@keyframes slide {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
|