lumbda/www/style.css
russell@unturf.com 718f878f7d www: HTML whitepaper + prose rewrite avoiding "to be" and "the"
CLAUDE.md rewritten to avoid the verb "to be" and to prefer "a"/"our"
over "the" when a thing counts as one of many or as shared. Same rule
applied to www/index.html (tagline now "feedback as a primitive", body
prose cleaned of is/are/be, table header now "What a tier buys",
section heads trimmed of definite articles). Monospace body stays,
ChunkFive titles stay.

Whitepaper now ships in two formats:

  * Makefile target `make whitepaper-html` runs rst2html5 with
    embedded minimal.css + responsive.css (docutils bundled), then
    injects the same uncloseai.js module script that the homepage
    carries, and stamps a meaningful <title>. 180 KB self-contained.
  * PDF build target renamed to `make whitepaper-pdf`;
    `make whitepaper` now builds both.

www/lumbda-whitepaper.html symlinks to the generated HTML (same
pattern as the PDF symlink). .gitlab-ci.yml resolves both symlinks to
real files before rsync so the proxy gets byte-identical copies.

Homepage now exposes both formats side-by-side via two .cta buttons
and the footer lists HTML + PDF.
2026-04-19 16:23:56 -04:00

169 lines
2.9 KiB
CSS

/* lumbda.com — minimal, monospace, readable */
@font-face {
font-family: 'chunkfive';
src: url('fonts/chunkfive/chunkfive-regular-webfont.woff2') format('woff2'),
url('fonts/chunkfive/chunkfive-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
:root {
--fg: #1a1a1a;
--bg: #fafaf7;
--muted: #666;
--accent: #0b5394;
--rule: #d4d4d0;
--code-bg: #f0ede4;
}
@media (prefers-color-scheme: dark) {
:root {
--fg: #e8e6e0;
--bg: #161613;
--muted: #9a9892;
--accent: #6fa8dc;
--rule: #3a3a36;
--code-bg: #22221f;
}
}
* { box-sizing: border-box; }
html {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "DejaVu Sans Mono", monospace;
font-size: 15px;
line-height: 1.55;
color: var(--fg);
background: var(--bg);
}
body {
max-width: 720px;
margin: 0 auto;
padding: 2.5rem 1.25rem 4rem;
}
header {
border-bottom: 1px solid var(--rule);
padding-bottom: 1.5rem;
margin-bottom: 2rem;
}
header h1 {
font-family: 'chunkfive', Georgia, serif;
font-size: 3.2rem;
margin: 0;
letter-spacing: -0.01em;
line-height: 1;
}
.tagline {
color: var(--muted);
margin: 0.25rem 0 0;
font-size: 1rem;
}
main h2 {
font-family: 'chunkfive', Georgia, serif;
font-size: 1.5rem;
font-weight: normal;
margin-top: 2.5rem;
margin-bottom: 0.75rem;
border-bottom: 1px solid var(--rule);
padding-bottom: 0.25rem;
letter-spacing: 0.01em;
}
.lead {
font-size: 1.05rem;
line-height: 1.65;
}
p { margin: 0.75em 0; }
a {
color: var(--accent);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 2px;
}
a:hover { text-decoration-thickness: 2px; }
code {
background: var(--code-bg);
padding: 1px 4px;
border-radius: 2px;
font-size: 0.92em;
}
pre {
background: var(--code-bg);
padding: 0.75rem 1rem;
overflow-x: auto;
border-left: 3px solid var(--accent);
font-size: 0.9rem;
line-height: 1.45;
}
pre code {
background: transparent;
padding: 0;
border-radius: 0;
font-size: inherit;
}
table {
border-collapse: collapse;
width: 100%;
margin: 1rem 0;
font-size: 0.9rem;
}
th, td {
text-align: left;
padding: 0.45rem 0.6rem;
border-bottom: 1px solid var(--rule);
vertical-align: top;
}
th {
font-weight: 600;
color: var(--muted);
border-bottom: 2px solid var(--rule);
}
tbody tr:last-child td { border-bottom: none; }
ul {
padding-left: 1.25rem;
}
li { margin: 0.25rem 0; }
.cta {
display: inline-block;
margin: 0.5rem 0.5rem 0 0;
padding: 0.5rem 0.9rem;
border: 1px solid var(--accent);
text-decoration: none;
font-weight: 600;
}
.cta:hover {
background: var(--accent);
color: var(--bg);
}
footer {
margin-top: 4rem;
padding-top: 1.5rem;
border-top: 1px solid var(--rule);
color: var(--muted);
font-size: 0.9rem;
text-align: center;
}
footer a { color: var(--muted); }