-
Notifications
You must be signed in to change notification settings - Fork 0
add: Tech Donor section — circular icons with hover tooltips on donat… #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,207 @@ | ||||||||||||||||||||
| /* donors.css — styles for tech-donor icons, tooltips, and "With help from" strip */ | ||||||||||||||||||||
|
|
||||||||||||||||||||
| /* ── Shared icon wrapper ─────────────────────────────────────────────────── */ | ||||||||||||||||||||
| .donor-icon-wrap { | ||||||||||||||||||||
| display: inline-flex; | ||||||||||||||||||||
| align-items: center; | ||||||||||||||||||||
| justify-content: center; | ||||||||||||||||||||
| flex-shrink: 0; | ||||||||||||||||||||
| cursor: default; | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
|
Comment on lines
+9
to
+11
|
||||||||||||||||||||
| cursor: default; | |
| } | |
| cursor: pointer; | |
| } | |
| .donor-icon-wrap:focus-visible .donor-icon { | |
| outline: 2px solid var(--border-color); | |
| outline-offset: 3px; | |
| } |
Copilot
AI
Apr 2, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.donor-icon uses a hardcoded background: #fff and hardcoded RGBA shadows. Since the site’s theming is driven by CSS variables in base.css (e.g., --card-bg, --shadow), this will look inconsistent in dark theme and is harder to tune globally. Consider switching the icon background/shadow to theme variables (or introducing a dedicated --donor-icon-bg variable if the intent is to keep icons white in both themes).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The footer markup here duplicates the shared footer content in
includes/footer.htmlbut diverges (extra donation/tax text). This will be harder to keep consistent if the global footer changes. Consider reusing the shared include (or the same fetching mechanism used on index.html) and appending any donate-specific copy as an additional element so only the delta is maintained in this file.