// ───────────────────────────────────────────────────────────────────────────── // Component: Dead Code (.dead-* prefix) // File: src/scss/components/_dead.scss // // Visual rules only — colors, typography, backgrounds, borders, transitions. // Structural layout lives in pages/_dead.scss. // ───────────────────────────────────────────────────────────────────────────── // ── Page header ─────────────────────────────────────────────────────────────── .intel-page-header { border-bottom: 1px solid var(--border-default); background: var(--bg-surface); } .intel-page-title { font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; } .intel-page-desc { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); } // ── Stat cards ──────────────────────────────────────────────────────────────── .dead-stat-card { background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: var(--radius-md); text-align: center; } .dead-stat-value { font-size: 1.6rem; font-weight: 700; font-family: var(--font-mono); color: var(--text-primary); line-height: 1; &.color-danger { color: var(--color-danger); } &.text-muted { color: var(--text-muted); } } .dead-stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); } // ── Confidence group ────────────────────────────────────────────────────────── .dead-group { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-md); overflow: hidden; } .dead-group-header { background: var(--bg-surface); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-primary); } .dead-group-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted); flex-shrink: 0; &.dot-danger { background: var(--color-danger); } &.dot-warning { background: var(--color-warning); } } .dead-group-desc { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; font-family: var(--font-mono); } // ── Row ─────────────────────────────────────────────────────────────────────── .dead-row { border-top: 1px solid var(--border-subtle); transition: background 120ms ease; &:hover { background: var(--bg-hover); } } .dead-rank { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-mono); flex-shrink: 0; min-width: 1.5rem; text-align: right; } .dead-address { font-family: var(--font-mono); font-size: 0.82rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; a { color: var(--color-accent-link); text-decoration: none; &:hover { text-decoration: underline; } } } .dead-meta { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // ── Dismiss form ────────────────────────────────────────────────────────────── .dead-dismiss-form { display: contents; }