Spaces:
Paused
Paused
File size: 1,114 Bytes
05abd64 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | .material-symbols-outlined {
font-variation-settings: 'FILL' 0, 'wght' 450, 'GRAD' 0, 'opsz' 24;
}
@keyframes summary-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes summary-shimmer {
0% {
background-position: -220px 0;
}
100% {
background-position: calc(220px + 100%) 0;
}
}
.summary-panel {
backdrop-filter: blur(2px);
}
.summary-spin {
animation: summary-spin 1.2s linear infinite;
}
.summary-shimmer {
background: linear-gradient(90deg, #e5e7eb 0px, #f8fafc 40px, #e5e7eb 80px);
background-size: 220px 100%;
animation: summary-shimmer 1.3s linear infinite;
}
@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
main section,
main header {
animation: fade-in-up 0.45s ease-out both;
}
main section:nth-of-type(2) {
animation-delay: 80ms;
}
main section:nth-of-type(3) {
animation-delay: 160ms;
}
@media (max-width: 1023px) {
main section,
main header {
animation-duration: 0.35s;
}
}
|