feat: bootstrap foundation application

This commit is contained in:
2026-04-29 00:26:58 -04:00
parent 8e6646499f
commit 4a72e1e030
53 changed files with 4443 additions and 0 deletions

View File

@@ -0,0 +1,194 @@
:root {
color-scheme: light;
--bg: #fbf7ef;
--panel: rgba(255, 255, 255, 0.82);
--panel-strong: #ffffff;
--text: #18202a;
--muted: #5b6675;
--accent: #0f5bd8;
--accent-soft: rgba(15, 91, 216, 0.1);
--border: rgba(24, 32, 42, 0.12);
--shadow: 0 16px 48px rgba(24, 32, 42, 0.08);
--radius-lg: 24px;
--radius-md: 16px;
--radius-sm: 10px;
font-family: "Charter", "Iowan Old Style", "Palatino Linotype", serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
color: var(--text);
background:
radial-gradient(circle at top left, rgba(15, 91, 216, 0.16), transparent 34%),
radial-gradient(circle at bottom right, rgba(14, 163, 125, 0.13), transparent 28%),
linear-gradient(180deg, #fdfaf5 0%, #f5efe6 100%);
}
a {
color: var(--accent);
}
code {
font-family: ui-monospace, SFMono-Regular, monospace;
}
.site-header {
position: sticky;
top: 0;
z-index: 10;
border-bottom: 1px solid rgba(255, 255, 255, 0.42);
background: rgba(251, 247, 239, 0.92);
backdrop-filter: blur(12px);
}
.site-header__inner,
.site-main {
width: min(1080px, calc(100vw - 2rem));
margin: 0 auto;
}
.site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 72px;
}
.site-brand {
color: var(--text);
font-size: 1.15rem;
font-weight: 700;
text-decoration: none;
}
.site-nav {
display: flex;
gap: 1rem;
}
.site-nav a {
text-decoration: none;
}
.site-main {
padding: 2rem 0 4rem;
}
.hero-panel,
.doc-list,
.document-shell,
.error-panel {
border: 1px solid var(--border);
border-radius: var(--radius-lg);
background: var(--panel);
box-shadow: var(--shadow);
}
.hero-panel,
.error-panel {
padding: 2rem;
}
.doc-list,
.document-shell {
margin-top: 1rem;
padding: 1.5rem 2rem;
}
.eyebrow {
margin: 0 0 0.8rem;
color: var(--accent);
font: 700 0.78rem/1.2 ui-monospace, SFMono-Regular, monospace;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.lede {
max-width: 44rem;
color: var(--muted);
line-height: 1.7;
}
.doc-list ul,
.tag-list {
margin: 0;
padding: 0;
list-style: none;
}
.doc-list li {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
align-items: center;
padding: 0.75rem 0;
border-top: 1px solid var(--border);
}
.doc-list li:first-child {
border-top: 0;
}
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.tag-list a {
display: inline-flex;
padding: 0.35rem 0.65rem;
border-radius: 999px;
background: var(--accent-soft);
text-decoration: none;
}
.hash {
color: var(--muted);
overflow-wrap: anywhere;
}
.markdown-body {
line-height: 1.75;
}
.markdown-body pre {
overflow-x: auto;
padding: 1rem;
border-radius: var(--radius-md);
background: #18202a;
color: #f7f9fc;
}
.markdown-body blockquote {
margin-left: 0;
padding: 0.9rem 1rem;
border-left: 4px solid var(--accent);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
background: rgba(15, 91, 216, 0.05);
}
.markdown-body img {
max-width: 100%;
}
@media (max-width: 720px) {
.site-header__inner {
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 0;
}
.doc-list,
.document-shell {
padding: 1.25rem;
}
}