Created
August 25, 2015 15:44
-
-
Save misterzik/694154c6215102de3f09 to your computer and use it in GitHub Desktop.
Cross-Platform
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
/* Mobile Versions - Media Q's */ | |
/* Large desktops and laptops */ | |
@media (min-width: 1200px) { | |
} | |
/* Landscape tablets and medium desktops */ | |
@media (min-width: 992px) and (max-width: 1199px) { | |
} | |
/* Portrait tablets and small desktops */ | |
@media (min-width: 768px) and (max-width: 991px) { | |
} | |
/* Landscape phones and portrait tablets */ | |
@media (max-width: 767px) { | |
} | |
/* Portrait phones and smaller */ | |
@media (max-width: 480px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment