diff --git a/hugo-site/content/donate/_index.md b/hugo-site/content/donate/_index.md index 1f77b5f5..1ff9369c 100644 --- a/hugo-site/content/donate/_index.md +++ b/hugo-site/content/donate/_index.md @@ -11,6 +11,21 @@ Freenet is a long-term effort to build decentralized infrastructure for a free a Development is funded primarily by donations and grants from individuals who believe this work matters.
+ +One-time or recurring, no account required.
+Issues a Ghost Key, an anonymous cryptographic identity that works across Freenet apps and can't be linked back to your payment. $1 minimum.
+One-time or recurring, no account required.
+Issues a Ghost Key, an anonymous cryptographic identity that works across Freenet apps and can't be linked back to your payment. $1 minimum.
(bottom donate sections) and a raw-HTML div with no
wrapper + (hero CTA), which without this rule pick up different ambient + line-heights from their parents and render at different heights. + Pinning it here keeps every instance of the button pixel-identical. */ + line-height: 1.5; background: var(--color-primary); color: #ffffff !important; text-decoration: none !important; @@ -1291,7 +1318,14 @@ picture.app-screenshot img { text-align: center; } -.gk-cta-note { +/* Doubled selector deliberately raises specificity to (0,2,0). .gk-cta-note + is a
, so a plain single-class selector here (0,1,0) loses outright to + `.funding-section p` (0,1,1) whenever a note is nested inside a + .funding-section container (donate page's bottom CTAs, hero CTA row) — the + note silently rendered a different color than on /ghostkey/. Do not drop + this back to plain `.gk-cta-note`; that reintroduces the bug regardless of + source order in the file (see PR #117 review). */ +.gk-cta-note.gk-cta-note { margin: 0.75rem auto 0 auto; max-width: 34rem; font-size: 0.9rem; @@ -1306,27 +1340,19 @@ picture.app-screenshot img { } @media (prefers-color-scheme: dark) { - .gk-cta-note { + .gk-cta-note.gk-cta-note { color: #94a3b8; } } -/* Ghost keys — understated */ +/* Ghost Keys donate option — same visual weight as PayPal (funding-donate-button + + gk-cta-note), just separated from it with a divider so the two read as + distinct, equally-weighted choices rather than one continuous block. */ .funding-ghost-keys { padding-top: 1.5rem; border-top: 1px solid rgba(0, 0, 0, 0.08); } -.funding-ghost-keys h2 { - font-size: 1.15rem; - color: #64748b; -} - -.funding-ghost-keys p { - color: #64748b; - font-size: 0.95rem; -} - /* Dark mode — funding page */ @media (prefers-color-scheme: dark) { .funding-title { @@ -1376,14 +1402,6 @@ picture.app-screenshot img { .funding-ghost-keys { border-top-color: rgba(255, 255, 255, 0.08); } - - .funding-ghost-keys h2 { - color: #8896a8; - } - - .funding-ghost-keys p { - color: #8896a8; - } } /* Responsive — funding page */