Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created December 18, 2015 12:14
Show Gist options
  • Save cimmanon/3f1c5b1538239b572700 to your computer and use it in GitHub Desktop.
Save cimmanon/3f1c5b1538239b572700 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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
}
}
.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