mirror of
https://github.com/koel/koel
synced 2024-12-13 06:02:27 +00:00
15 lines
237 B
Text
15 lines
237 B
Text
.skeleton {
|
|
.pulse, &.pulse {
|
|
animation: skeleton-pulse 2s infinite;
|
|
background-color: rgba(255, 255, 255, .05);
|
|
}
|
|
|
|
@keyframes skeleton-pulse {
|
|
0%, 100% {
|
|
opacity: 0;
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|