Skip to content

Instantly share code, notes, and snippets.

@benknight
Created August 16, 2012 18:14
Show Gist options
  • Save benknight/3372277 to your computer and use it in GitHub Desktop.
Save benknight/3372277 to your computer and use it in GitHub Desktop.
Email media queries
/* mobile-specific CSS styles... yee-haw */
@media only screen and (max-device-width: 480px) {
body {
margin: 10px 0;
}
table {
background: none !important;
}
[class=container] {
width: 320px !important;
border: none !important;
}
[class=header] {
height: 50px;
background: url(...) no-repeat center;
background-size: 95%;
}
[class=header] img {
display: none !important;
}
[class=bd] {
width: 170px;
}
[class=spacer] {
display: none !important;
}
[class=img] {
width: 100px;
padding-top: 25px;
}
[class=img] img {
width: 100px;
height: auto;
margin-top: 0 !important;
}
[class=welcome] {
padding-bottom: 20px;
}
[class=footer] p {
float: none !important;
margin: 0 0 1em 0 !important;
}
[class="m-ptn"] {
padding-top: 0 !important;
}
[class="m-pbl"] {
padding-bottom: 20px !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment