Skip to content

Instantly share code, notes, and snippets.

@rpearce
Created April 27, 2012 07:18
Show Gist options
  • Save rpearce/2506833 to your computer and use it in GitHub Desktop.
Save rpearce/2506833 to your computer and use it in GitHub Desktop.
SASS math
@mixin opacity($amount) {
-moz-opacity : $amount;
-khtml-opacity: $amount;
opacity : $amount;
filter : progid:DXImageTransform.Microsoft.Alpha(opacity=(#{$amount * 100}));
}
#link { @include opacity(0.5) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment