Skip to content

Instantly share code, notes, and snippets.

@heyi
Created March 26, 2014 12:16
Show Gist options
  • Save heyi/9781855 to your computer and use it in GitHub Desktop.
Save heyi/9781855 to your computer and use it in GitHub Desktop.
@mixin sass circle
@mixin circle($width, $color) {
width: $width;
height: $width;
background: $color;
-webkit-border-radius: $width/2;
-moz-border-radius: $width/2;
border-radius: $width/2;
}
.circle {
@include circle(200px, #999);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment