Created
December 6, 2014 08:11
-
-
Save morganrallen/e393f8f195c1370eaacd to your computer and use it in GitHub Desktop.
where's it braked?
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
#dbg-mq { | |
color: white; | |
height: 10px; | |
position: absolute; | |
right: 10px; | |
top: 10px; | |
width: 10px; | |
z-index: 1000000; | |
} | |
#dbg-mq div { | |
display: none; | |
} | |
@media (max-width: 480px) { | |
#dbg-mq div.screen-xs { | |
display: block; | |
} | |
} | |
@media (min-width: 480px) and (max-width: 768px) { | |
#dbg-mq div.screen-sm { | |
display: block; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 992px) { | |
#dbg-mq div.screen-md { | |
display: block; | |
} | |
} | |
@media (min-width: 992px) and (max-width: 1200px) { | |
#dbg-mq div.screen-lg { | |
display: block; | |
} | |
} |
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
<div id="dbg-mq"> | |
<div class="screen-xs">XS</div> | |
<div class="screen-sm">SM</div> | |
<div class="screen-md">MD</div> | |
<div class="screen-lg">LG</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment