Last active
October 28, 2021 10:42
-
-
Save kbsali/9a72632110a1c39a0db3ea9bbe74d8a4 to your computer and use it in GitHub Desktop.
Tiny little css to make plain html easier to read : https://www.swyx.io/css-100-bytes/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
max-width: 70ch; | |
padding: 3em 1em; | |
margin: auto; | |
line-height: 1.75; | |
font-size: 1.25em; | |
} | |
h1,h2,h3,h4,h5,h6 { | |
margin: 3em 0 1em; | |
} | |
p,ul,ol { | |
margin-bottom: 2em; | |
color: #1d1d1d; | |
font-family: sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment