diff --git a/docs/index.html b/docs/index.html index 7e47798..dec72f4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -63,6 +63,13 @@ .risk-bar { height: 8px; border-radius: 4px; background: #21262d; overflow: hidden; } .risk-bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease-out; } + + /* Skeleton Loading */ + .skeleton { background: linear-gradient(90deg, #21262d 25%, #30363d 50%, #21262d 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: 4px; } + @keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } + .skeleton-text { height: 16px; margin-bottom: 8px; } + .skeleton-title { height: 24px; width: 60%; margin-bottom: 12px; } + .skeleton-box { height: 80px; margin-bottom: 12px; }
@@ -688,6 +695,53 @@