Last active
December 14, 2015 02:19
-
-
Save mikeyakymenko/5013295 to your computer and use it in GitHub Desktop.
mediaqueries pattern..
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
@media all and (max-width: 1024px) { | |
/* styles for narrow desktop browsers and iPad landscape */ | |
} | |
@media all and (max-width: 768px) { | |
/* styles for narrower desktop browsers and iPad portrait */ | |
} | |
@media all and (max-width: 480px) { | |
/* styles for iPhone/Android landscape (and really narrow browser windows) */ | |
} | |
@media all and (max-width: 320px) { | |
/* styles for iPhone/Android portrait */ | |
} | |
@media all and (max-width: 240px) { | |
/* styles for smaller devices */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment