Skip to content

Instantly share code, notes, and snippets.

@dani-z
Last active August 29, 2015 14:16
Show Gist options
  • Save dani-z/2b1babc1f05e1d670ee1 to your computer and use it in GitHub Desktop.
Save dani-z/2b1babc1f05e1d670ee1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
.btn {
// Common stuf here
color: #fff;
border-style: solid;
border-width: 1px;
&.btn-outlined {
background-color: #fff;
}
&--primary {
background-color: green;
border-color: green;
&.btn-outlined {
color: green;
}
}
&--secondary {
background-color: blue;
border-color: blue;
&.btn-outlined {
color: blue;
}
}
}
.btn {
color: #fff;
border-style: solid;
border-width: 1px;
}
.btn.btn-outlined {
background-color: #fff;
}
.btn--primary {
background-color: green;
border-color: green;
}
.btn--primary.btn-outlined {
color: green;
}
.btn--secondary {
background-color: blue;
border-color: blue;
}
.btn--secondary.btn-outlined {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment