Created
March 12, 2012 19:30
-
-
Save paulslugocki/2024161 to your computer and use it in GitHub Desktop.
Mobile booking engine hack
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
body, textarea, select, input, a, strong { | |
font-size:18px; | |
} | |
/*Change Font size for Mobiles in Posts*/ | |
@media screen and (-webkit-device-pixel-ratio: 1.5) { | |
/* CSS for high-density screens */ | |
body, textarea, select, input, a, strong { | |
font-size:30px; | |
} | |
td { | |
font-size:30px !important; | |
} | |
select { | |
min-width: 10em !important; | |
} | |
} | |
@media screen and (-webkit-device-pixel-ratio: 0.75) { | |
/* CSS for low-density screens */ | |
body, textarea, select, input, a, strong { | |
font-size:30px; | |
} | |
td { | |
font-size:30px !important; | |
} | |
select { | |
min-width: 10em !important; | |
} | |
} | |
@media only screen and (max-device-width: 480px) { | |
body, textarea, select, input, a, strong { | |
font-size:30px; | |
} | |
td { | |
font-size:30px !important; | |
} | |
select { | |
min-width: 10em !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment