Created
September 3, 2014 02:01
-
-
Save zastrow/38e118ac945979d59d62 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
<a href="#" class="feature-class">Feature Link</a> | |
<a href="#" class="feature-class style-class">Feature Style Link</a> |
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.14) | |
// Compass (v1.0.1) | |
// ---- | |
.feature-class { | |
color: #0090B2; | |
&:hover { | |
color: #FF7A00; | |
} | |
&:active { | |
color: #B25500; | |
} | |
&.style-class { | |
color: #00CEFF; | |
&:hover { | |
color: #0090B2; | |
} | |
&:active { | |
color: #FF7A00; | |
} | |
} | |
} |
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
.feature-class { | |
color: #0090B2; | |
} | |
.feature-class:hover { | |
color: #FF7A00; | |
} | |
.feature-class:active { | |
color: #B25500; | |
} | |
.feature-class.style-class { | |
color: #00CEFF; | |
} | |
.feature-class.style-class:hover { | |
color: #0090B2; | |
} | |
.feature-class.style-class:active { | |
color: #FF7A00; | |
} |
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 href="#" class="feature-class">Feature Link</a> | |
<a href="#" class="feature-class style-class">Feature Style Link</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment