Files
homepage/styles.css
T
senior 1fa64edd4f Address QA review: tag contrast, lede width, link rel, story spacing
- Bump tech-tag text color to --tag-fg (#8a929e dark / #57606a light) and
  raise opacity to 0.95 so chips stay legible on the dark card background
- Give .section-lede display:block + max-width:60ch so the italic intro
  reads as a lede paragraph rather than a stretched heading
- Add margin-block-start (0.5rem) to .card-story so the project name
  doesn't crowd the story
- Add rel="noopener noreferrer" to all external GitHub links
  (card-link, section-link, footer) for external-link hardening
- Section ordering already matches the issue spec; Ethereum infra has
  only stakingtracker — confirmed no stale/duplicated entry
2026-07-08 08:11:25 +00:00

197 lines
3.8 KiB
CSS

:root {
--fg: #e6edf3;
--muted: #9198a1;
--bg: #0d1117;
--bg-elev: #161b22;
--accent: #58a6ff;
--border: #30363d;
--tag-bg: #1f2630;
--tag-fg: #8a929e;
--radius: 12px;
--maxw: 64rem;
}
@media (prefers-color-scheme: light) {
:root {
--fg: #1f2328;
--muted: #57606a;
--bg: #ffffff;
--bg-elev: #f6f8fa;
--accent: #0969da;
--border: #d0d7de;
--tag-bg: #eaeef2;
--tag-fg: #57606a;
}
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--fg);
background: var(--bg);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
.container {
width: 100%;
max-width: var(--maxw);
margin: 0 auto;
padding: 0 1.25rem;
}
/* Header */
.site-header {
padding: 3rem 0 2rem;
border-bottom: 1px solid var(--border);
}
.site-title {
font-size: clamp(1.75rem, 4vw, 2.5rem);
margin: 0 0 0.25rem;
letter-spacing: -0.02em;
font-weight: 700;
}
.site-tagline {
margin: 0;
color: var(--muted);
font-size: 1rem;
max-width: 48rem;
}
/* Sections */
.section {
padding: 2.75rem 0 1rem;
scroll-margin-top: 1rem;
}
.section-head { margin-bottom: 1.75rem; }
.section-title {
font-size: clamp(1.2rem, 2.5vw, 1.6rem);
margin: 0 0 0.6rem;
letter-spacing: -0.01em;
font-weight: 700;
}
.section-lede {
display: block;
max-width: 60ch;
margin: 0 0 0.6rem;
color: var(--muted);
font-size: 1.05rem;
font-style: italic;
line-height: 1.65;
}
.section-link {
color: var(--accent);
text-decoration: none;
font-size: 0.9rem;
font-weight: 600;
}
.section-link:hover { text-decoration: underline; }
/* Cards grid */
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
gap: 1.25rem;
}
.card {
display: flex;
flex-direction: column;
background: var(--bg-elev);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.5rem 1.4rem 1.4rem;
transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--accent); }
.card:focus-within { border-color: var(--accent); }
.card-name {
margin: 0 0 0.75rem;
font-size: 1.1rem;
font-weight: 700;
letter-spacing: -0.01em;
}
.card-story {
margin: 0.5rem 0 1.1rem;
color: var(--fg);
font-size: 1.02rem;
line-height: 1.65;
flex: 1 1 auto;
}
/* Tags — small, muted detail */
.tags {
list-style: none;
margin: 0 0 0.85rem;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.tags li {
font-size: 0.7rem;
line-height: 1.4;
color: var(--tag-fg);
background: var(--tag-bg);
border: 1px solid var(--border);
border-radius: 999px;
padding: 0.1rem 0.5rem;
white-space: nowrap;
opacity: 0.95;
}
/* Card link — subtle, sits below the story */
.card-link {
align-self: flex-start;
color: var(--muted);
text-decoration: none;
font-size: 0.82rem;
font-weight: 500;
}
.card-link:hover { color: var(--accent); text-decoration: underline; }
/* Footer */
.site-footer {
margin-top: 3rem;
padding: 1.75rem 0 2.25rem;
border-top: 1px solid var(--border);
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 0.5rem;
}
.footer-links a {
color: var(--accent);
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
}
.footer-links a:hover { text-decoration: underline; }
.footer-meta {
margin: 0;
font-size: 0.85rem;
color: var(--muted);
}
.footer-meta a { color: var(--muted); text-decoration: underline; }
/* Focus visibility */
a:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
border-radius: 4px;
}
/* Responsive tightening on small screens */
@media (max-width: 30rem) {
.cards {
grid-template-columns: 1fr;
}
.site-header { padding: 2rem 0 1.25rem; }
.section { padding: 2rem 0 0.5rem; }
}