Files
filestash/public/assets/css/designsystem_skeleton.css

14 lines
368 B
CSS

.component_skeleton {
width: 100%;
height: 30px;
background: linear-gradient(110deg, rgba(0,0,0,0.02) 8%, rgba(0,0,0,0.04) 18%, rgba(0,0,0,0.02) 33%);
border-radius: 5px;
background-size: 200% 100%;
animation: 3s skeleton_shine linear infinite;
margin-bottom: 15px;
}
@keyframes skeleton_shine {
to { background-position-x: -200%; }
}