Last active
March 4, 2018 11:47
-
-
Save hrdtbs/df2ca619820d406b9ca4dc728cfeb137 to your computer and use it in GitHub Desktop.
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
*{ | |
margin: 0; | |
padding: 0; | |
} | |
/* | |
Font size: 12 | |
Line height: 1.5 | |
Scale Factor: 1.618 | |
*/ | |
/*Vertical Rhythm*/ | |
html{ | |
font-size: 12px; | |
} | |
h1, h2, h3, h4, h5, h6, p{ | |
margin: 1.5rem 0; /* Line height * 1 */ | |
} | |
h1{ | |
font-size: 4.236rem; /* FontSize * (ScaleFactor ** 3) */ | |
line-height: 6rem; /* LineHeight * 4 */ | |
} | |
h2{ | |
font-size: 2.618rem; /* FontSize * (ScaleFactor ** 2) */ | |
line-height: 4.5rem; /* LineHeight * 3 */ | |
} | |
h3{ | |
font-size: 1.618rem; /* FontSize * (ScaleFactor ** 1) */ | |
line-height: 3rem; /* LineHeight * 2 */ | |
} | |
h4,h5,h6,p{ | |
font-size: 1rem; /* FontSize * (ScaleFactor ** 0) */ | |
line-height: 1.5rem; /* LineHeight * 1 */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment