Skip to content

Instantly share code, notes, and snippets.

@zmiftah
Created August 14, 2013 02:58
Show Gist options
  • Save zmiftah/6227657 to your computer and use it in GitHub Desktop.
Save zmiftah/6227657 to your computer and use it in GitHub Desktop.
Less Media Query Resize Height
@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