Skip to content

Instantly share code, notes, and snippets.

@james2doyle
Created October 7, 2025 16:24
Show Gist options
  • Save james2doyle/cd5b260da1617fc028368ffa2771c7e3 to your computer and use it in GitHub Desktop.
Save james2doyle/cd5b260da1617fc028368ffa2771c7e3 to your computer and use it in GitHub Desktop.
Minimal amount of CSS for a plain HTML page to look good. From https://thecascade.dev/article/least-amount-of-css/
/* @see https://thecascade.dev/article/least-amount-of-css/ */
html {
color-scheme: light dark;
}
body {
font-family: system-ui;
font-size: 1.25rem;
line-height: 1.5;
}
img,
svg,
video {
max-width: 100%;
display: block;
}
main {
max-width: min(70ch, 100% - 4rem);
margin-inline: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment