Last active
August 29, 2015 14:16
-
-
Save bradrice/42f665ca08c1e58af3c5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
| <div id="test"><a>A dark link</a></div> |
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.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $color-link: #3097b4; | |
| a { | |
| color: $color-link; | |
| text-decoration: underline; | |
| &:hover { | |
| color: lighten($color-link, 15%); | |
| } | |
| &:active { | |
| color: desaturate(darken($color-link, 15%), 25%); | |
| } | |
| } |
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 { | |
| color: #3097b4; | |
| text-decoration: underline; | |
| } | |
| a:hover { | |
| color: #5dbad4; | |
| } | |
| a:active { | |
| color: #335a65; | |
| } |
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
| <div id="test"><a>A dark link</a></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment