Skip to content

Instantly share code, notes, and snippets.

@ysakmrkm
Created May 10, 2012 07:23
Show Gist options
  • Save ysakmrkm/2651657 to your computer and use it in GitHub Desktop.
Save ysakmrkm/2651657 to your computer and use it in GitHub Desktop.
Background mixin
@mixin background($path:'',$pos1:'',$pos2:'',$repeat:'',$color:''){
@if $path != '' {
$path:url(#{$path});
} @else {
$path:'';
}
@if $pos1 != '' {
$pos1:' #{$pos1}';
}
@if $pos2 != '' {
$pos2:' #{$pos2}';
}
@if $repeat != '' {
$repeat:' #{$repeat}';
}
@if $color != '' {
$color:' #{$color}';
}
@if $path != '' {
background:$path#{$pos1}#{$pos2}#{$repeat}#{$color};
} @else {
@if $color != '' {
background:#{$color};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment