collective-webcomponents
Version:
Stencil Component Starter
44 lines (40 loc) • 779 B
CSS
.shopsense-widget .placeholder-box {
background: linear-gradient(233deg, #ffffff, #d7d7d7);
background-size: 400% 400%;
-webkit-animation: AnimationName 2s ease infinite;
-moz-animation: AnimationName 2s ease infinite;
animation: AnimationName 2s ease infinite;
}
@-webkit-keyframes AnimationName {
0% {
background-position: 0% 53%
}
50% {
background-position: 100% 48%
}
100% {
background-position: 0% 53%
}
}
@-moz-keyframes AnimationName {
0% {
background-position: 0% 53%
}
50% {
background-position: 100% 48%
}
100% {
background-position: 0% 53%
}
}
@keyframes AnimationName {
0% {
background-position: 0% 53%
}
50% {
background-position: 100% 48%
}
100% {
background-position: 0% 53%
}
}