Skip to content

Instantly share code, notes, and snippets.

@ganglio
Created August 28, 2012 15:20
Show Gist options
  • Save ganglio/3499029 to your computer and use it in GitHub Desktop.
Save ganglio/3499029 to your computer and use it in GitHub Desktop.
SCSS: CandyCane Mixin
@mixin cane($size) {
@include background-image(
linear-gradient(-45deg, rgba(255, 255, 255, .5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, .5) 75%, transparent 75%, transparent),
linear-gradient(top,transparent 0,rgba(200,200,200,0.3) 25%,rgba(255,255,255,0.5) 50%,rgba(200,200,200,0.3) 75%,transparent 100%)
);
@include background-size($size $size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment