33 lines
529 B
CSS
33 lines
529 B
CSS
|
|
/* frontend/src/components/Skeleton.module.css */
|
||
|
|
|
||
|
|
.skeleton {
|
||
|
|
background-color: #e0e0e0;
|
||
|
|
border-radius: 4px;
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.skeleton::after {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background: linear-gradient(
|
||
|
|
90deg,
|
||
|
|
transparent,
|
||
|
|
rgba(255, 255, 255, 0.4),
|
||
|
|
transparent
|
||
|
|
);
|
||
|
|
animation: shimmer 1.5s infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes shimmer {
|
||
|
|
0% {
|
||
|
|
transform: translateX(-100%);
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
transform: translateX(100%);
|
||
|
|
}
|
||
|
|
}
|