Last active
December 22, 2015 02:08
-
-
Save pwittchen/6400861 to your computer and use it in GitHub Desktop.
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 { | |
font-size: 1.0em; | |
color: rgb(0,0,0); | |
text-align: justify; | |
/* background: rgba(217, 217, 217, 1.0); you can set your background here, | |
it's kind of fix for older versions of Android OS */ | |
} | |
@media screen and (-webkit-device-pixel-ratio: 1.5) { | |
/* CSS for high-density screens */ | |
body { | |
font-size: 1.05em; | |
} | |
} | |
@media screen and (-webkit-device-pixel-ratio: 2.0) { | |
/* CSS for extra high-density screens */ | |
body { | |
font-size: 1.1em; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment