503 lines
7.8 KiB
CSS
503 lines
7.8 KiB
CSS
:root {
|
|
color-scheme: dark;
|
|
--bg: #111314;
|
|
--surface: #191c1d;
|
|
--surface-raised: #202425;
|
|
--text: #f1eee6;
|
|
--muted: #aaa99f;
|
|
--line: #34393a;
|
|
--accent: #d9a75c;
|
|
--accent-strong: #f2c57d;
|
|
--focus: #8fd3ff;
|
|
--max-width: 72rem;
|
|
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
font-synthesis: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background:
|
|
radial-gradient(circle at 10% 0%, rgb(217 167 92 / 10%), transparent 28rem),
|
|
var(--bg);
|
|
color: var(--text);
|
|
font-size: 1rem;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent-strong);
|
|
text-underline-offset: 0.2em;
|
|
text-decoration-thickness: 0.08em;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ffe1ad;
|
|
}
|
|
|
|
:focus-visible {
|
|
outline: 0.2rem solid var(--focus);
|
|
outline-offset: 0.2rem;
|
|
}
|
|
|
|
.shell {
|
|
width: min(calc(100% - 2rem), var(--max-width));
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.skip-link {
|
|
position: fixed;
|
|
z-index: 10;
|
|
top: 0.75rem;
|
|
left: 0.75rem;
|
|
padding: 0.65rem 0.9rem;
|
|
transform: translateY(-160%);
|
|
border-radius: 0.35rem;
|
|
background: var(--text);
|
|
color: var(--bg);
|
|
}
|
|
|
|
.skip-link:focus {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.site-header {
|
|
border-bottom: 1px solid var(--line);
|
|
background: rgb(17 19 20 / 88%);
|
|
}
|
|
|
|
.header-inner {
|
|
min-height: 4.75rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.brand {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.7rem;
|
|
color: var(--text);
|
|
font-weight: 750;
|
|
letter-spacing: -0.02em;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.brand-mark {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 1px solid var(--accent);
|
|
border-radius: 50%;
|
|
color: var(--accent-strong);
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
font-style: italic;
|
|
}
|
|
|
|
.site-nav {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.site-nav a {
|
|
padding: 0.45rem 0.7rem;
|
|
border-radius: 0.35rem;
|
|
color: var(--muted);
|
|
font-size: 0.9rem;
|
|
font-weight: 650;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.site-nav a:hover,
|
|
.site-nav a[aria-current="page"] {
|
|
background: var(--surface-raised);
|
|
color: var(--text);
|
|
}
|
|
|
|
main.shell {
|
|
min-height: 68vh;
|
|
padding-block: clamp(3.5rem, 8vw, 7rem);
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
margin-top: 0;
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
font-weight: 500;
|
|
line-height: 1.08;
|
|
letter-spacing: -0.035em;
|
|
}
|
|
|
|
h1 {
|
|
max-width: 13ch;
|
|
margin-bottom: 1.25rem;
|
|
font-size: clamp(3rem, 9vw, 6.5rem);
|
|
}
|
|
|
|
h2 {
|
|
font-size: clamp(2rem, 5vw, 3.25rem);
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.eyebrow,
|
|
.card-kind,
|
|
.content-meta,
|
|
.footer-meta {
|
|
color: var(--accent);
|
|
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.hero {
|
|
max-width: 62rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
max-width: 11ch;
|
|
}
|
|
|
|
.hero-summary,
|
|
.lede {
|
|
max-width: 48rem;
|
|
color: #d2d0c8;
|
|
font-size: clamp(1.2rem, 2.5vw, 1.55rem);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.hero-copy {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.section-block,
|
|
.listing {
|
|
margin-top: clamp(4rem, 9vw, 7rem);
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.section-heading {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.section-heading h2 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.card-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.card {
|
|
min-height: 18rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: clamp(1.35rem, 3vw, 2rem);
|
|
border: 1px solid var(--line);
|
|
border-radius: 0.75rem;
|
|
background: linear-gradient(145deg, var(--surface-raised), var(--surface));
|
|
}
|
|
|
|
.card h2,
|
|
.card h3 {
|
|
margin-bottom: 0.8rem;
|
|
}
|
|
|
|
.card h2 a,
|
|
.card h3 a,
|
|
.listing-item h2 a {
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.card p:not(.card-kind) {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.card .text-link {
|
|
margin-top: auto;
|
|
padding-top: 1.5rem;
|
|
}
|
|
|
|
.text-link {
|
|
width: fit-content;
|
|
font-weight: 750;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.page-intro,
|
|
.content-header {
|
|
margin-bottom: clamp(3rem, 8vw, 5.5rem);
|
|
}
|
|
|
|
.page-intro h1,
|
|
.content-header h1 {
|
|
font-size: clamp(3rem, 8vw, 5.5rem);
|
|
}
|
|
|
|
.listing {
|
|
display: grid;
|
|
}
|
|
|
|
.listing-item {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
align-items: end;
|
|
gap: 2rem;
|
|
padding-block: 2rem;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.listing-item h2 {
|
|
margin-bottom: 0.6rem;
|
|
font-size: clamp(1.75rem, 4vw, 2.5rem);
|
|
}
|
|
|
|
.listing-item p {
|
|
max-width: 46rem;
|
|
margin-bottom: 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.content-page {
|
|
max-width: 56rem;
|
|
}
|
|
|
|
.prose {
|
|
max-width: 46rem;
|
|
color: #d5d3cb;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.prose > * + * {
|
|
margin-top: 1.35em;
|
|
}
|
|
|
|
.prose h2,
|
|
.prose h3 {
|
|
margin-top: 2em;
|
|
color: var(--text);
|
|
}
|
|
|
|
.prose h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.prose h3 {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.prose code {
|
|
padding: 0.12em 0.32em;
|
|
border: 1px solid var(--line);
|
|
border-radius: 0.25rem;
|
|
background: var(--surface);
|
|
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.prose pre {
|
|
overflow-x: auto;
|
|
padding: 1.25rem;
|
|
border: 1px solid var(--line);
|
|
border-radius: 0.5rem;
|
|
background: #0b0d0e;
|
|
}
|
|
|
|
.prose pre code {
|
|
padding: 0;
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
|
|
.prose blockquote {
|
|
margin-inline: 0;
|
|
padding-left: 1.25rem;
|
|
border-left: 0.2rem solid var(--accent);
|
|
color: var(--muted);
|
|
}
|
|
|
|
.project-facts {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.project-facts div {
|
|
min-width: 9rem;
|
|
padding: 0.8rem 1rem;
|
|
border: 1px solid var(--line);
|
|
border-radius: 0.5rem;
|
|
background: var(--surface);
|
|
}
|
|
|
|
.project-facts dt {
|
|
color: var(--muted);
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.project-facts dd {
|
|
margin: 0.2rem 0 0;
|
|
}
|
|
|
|
.tag-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin: 1.5rem 0 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.tag-list li {
|
|
padding: 0.32rem 0.6rem;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
color: var(--muted);
|
|
font-size: 0.82rem;
|
|
}
|
|
|
|
.content-tags {
|
|
margin-top: 3rem;
|
|
padding-top: 1.5rem;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.button-link {
|
|
display: inline-block;
|
|
margin-top: 1.5rem;
|
|
padding: 0.75rem 1rem;
|
|
border: 1px solid var(--accent);
|
|
border-radius: 0.4rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.error-page {
|
|
max-width: 48rem;
|
|
}
|
|
|
|
.error-page p:not(.eyebrow) {
|
|
color: var(--muted);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.empty-state {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.site-footer {
|
|
padding-block: 2.5rem;
|
|
border-top: 1px solid var(--line);
|
|
color: var(--muted);
|
|
}
|
|
|
|
.footer-inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.footer-inner p {
|
|
margin: 0;
|
|
}
|
|
|
|
.visually-hidden {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
@media (max-width: 44rem) {
|
|
.header-inner,
|
|
.footer-inner {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header-inner {
|
|
padding-block: 1rem;
|
|
}
|
|
|
|
.card-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.listing-item {
|
|
grid-template-columns: 1fr;
|
|
align-items: start;
|
|
gap: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
html {
|
|
scroll-behavior: auto;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
color-scheme: light;
|
|
--bg: #f4f0e7;
|
|
--surface: #ebe5da;
|
|
--surface-raised: #fffaf0;
|
|
--text: #202323;
|
|
--muted: #5f625f;
|
|
--line: #cbc4b7;
|
|
--accent: #87591b;
|
|
--accent-strong: #704713;
|
|
--focus: #075b9b;
|
|
}
|
|
|
|
body {
|
|
background:
|
|
radial-gradient(circle at 10% 0%, rgb(135 89 27 / 11%), transparent 28rem),
|
|
var(--bg);
|
|
}
|
|
|
|
a:hover {
|
|
color: #4e2d04;
|
|
}
|
|
|
|
.site-header {
|
|
background: rgb(244 240 231 / 90%);
|
|
}
|
|
|
|
.hero-summary,
|
|
.lede,
|
|
.prose {
|
|
color: #3d413f;
|
|
}
|
|
|
|
.prose pre {
|
|
background: #242728;
|
|
color: #f7f3eb;
|
|
}
|
|
}
|