This commit is contained in:
Barrett Ruth 2026-01-12 23:32:47 -05:00
parent ddec1e926e
commit 9a6591bea4
2 changed files with 18 additions and 18 deletions

View file

@ -142,18 +142,6 @@
font-display: swap; font-display: swap;
} }
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
font-family: "Signifier", serif;
overflow-x: hidden;
}
pre, pre,
code, code,
pre code, pre code,
@ -162,11 +150,6 @@ code[class*="language-"] {
font-family: "Apercu Mono", monospace !important; font-family: "Apercu Mono", monospace !important;
} }
html,
body {
font-family: "Signifier", serif;
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
html, html,
body { body {
@ -182,3 +165,14 @@ body {
color: #e0e0e0; color: #e0e0e0;
} }
} }
html,
body {
font-family: "Signifier", serif;
overflow-x: hidden;
}
html,
body {
font-family: "Signifier", serif;
}

View file

@ -10,7 +10,7 @@ header {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap; flex-wrap: nowrap;
gap: 20px; gap: 20px;
} }
@ -18,12 +18,18 @@ h1,
.delta { .delta {
font-size: clamp(1.5rem, 8vw, 4rem); font-size: clamp(1.5rem, 8vw, 4rem);
font-weight: 300; font-weight: 300;
flex-shrink: 1;
}
.delta {
flex-shrink: 0;
} }
section { section {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: clamp(20px, 3vw, 40px); gap: clamp(20px, 3vw, 40px);
padding-bottom: clamp(80px, 15vw, 150px);
} }
h2 { h2 {