mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
14 lines
368 B
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%; }
|
|
}
|