Skip to content

Instantly share code, notes, and snippets.

@suisho
Created June 25, 2015 16:12
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 suisho/7e0fc2226cef6e1b13ba to your computer and use it in GitHub Desktop.
Save suisho/7e0fc2226cef6e1b13ba to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.3)
// ----
@mixin border-title($color: "black"){
border: 1px dotted #{$color};
color: #{$color}
}
.default-title{
@include border-title();
}
.super-title{
@include border-title(red);
}
.default-title {
border: 1px dotted black;
color: black;
}
.super-title {
border: 1px dotted red;
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment