Created
February 13, 2014 20:12
-
-
Save stephentcannon/8982905 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
// 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