From 6caf5d6f012840af34148b5f82ac7b94899987b6 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Sat, 20 Dec 2025 11:46:43 +0000 Subject: [PATCH] Add X and GitHub links to FAQ header. --- index.html | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 69 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index f7e9b91..99ae1e3 100644 --- a/index.html +++ b/index.html @@ -133,6 +133,65 @@ text-transform: uppercase; color: rgba(255,255,255,0.9); } + .modal header .faq-header-links { + display: flex; + align-items: center; + gap: 8px; + flex-wrap: wrap; + } + .modal header .faq-header-links a { + display: inline-flex; + align-items: center; + gap: 8px; + padding: 6px 10px; + border-radius: 999px; + border: 1px solid rgba(255,255,255,0.12); + background: rgba(0,0,0,0.18); + color: rgba(255,255,255,0.82); + text-decoration: none; + font-size: 12px; + line-height: 1; + box-shadow: none; + transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease; + } + .modal header .faq-header-links a:hover { + border-color: rgba(255,255,255,0.22); + box-shadow: 0 10px 30px rgba(0,0,0,0.45); + background: rgba(0,0,0,0.28); + } + .modal header .faq-header-links a:focus-visible { + outline: none; + box-shadow: 0 0 0 3px rgba(0,255,136,0.25), 0 12px 34px rgba(0,0,0,0.55); + border-color: rgba(0,255,136,0.45); + } + .modal header .faq-header-links .dot { + width: 6px; + height: 6px; + border-radius: 999px; + background: rgba(0,255,136,0.85); + box-shadow: 0 0 14px rgba(0,255,136,0.22); + flex: 0 0 auto; + } + .modal header .faq-header-links .label { + display: inline-flex; + align-items: baseline; + gap: 6px; + white-space: nowrap; + } + .modal header .faq-header-links .handle { + color: rgba(0,255,136,0.9); + font-weight: 600; + } + @media (max-width: 480px) { + .modal header { + gap: 10px; + padding: 12px 12px; + } + .modal header .faq-header-links a { + padding: 6px 9px; + font-size: 12px; + } + } .modal header .spacer { margin-left: auto; } .modal header button { padding: 8px 10px; @@ -886,6 +945,16 @@