Skip to content

Instantly share code, notes, and snippets.

@asimonok
Created November 16, 2015 08:48
Show Gist options
  • Save asimonok/441b841b14765818d6c3 to your computer and use it in GitHub Desktop.
Save asimonok/441b841b14765818d6c3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<a href="#">link!</a>
<div class="block-rgba">block-rgba</div>
// ----
// libsass (v3.2.5)
// ----
a{
$color-link: #37f3ad;
color:$color-link;
&:hover{
color:$color-link/2;
}
}
$rgba-bg: rgba(0,0,0,0.3);
.block-rgba{
background: $rgba-bg + rgba(255,0,0,0.3);
}
a {
color: #37f3ad;
}
a:hover {
color: #1c7a57;
}
.block-rgba {
background: rgba(255, 0, 0, 0.3);
}
<a href="#">link!</a>
<div class="block-rgba">block-rgba</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment