Last active
October 30, 2015 16:53
-
-
Save mistergraphx/864a6d522c5ea2e2b25e to your computer and use it in GitHub Desktop.
Details about usin em, px or rems in mediaquerries:
http://stackoverflow.com/questions/22228568/switching-to-em-based-media-queries From http://app.kodery.com/s/1075
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
/* ===== == = === 20em (320px) === = == ===== */ | |
@media only screen and (min-width : 20em) { | |
} | |
/* ===== == = === 30em (480px) === = == ===== */ | |
@media only screen and (min-width : 30em) { | |
} | |
/* ===== == = === 37.5em (600px) === = == ===== */ | |
@media only screen and (min-width: 37.5em) { | |
} | |
/* ===== == = === 48em (768px) === = == ===== */ | |
@media only screen and (min-width : 48em) { | |
} | |
/* ===== == = === 56.25em (900px) === = == ===== */ | |
@media only screen and (min-width : 56.25em) { | |
} | |
/* ===== == = === 68.75em (1100px) === = == ===== */ | |
@media only screen and (min-width : 68.75em) { | |
} | |
/* ===== == = === 81.25em (1300px) === = == ===== */ | |
@media only screen and (min-width : 81.25em) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment