Created
July 17, 2018 09:51
-
-
Save pastparty/ff0681d47c6d0575437f675ec2e55c5e to your computer and use it in GitHub Desktop.
Basic system font stack with small adjustments.
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 { | |
| font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', Roboto, 'Segoe UI', 'Helvetica Neue', sans-serif; | |
| text-rendering: optimizeLegibility; | |
| text-size-adjust: 100%; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| textarea, | |
| button, | |
| input, | |
| select, | |
| optgroup { | |
| font-family: inherit; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment