Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Last active December 28, 2016 22:43
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save csswizardry/35c9c323d22eefdbf293 to your computer and use it in GitHub Desktop.
Save csswizardry/35c9c323d22eefdbf293 to your computer and use it in GitHub Desktop.
// When we give an element some ‘attention’.
@mixin attention() {
&:hover,
&:active,
&:focus {
@content;
}
}
a {
font-weight: bold;
text-decoration: none;
color: #c00;
@include attention() {
outline: none;
color: #09f;
}
}
.btn {
background-color: #09f;
@include attention() {
background-color: darken(#09f, 10%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment