diff --git a/about.html b/about.html index 49c85db..765f2ee 100644 --- a/about.html +++ b/about.html @@ -19,19 +19,41 @@ .card{border:1px solid #e5e7eb;border-radius:12px;padding:14px 16px;background:#fafafa} .card a{font-weight:700;text-decoration:none} .card p{font-size:.92rem;margin-top:4px} + + + /* shared navigation */ + body { padding-top: 24px; margin-top: 0; } + nav { + display: flex; + justify-content: center; + align-items: center; + gap: 18px; + flex-wrap: wrap; + width: min(calc(100vw - 48px), 960px); + margin: 0 auto 32px; + padding: 8px 0 0; + position: relative; + left: 50%; + transform: translateX(-50%); + } + nav a { color: #6b7280; text-decoration: none; font-size: .9em; font-weight: 500; line-height: 1.4; } + nav a:hover, nav a.active { color: #d97706; } + /* end shared navigation */ +