Skip to content

Instantly share code, notes, and snippets.

@paulslugocki
Created March 12, 2012 19:30
Show Gist options
  • Save paulslugocki/2024161 to your computer and use it in GitHub Desktop.
Save paulslugocki/2024161 to your computer and use it in GitHub Desktop.
Mobile booking engine hack
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