-
-
Save davidhellmann/b6c62cc71a5e64e3f7936fa1bcd1a09d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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