Skip to content

Instantly share code, notes, and snippets.

@Undistraction
Created July 19, 2015 22:05
Show Gist options
  • Save Undistraction/573bcbe757ddb8ad6d7e to your computer and use it in GitHub Desktop.
Save Undistraction/573bcbe757ddb8ad6d7e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<a href="#"><span class="Icon">@</span> LABEL</a>
<a class="different-icon-color" href="#"><span class="Icon">@</span> LABEL</a>
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
a {
background: red;
line-height: 200px;
padding: 0 250px;
display: inline-block;
color: white;
text-transform: uppercase;
text-decoration: none;
font-family: sans-serif;
transition: background 1s, color 1s;
&:hover {
background: black;
color: yellow;
.Icon {
color: inherit;
}
}
.Icon {
transition: inherit;
}
}
.different-icon-color {
.Icon {
color: green;
}
}
a {
background: red;
line-height: 200px;
padding: 0 250px;
display: inline-block;
color: white;
text-transform: uppercase;
text-decoration: none;
font-family: sans-serif;
transition: background 1s, color 1s;
}
a:hover {
background: black;
color: yellow;
}
a:hover .Icon {
color: inherit;
}
a .Icon {
transition: inherit;
}
.different-icon-color .Icon {
color: green;
}
<a href="#"><span class="Icon">@</span> LABEL</a>
<a class="different-icon-color" href="#"><span class="Icon">@</span> LABEL</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment