Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
- Website: Add dedicated contact section with email and GitHub links.
- Docs: Consolidate feature list in README (single "Features" section).
- Website: Mirror unified feature list on the marketing page.
- Brand: Refresh GopherPost logo and favicon with updated gopher-and-envelope concept.
- Brand: Refresh GopherPost logo and favicon with updated gopher-and-envelope concept; refine site header hover styling.

## v0.4.0
- Added subscription-based audit fan-out so `/healthz` can stream live debug logs when `SMTP_DEBUG=true`.
Expand Down
18 changes: 17 additions & 1 deletion docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,28 @@ header {
align-items: center;
gap: 0.75rem;
font-weight: 600;
font-size: 1.1rem;
font-size: 1.4rem;
color: #fff;
transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.logo img {
height: 80px;
width: 80px;
border-radius: 50%;
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.55);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo:hover {
color: #fff;
transform: translateY(-2px) scale(1.02);
text-shadow: 0 12px 20px rgba(15, 30, 67, 0.35);
}

.logo:hover img {
box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.85);
transform: scale(1.03);
}

.hero h1 {
Expand Down