Created
July 20, 2012 12:45
-
-
Save mikefowler/3150541 to your computer and use it in GitHub Desktop.
My default partial for working on responsive mobile-first layouts.
This file contains 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
@mixin respond-to($size) { | |
/** | |
* Smartphones | |
*/ | |
@if $size == 'mobile' { | |
// Handles "all" smartphones... | |
@media only screen | |
and (max-width : 480px) { | |
@content; | |
} | |
} | |
/** | |
* Not Smartphones (anything bigger than mobile) | |
*/ | |
@if $size == '> mobile' { | |
// Handles "all" tablets... | |
@media only screen | |
and (min-width: 481px) { | |
@content; | |
} | |
} | |
/** | |
* Tablets | |
*/ | |
@if $size == 'tablet' { | |
// Handles "all" tablets... | |
@media only screen | |
and (min-width: 481px) | |
and (max-width : 768px) { | |
@content; | |
} | |
} | |
/** | |
* Desktop | |
*/ | |
@if $size == 'desktop' { | |
@media only screen | |
and (min-width : 769px) { | |
@content; | |
} | |
} | |
@if $size == 'desktop-l' { | |
@media only screen | |
and (min-width : 960px) { | |
@content; | |
} | |
} | |
@if $size == 'desktop-xl' { | |
@media only screen | |
and (min-width : 1824px) { | |
@content; | |
} | |
} | |
/** | |
* Retina Display | |
*/ | |
@if $size == 'retina' { | |
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), | |
only screen and (min-device-pixel-ratio : 1.5) { | |
@content; | |
} | |
} | |
} | |
/** | |
* Any IE | |
*/ | |
@mixin ie-fix { | |
.ie & { | |
@content; | |
} | |
} | |
/** | |
* IE7 | |
*/ | |
@mixin lt-ie8-fix { | |
.lt-ie8 & { | |
@content; | |
} | |
} | |
/** | |
* IE8 | |
*/ | |
@mixin lt-ie9-fix { | |
.lt-ie9 & { | |
@content; | |
} | |
} |
Author
mikefowler
commented
Jul 20, 2012
- Note: The two mixins at the bottom are intended to be used in combination with conditional classes for IE on the tag.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment