Skip to content

Instantly share code, notes, and snippets.

@blizzerand
Created September 12, 2012 18:14
Show Gist options
  • Select an option

  • Save blizzerand/3708767 to your computer and use it in GitHub Desktop.

Select an option

Save blizzerand/3708767 to your computer and use it in GitHub Desktop.
@mixin borderstuff ($bgcolor, $radius, $bordercolor)
{
background-color: $bgcolor;
border-radius: $radius;
-moz-border-radius:$radius;
-webkit-border-radius: $radius;
border-top: 2px double $bordercolor;
border-bottom: 2px double $bordercolor;
width: 95%;
}
div#header{ @include borderstuff(#cccccc, 10, #fff000)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment