Last active
August 29, 2015 14:17
-
-
Save mberizzo/4bcf9e3b2fe7dc188dd4 to your computer and use it in GitHub Desktop.
CSS Media Queries
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
/*-----------start MEDIA QUERIES-----------*/ | |
/*start IPHONE*/ | |
/*@media (min-width: 240px) and (max-width: 479px) {*/ | |
@media (min-width: 240px) and (max-width: 767px) { | |
} | |
/*end IPHONE*/ | |
/*start IPHONE VERTICAL*/ | |
@media (min-width: 240px) and (max-width: 479px) { | |
} | |
/*start IPHONE VERTICAL*/ | |
/*start IPHONE HORIZONTAL*/ | |
@media (min-width: 480px) and (max-width: 767px) { | |
} | |
/*end IPHONE HORIZONTAL*/ | |
/*start IPAD */ | |
@media (min-width: 768px) and (max-width: 1199px) { | |
} | |
/*end IPAD */ | |
/*start IPAD VERTICAL*/ | |
@media (min-width: 768px) and (max-width: 979px) { | |
} | |
/*end IPAD VERTICAL*/ | |
/*start IPAD HORIZONTAL*/ | |
@media (min-width: 980px) and (max-width: 1199px){ | |
} | |
/*end IPAD HORIZONTAL*/ | |
/*start BIG SCREEN*/ | |
@media (min-width: 1200px){ | |
} | |
/*end BIG SCREEN*/ | |
/*-----------end MEDIA QUERIES-----------*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment