Created
June 20, 2014 05:55
-
-
Save jensgro/752c92c612ced4b1db59 to your computer and use it in GitHub Desktop.
hover-mixin
This file contains hidden or 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
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
@mixin hover { | |
&:hover, | |
&:focus { | |
@content; | |
} | |
} | |
a { | |
font-weight: bold; | |
text-decoration: none; | |
color: #c00; | |
@include hover { | |
outline: none; | |
color: #09f; | |
} | |
} | |
.btn { | |
background-color: #09f; | |
@include hover { | |
background-color: darken(#09f, 10%); | |
} | |
} |
This file contains hidden or 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
a { | |
font-weight: bold; | |
text-decoration: none; | |
color: #c00; | |
} | |
a:hover, a:focus { | |
outline: none; | |
color: #09f; | |
} | |
.btn { | |
background-color: #09f; | |
} | |
.btn:hover, .btn:focus { | |
background-color: #007acc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment