Created
July 21, 2014 20:45
-
-
Save Bobz-zg/c1b900d169e05c7d73b2 to your computer and use it in GitHub Desktop.
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
/** | |
* Bootstrap responsive breakpoints mixins | |
* | |
*/ | |
$screen-xs: 480px; | |
$screen-sm: 768px; | |
$screen-md: 992px; | |
$screen-lg: 1200px; | |
@mixin xxs { | |
@media only screen and ( max-width: $screen-xs ) { | |
@content; | |
} | |
} | |
@mixin xs { | |
@media only screen and ( min-width: $screen-xs ) { | |
@content; | |
} | |
} | |
@mixin sm { | |
@media only screen and ( min-width: $screen-sm ) { | |
@content; | |
} | |
} | |
@mixin md { | |
@media only screen and ( min-width: $screen-md ) { | |
@content; | |
} | |
} | |
@mixin lg { | |
@media only screen and ( min-width: $screen-lg ) { | |
@content; | |
} | |
} | |
------------ USAGE ------------ | |
h1 { | |
font-size: 28px; | |
@include sm { | |
font-size: 34px; | |
} | |
@include lg { | |
font-size: 48px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment