23 lines
467 B
CSS
23 lines
467 B
CSS
|
@keyframes shimmer {
|
||
|
0% {
|
||
|
background-position: -468px 0;
|
||
|
}
|
||
|
100% {
|
||
|
background-position: 468px 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.shimmer {
|
||
|
animation-duration: .5s;
|
||
|
animation-fill-mode: forwards;
|
||
|
animation-iteration-count: infinite;
|
||
|
animation-name: shimmer;
|
||
|
animation-timing-function: linear;
|
||
|
background: #f6f7f8;
|
||
|
background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
|
||
|
background-size: 800px 104px;
|
||
|
height: 96px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|