Skip to content

Instantly share code, notes, and snippets.

@FiNGAHOLiC
Created September 20, 2012 11:46
Show Gist options
  • Select an option

  • Save FiNGAHOLiC/3755452 to your computer and use it in GitHub Desktop.

Select an option

Save FiNGAHOLiC/3755452 to your computer and use it in GitHub Desktop.
CSS3 ribbon mixin
// ribbon
@mixin ribbon($width, $x, $y, $color){
position:relative;
z-index:1;
&:after{
content:'';
@include position-absolute(bottom, $y, right, $x, -1);
border:{
width:$width;
style:solid;
color:transparent;
left-color:$color;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment