Skip to content

Instantly share code, notes, and snippets.

@meirish
Created April 16, 2015 15:46
Show Gist options
  • Save meirish/300c6e17ae65c32fdf75 to your computer and use it in GitHub Desktop.
Save meirish/300c6e17ae65c32fdf75 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
.btn {
font-weight: bold;
&:focus {
font-style: italic;
}
&.dark,
.dark {
&:focus {
box-shadow: 0 0 0 3px rgba(177, 213, 249, 0.3);
}
&:active {
box-shadow: none;
}
}
}
.btn.dark{
color: black;
}
.btn.dark.filled {
background-color: white;
}
.blah {
@extend .btn;
}
.btn, .blah {
font-weight: bold;
}
.btn:focus, .blah:focus {
font-style: italic;
}
.btn.dark:focus, .dark.blah:focus,
.btn .dark:focus,
.blah .dark:focus {
box-shadow: 0 0 0 3px rgba(177, 213, 249, 0.3);
}
.btn.dark:active, .dark.blah:active,
.btn .dark:active,
.blah .dark:active {
box-shadow: none;
}
.btn.dark, .dark.blah {
color: black;
}
.btn.dark.filled, .dark.filled.blah {
background-color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment