Skip to content

Instantly share code, notes, and snippets.

@Bobz-zg
Created July 21, 2014 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bobz-zg/c1b900d169e05c7d73b2 to your computer and use it in GitHub Desktop.
Save Bobz-zg/c1b900d169e05c7d73b2 to your computer and use it in GitHub Desktop.
/**
* 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