Skip to content

Instantly share code, notes, and snippets.

@ThatGuyCND
Created November 13, 2013 13:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThatGuyCND/7449422 to your computer and use it in GitHub Desktop.
Save ThatGuyCND/7449422 to your computer and use it in GitHub Desktop.
Arbitrary breakpoints via custom mixin
@mixin respond-to($primary, $secondary:min-width, $nq:false, $nq-class:lt9) {
// Convert pixel values to ems
@if unit($primary) == 'px' {
$primary: pem($primary);
}
@if type-of($secondary) == number and unit($secondary) == 'px' {
$secondary: pem($secondary);
}
// Print out Media Queries
@if $secondary == max-width {
@media screen and (max-width: $primary - .001) { @content; }
@if $nq == true {
.#{$nq-value} &{
@content;
}
}
}
@else if $secondary == min-width {
@media screen and (min-width: $primary) { @content; }
@if $nq == true {
.#{$nq-value} &{
@content;
}
}
}
@else {
@media screen and (min-width: $primary) and (max-width: $secondary - .001) { @content; }
@if $nq == true {
.#{$nq-value} &{
@content;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment