Skip to content

Instantly share code, notes, and snippets.

@tomleo
Created January 29, 2015 17:05
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 tomleo/0a088e7187ab44d98fc6 to your computer and use it in GitHub Desktop.
Save tomleo/0a088e7187ab44d98fc6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
//Use placeholders for repeating visual styles
%dotted-border { border: 1px dotted #eee; }
.box1 {
@extend %dotted-border;
color: blue;
}
.box2 {
@extend %dotted-border;
color: red;
}
.box1, .box2 {
border: 1px dotted #eee;
}
.box1 {
color: blue;
}
.box2 {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment