UI 디자인 대대적으로 대시보드 형태의 전문적인 느낌으로 재구성
This commit is contained in:
@@ -8,49 +8,58 @@
|
||||
}
|
||||
|
||||
.loading-spinner__circle {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: 3px solid rgba(255, 255, 255, 0.1);
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: 2px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 50%;
|
||||
border-top-color: var(--accent, #f7a8a5);
|
||||
animation: spin 0.8s linear infinite;
|
||||
animation: loading-spin 0.75s linear infinite;
|
||||
}
|
||||
|
||||
.loading-spinner__text {
|
||||
font-size: 13px;
|
||||
color: var(--muted, #b6b1a9);
|
||||
font-size: 12px;
|
||||
color: var(--muted, #9b9490);
|
||||
margin: 0;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
@keyframes loading-spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/* ── Skeleton ─────────────────────────────────────────────────────── */
|
||||
|
||||
.loading-skeleton {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
padding: 16px;
|
||||
gap: 14px;
|
||||
padding: 4px 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.loading-skeleton__line {
|
||||
height: 16px;
|
||||
border-radius: 4px;
|
||||
height: 14px;
|
||||
border-radius: 7px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
rgba(255, 255, 255, 0.05) 25%,
|
||||
rgba(255, 255, 255, 0.1) 50%,
|
||||
rgba(255, 255, 255, 0.05) 75%
|
||||
90deg,
|
||||
rgba(255, 255, 255, 0.04) 0%,
|
||||
rgba(255, 255, 255, 0.09) 40%,
|
||||
rgba(255, 255, 255, 0.04) 80%
|
||||
);
|
||||
background-size: 200% 100%;
|
||||
animation: pulse 1.5s ease-in-out infinite;
|
||||
background-size: 300% 100%;
|
||||
animation: loading-shimmer 1.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
.loading-skeleton__line:nth-child(1) { width: 65%; }
|
||||
.loading-skeleton__line:nth-child(2) { width: 85%; animation-delay: 0.1s; }
|
||||
.loading-skeleton__line:nth-child(3) { width: 50%; animation-delay: 0.2s; }
|
||||
.loading-skeleton__line:nth-child(4) { width: 75%; animation-delay: 0.15s; }
|
||||
.loading-skeleton__line:nth-child(5) { width: 60%; animation-delay: 0.25s; }
|
||||
|
||||
@keyframes loading-shimmer {
|
||||
0% {
|
||||
background-position: 200% 0;
|
||||
background-position: 100% 0;
|
||||
}
|
||||
100% {
|
||||
background-position: -200% 0;
|
||||
|
||||
Reference in New Issue
Block a user