Skip to content

Instantly share code, notes, and snippets.

@stephentcannon
Created February 13, 2014 20:12
Show Gist options
  • Save stephentcannon/8982905 to your computer and use it in GitHub Desktop.
Save stephentcannon/8982905 to your computer and use it in GitHub Desktop.
// default desktop view
#signInPage{
border: 1px solid gray;
}
// landscape orientation view for tablets
@media only screen and (min-width: 768px) {
#signInPage{
padding: 20px;
}
}
// portrait orientation view for tablets
@media only screen and (max-width: 768px) {
#signInPage{
padding: 0px;
border: 0px;
}
}
// phone view
@media only screen and (max-width: 480px) {
#signInPage{
.footer{
display: none;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment