Created
August 14, 2013 02:58
-
-
Save zmiftah/6227657 to your computer and use it in GitHub Desktop.
Less Media Query Resize Height
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
@media (min-width: 1200px) { | |
#header-row { | |
.header-row( 103px ); | |
} | |
} | |
@media (min-width: 1024px) { | |
#header-row { | |
.header-row( 103px ); | |
} | |
} | |
@media (max-width: 800px) { | |
#header-row { | |
.header-row( 64px ); | |
#header-content { display: none; } | |
} | |
} | |
@media (max-width: 600px) { | |
#header-row { | |
.header-row( 48px ); | |
#header-content { display: none; } | |
} | |
} | |
@media (max-width: 480px) { | |
#header-row { | |
.header-row( 38px ); | |
#header-content { display: none; } | |
} | |
} | |
@media (max-width: 320px) { | |
#header-row { | |
.header-row( 24px ); | |
#header-content #right-side { display: none; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment