Created
April 7, 2018 09:39
-
-
Save c7x43t/539a4c6a7c6f2c55ddd75321cf02d348 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
.font-smoothing { | |
/* Adjust font size */ | |
font-size: 100%; | |
-webkit-text-size-adjust: 100%; | |
/* Font varient */ | |
font-variant-ligatures: none; | |
-webkit-font-variant-ligatures: none; | |
/* Smoothing */ | |
font-smooth: always; | |
text-rendering: optimizeLegibility; | |
text-rendering: geometricPrecision; | |
-moz-osx-font-smoothing: grayscale; | |
font-smoothing: antialiased; | |
-moz-font-smoothing: antialiased; | |
-webkit-font-smoothing: antialiased; | |
-webkit-font-smoothing: subpixel-antialiased; | |
text-shadow: rgba(0, 0, 0, .01) 0 0 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment