Skip to content

Instantly share code, notes, and snippets.

@gue-ni
Created May 25, 2021 09:37
Show Gist options
  • Save gue-ni/662d807e6c7f3f778214c0fa855ce39e to your computer and use it in GitHub Desktop.
Save gue-ni/662d807e6c7f3f778214c0fa855ce39e to your computer and use it in GitHub Desktop.
More minimal css
body {
max-width: 650px;
margin: 40px auto;
padding: 0 10px;
font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
color: #444;
}
h1,
h2,
h3 {
line-height: 1.2;
}
@media (prefers-color-scheme: dark) {
body {
color: #ccc;
background: black;
}
a:link {
color: #5bf;
}
a:visited {
color: #ccf;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment