From 897e6a83d619e296bf7af2eb8c1b9ac425332e05 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 23 Jul 2026 20:32:58 +0000 Subject: [PATCH] Normalize status bar to the shared thesolidchain.com header Match the canonical corporate bar: amber 8x14 cursor in the statusbar (pink stays for the terminal content cursor) and 10px traffic dots. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01PjJxDmntk8Wfw2cwTtEbtF --- site/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/index.html b/site/index.html index dc1fa25..d1374b9 100644 --- a/site/index.html +++ b/site/index.html @@ -42,7 +42,7 @@ .statusbar b { color: var(--ink); font-weight: 600; } .statusbar .led { color: var(--ok); } .statusbar .led::before { content: "\25cf "; } - .statusbar .cursor { margin-left: auto; } + .statusbar .cursor { margin-left: auto; width: 8px; height: 14px; vertical-align: baseline; background: var(--amber); } .subbar { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; padding: 6px 18px; background: var(--bg); @@ -57,7 +57,7 @@ box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); } .dots { display: inline-flex; gap: 6px; } - .dot { width: 11px; height: 11px; border-radius: 50%; } + .dot { width: 10px; height: 10px; border-radius: 50%; } .dot.r { background: #e5534b; } .dot.y { background: #d4a72c; } .dot.g { background: #3fb950; } .term { padding: 26px 28px 40px; } .line { white-space: pre-wrap; word-break: break-word; }