Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created January 30, 2014 01:29
Show Gist options
  • Select an option

  • Save mturjak/8700994 to your computer and use it in GitHub Desktop.

Select an option

Save mturjak/8700994 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.14)
// Compass (v0.12.2)
// ----
@mixin padding($params...) {
$output: ();
$n: length($params);
@for $i from 1 through if( $n < 4, $n , 4) {
$var: nth($params,$i) * $spacer;
$output: join( $output, $var );
}
padding: $output;
}
$spacer: 10px;
test{
@include padding(10, 20, 10, 5, 8);
}
test {
padding: 100px 200px 100px 50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment