Skip to content

Instantly share code, notes, and snippets.

@kossnocorp
Created October 4, 2014 12:18
Show Gist options
  • Save kossnocorp/9867052668e5ad12b4f4 to your computer and use it in GitHub Desktop.
Save kossnocorp/9867052668e5ad12b4f4 to your computer and use it in GitHub Desktop.
min-screen(end_at)
@media screen and (min-width: end_at)
{block}
screen(start_at)
@media screen and (max-width: start_at)
{block}
screen-1280()
+screen(1323px)
{block}
screen-1024()
+screen(1152px)
{block}
screen-768()
+screen(896px)
{block}
screen-568()
+screen(668px)
{block}
screen-480()
+screen(524px)
{block}
screen-320()
+screen(400px)
{block}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment