Created
March 13, 2014 14:19
-
-
Save cristianstan/9529373 to your computer and use it in GitHub Desktop.
CSS: Responsive intervals v2
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
| /* ### Responsive Max_319px ### */ | |
| @media only screen and (max-width: 319px) { | |
| } | |
| /* ### Responsive Min_320px Max_479px ### */ | |
| @media only screen and (min-width: 320px) and (max-width: 479px) { | |
| } | |
| /* ### Responsive Min_480px Max_767px ### */ | |
| @media only screen and (min-width: 480px) and (max-width: 767px) { | |
| } | |
| /* ### Responsive Min_768px Max_959px ### */ | |
| @media only screen and (min-width: 768px) and (max-width: 959px) { | |
| } | |
| /* ### Responsive Min_960px Max_1023px ### */ | |
| @media only screen and (min-width: 960px) and (max-width: 1023px) { | |
| } | |
| /* ### Responsive Min_1024px Max_1279px ### */ | |
| @media only screen and (min-width: 1024px) and (max-width: 1279px) { | |
| } | |
| /* ### Responsive Min_1280px ### */ | |
| @media only screen and (min-width: 1280px) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment