Last active
June 4, 2018 02:41
-
-
Save jsejcksn/4d16c2e4033b2dd2b8c1b4cf2de73bd1 to your computer and use it in GitHub Desktop.
normalize.css modifications
This file contains 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
/*! Modifications to normalize */ | |
*, | |
*::before, | |
*::after { | |
border: 0; | |
box-sizing: inherit; | |
font-weight: normal; | |
margin: 0; | |
padding: 0; | |
} | |
html { | |
box-sizing: border-box; | |
font-size: 10px; /* rem = 10px */ | |
} | |
body { | |
font-size: 1.6rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment