Skip to content

Instantly share code, notes, and snippets.

@metaskills
Created February 5, 2014 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metaskills/8817472 to your computer and use it in GitHub Desktop.
Save metaskills/8817472 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
%std-border-radius {
$radius: 10px;
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
-o-border-radius: $radius;
border-radius: $radius;
}
.column { @extend %std-border-radius; }
.box { @extend %std-border-radius; }
.bookmark { @extend %std-border-radius; }
.column, .box, .bookmark {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment