diff --git a/public/site.css b/public/site.css index 67a5298..1a0b555 100644 --- a/public/site.css +++ b/public/site.css @@ -215,14 +215,26 @@ h1 { display: flex; justify-content: center; align-items: baseline; - gap: 0.75em; - margin-top: 0.75em; + gap: 0.9em; + margin-top: 0.85em; color: var(--site-text-muted); font-size: 0.8125rem; } +.webring-copy { + display: inline-flex; + align-items: baseline; + gap: 0.45em; +} + .webring-label { color: var(--site-text-secondary); + font-weight: 500; +} + +.webring-description { + color: var(--site-text-muted); + font-size: 0.75rem; } .webring-links { @@ -245,7 +257,13 @@ h1 { .webring { flex-direction: column; align-items: center; - gap: 0.2em; + gap: 0.3em; + } + + .webring-copy { + flex-direction: column; + align-items: center; + gap: 0.05em; } } diff --git a/src/components/site.tsx b/src/components/site.tsx index 05eff14..88c81c6 100644 --- a/src/components/site.tsx +++ b/src/components/site.tsx @@ -3,6 +3,7 @@ import { raw } from "hono/html"; import { getProfile } from "../data.ts"; +import { Webring } from "./webring.tsx"; export async function Site() { const profile = await getProfile(); @@ -44,30 +45,7 @@ export async function Site() { -