Skip to content

Instantly share code, notes, and snippets.

@maximkoretskiy
Created March 26, 2015 13:16
Show Gist options
  • Save maximkoretskiy/c1721a219950d52aadc2 to your computer and use it in GitHub Desktop.
Save maximkoretskiy/c1721a219950d52aadc2 to your computer and use it in GitHub Desktop.
Media query styles scaling mixin
=media-sizer($prop, $maxvalue, $minvalue, $maxh, $minh, $prefix:"", $postfix:"")
$curh: $maxh
$steph: ($maxh - $minh)/4
$stepvalue: ($maxvalue - $minvalue)/4
$value: $maxvalue
#{$prop}: #{$prefix} $value #{$postfix}
@while $curh >= $minh
@media(max-height: #{$curh})
#{$prop}: #{$prefix} $value #{$postfix}
$value: $value - $stepvalue
$curh: $curh - $steph
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment