Created
January 14, 2015 03:10
-
-
Save jacks0n/1e1818b02f40d73397f3 to your computer and use it in GitHub Desktop.
Enables font anti-aliasing, nice and crisp text!
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
body { | |
/* Crisp text - antialiase */ | |
font-smoothing: antialiased !important; | |
-moz-osx-font-smoothing: grayscale !important; | |
-webkit-font-smoothing: antialiased !important; | |
-moz-font-smoothing: antialiased !important; | |
/* Kerning */ | |
text-rendering: optimizeLegibility !important; | |
/* Optional */ | |
-webkit-text-stroke: 1px rgba(0,0,0,0.1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment