Init commit!
This commit is contained in:
@@ -0,0 +1,164 @@
|
||||
/* ── Custom Properties ───────────────────────────────── */
|
||||
:root {
|
||||
--bg: #ffffff;
|
||||
--fg: #1a1a1a;
|
||||
--muted: #666666;
|
||||
--accent: #2563eb;
|
||||
--border: #e5e5e5;
|
||||
--code-bg: #f5f5f5;
|
||||
--max-width: 740px;
|
||||
--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
--font-mono: ui-monospace, "Cascadia Code", "Fira Code", monospace;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--bg: #111111;
|
||||
--fg: #e8e8e8;
|
||||
--muted: #888888;
|
||||
--accent: #60a5fa;
|
||||
--border: #2a2a2a;
|
||||
--code-bg: #1c1c1c;
|
||||
}
|
||||
}
|
||||
|
||||
/* ── Reset ───────────────────────────────────────────── */
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
|
||||
img, video, svg { max-width: 100%; display: block; }
|
||||
|
||||
/* ── Base ────────────────────────────────────────────── */
|
||||
body {
|
||||
background: var(--bg);
|
||||
color: var(--fg);
|
||||
font-family: var(--font-sans);
|
||||
line-height: 1.7;
|
||||
padding: 0 1.25rem;
|
||||
}
|
||||
|
||||
/* ── Layout — center preamble and content ────────────── */
|
||||
#preamble,
|
||||
#content,
|
||||
#postamble {
|
||||
max-width: var(--max-width);
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* ── Navigation ──────────────────────────────────────── */
|
||||
#preamble nav {
|
||||
display: flex;
|
||||
gap: 1.5rem;
|
||||
padding: 1.25rem 0;
|
||||
border-bottom: 1px solid var(--border);
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
#preamble nav a {
|
||||
color: var(--fg);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
font-size: 0.95rem;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
#preamble nav a:hover { color: var(--accent); }
|
||||
|
||||
/* ── Content ─────────────────────────────────────────── */
|
||||
#content {
|
||||
padding-bottom: 4rem;
|
||||
}
|
||||
|
||||
/* ── Typography ──────────────────────────────────────── */
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
line-height: 1.3;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 0.6rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h1 { font-size: 2rem; margin-top: 0; }
|
||||
h2 { font-size: 1.4rem; }
|
||||
h3 { font-size: 1.15rem; }
|
||||
h4 { font-size: 1rem; }
|
||||
|
||||
p { margin-bottom: 1rem; }
|
||||
|
||||
a {
|
||||
color: var(--accent);
|
||||
text-decoration: underline;
|
||||
text-decoration-color: transparent;
|
||||
transition: text-decoration-color 0.15s;
|
||||
}
|
||||
a:hover { text-decoration-color: currentColor; }
|
||||
|
||||
ul, ol {
|
||||
padding-left: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
li { margin-bottom: 0.3rem; }
|
||||
|
||||
blockquote {
|
||||
border-left: 3px solid var(--border);
|
||||
padding-left: 1rem;
|
||||
color: var(--muted);
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: 1px solid var(--border);
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
/* ── Code ────────────────────────────────────────────── */
|
||||
code {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.875em;
|
||||
background: var(--code-bg);
|
||||
padding: 0.15em 0.4em;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.875rem;
|
||||
background: var(--code-bg);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
padding: 1rem 1.25rem;
|
||||
overflow-x: auto;
|
||||
margin-bottom: 1.25rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
pre code {
|
||||
background: none;
|
||||
padding: 0;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
/* org-mode wraps src blocks in .src */
|
||||
.src { background: var(--code-bg); }
|
||||
|
||||
/* ── Tables ──────────────────────────────────────────── */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 1.25rem;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
th, td {
|
||||
padding: 0.5rem 0.75rem;
|
||||
border: 1px solid var(--border);
|
||||
text-align: left;
|
||||
}
|
||||
th {
|
||||
background: var(--code-bg);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* ── Org-specific cleanup ────────────────────────────── */
|
||||
.outline-2, .outline-3, .outline-4 { margin-top: 1.5rem; }
|
||||
.tag { display: none; }
|
||||
#table-of-contents { margin-bottom: 2rem; }
|
||||
Reference in New Issue
Block a user