Created
June 11, 2012 22:07
-
-
Save spilliams/2913032 to your computer and use it in GitHub Desktop.
Responsive Breakpoints Boilerplate
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
.show_on_phones, .show_on_tablets, .hide_on_desktop { | |
display: none; | |
} | |
@media only screen and (max-width: 768px) and (min-width: 481px) { | |
/* tablets only */ | |
.show_on_tablets { | |
display: block; | |
} | |
.show_on_desktop, .hide_on_tablets { | |
display: none; | |
} | |
} | |
@media only screen and (max-width: 480px) { | |
/* phones */ | |
.show_on_phones { | |
display: block; | |
} | |
.show_on_desktop, .hide_on_phones { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment