Created
December 18, 2015 12:14
-
-
Save cimmanon/3f1c5b1538239b572700 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
.button1 { | |
background: black; | |
padding: 5px 10px; | |
text-decoration: none; | |
color: white; | |
&:hover { | |
background: red; | |
} | |
} | |
.button2 { | |
background: blue; | |
padding: 5px 10px; | |
text-decoration: none; | |
color: white; | |
&:hover { | |
@extend .button1:hover | |
} | |
} |
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
.button1 { | |
background: black; | |
padding: 5px 10px; | |
text-decoration: none; | |
color: white; | |
} | |
.button1:hover, .button2:hover { | |
background: red; | |
} | |
.button2 { | |
background: blue; | |
padding: 5px 10px; | |
text-decoration: none; | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment