Skip to content

Instantly share code, notes, and snippets.

@syahrasi
Created December 10, 2013 04:16
Show Gist options
  • Save syahrasi/7885663 to your computer and use it in GitHub Desktop.
Save syahrasi/7885663 to your computer and use it in GitHub Desktop.
@function scale($start, $length, $ratio) {
$scales: ($start);
@for $i from 1 through $length {
$scales: append($scales, ceil((nth($scales, length($scales))) * $ratio));
}
@return $scales;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment