|
| 1 | +@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); |
| 2 | +@import "tailwindcss"; |
| 3 | + |
| 4 | +:root { |
| 5 | + --bg-primary: #050A0F; |
| 6 | + --bg-secondary: #080F18; |
| 7 | + --bg-card: #0B1420; |
| 8 | + --bg-card-hover: #0F1C2E; |
| 9 | + --border: #1A2A3A; |
| 10 | + --border-bright: #1E3A5F; |
| 11 | + --text-primary: #E2EAF4; |
| 12 | + --text-secondary: #7A9BBE; |
| 13 | + --text-muted: #3D5A7A; |
| 14 | + --accent-blue: #0EA5E9; |
| 15 | + --accent-cyan: #06B6D4; |
| 16 | + --accent-green: #10B981; |
| 17 | + --accent-amber: #F59E0B; |
| 18 | + --accent-red: #EF4444; |
| 19 | + --accent-purple: #8B5CF6; |
| 20 | + --accent-orange: #F97316; |
| 21 | + --glow-blue: rgba(14, 165, 233, 0.15); |
| 22 | + --glow-green: rgba(16, 185, 129, 0.12); |
| 23 | + --glow-red: rgba(239, 68, 68, 0.12); |
| 24 | +} |
| 25 | + |
| 26 | +* { box-sizing: border-box; } |
| 27 | +html { scroll-behavior: smooth; } |
| 28 | + |
| 29 | +body { |
| 30 | + background-color: var(--bg-primary); |
| 31 | + color: var(--text-primary); |
| 32 | + font-family: 'Space Grotesk', sans-serif; |
| 33 | + font-size: 14px; |
| 34 | + line-height: 1.5; |
| 35 | + -webkit-font-smoothing: antialiased; |
| 36 | +} |
| 37 | + |
| 38 | +h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; letter-spacing: -0.02em; } |
| 39 | +code, pre, .mono { font-family: 'DM Mono', monospace; } |
| 40 | + |
| 41 | +::-webkit-scrollbar { width: 4px; height: 4px; } |
| 42 | +::-webkit-scrollbar-track { background: var(--bg-secondary); } |
| 43 | +::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 2px; } |
| 44 | + |
| 45 | +.card { |
| 46 | + background: var(--bg-card); |
| 47 | + border: 1px solid var(--border); |
| 48 | + border-radius: 8px; |
| 49 | + transition: border-color 0.2s ease, background 0.2s ease; |
| 50 | +} |
| 51 | +.card:hover { border-color: var(--border-bright); background: var(--bg-card-hover); } |
| 52 | + |
| 53 | +.stat-value { |
| 54 | + font-family: 'DM Mono', monospace; |
| 55 | + font-size: 1.5rem; |
| 56 | + font-weight: 500; |
| 57 | + letter-spacing: -0.03em; |
| 58 | +} |
| 59 | + |
| 60 | +@keyframes fadeIn { |
| 61 | + from { opacity: 0; transform: translateY(8px); } |
| 62 | + to { opacity: 1; transform: translateY(0); } |
| 63 | +} |
| 64 | +.animate-in { animation: fadeIn 0.4s ease forwards; } |
| 65 | + |
| 66 | +@keyframes pulse-dot { |
| 67 | + 0%, 100% { opacity: 1; } |
| 68 | + 50% { opacity: 0.3; } |
| 69 | +} |
| 70 | +.pulse-dot { animation: pulse-dot 2s ease-in-out infinite; } |
| 71 | + |
| 72 | +.recharts-cartesian-grid-horizontal line, |
| 73 | +.recharts-cartesian-grid-vertical line { stroke: #1A2A3A !important; } |
| 74 | +.recharts-tooltip-wrapper { outline: none !important; } |
| 75 | + |
| 76 | +.nav-item { |
| 77 | + font-family: 'DM Mono', monospace; |
| 78 | + font-size: 0.72rem; |
| 79 | + letter-spacing: 0.06em; |
| 80 | + text-transform: uppercase; |
| 81 | + transition: all 0.2s ease; |
| 82 | +} |
0 commit comments