Skip to content

Instantly share code, notes, and snippets.

@pertrai1
Created April 26, 2012 10:49
Show Gist options
  • Save pertrai1/2498741 to your computer and use it in GitHub Desktop.
Save pertrai1/2498741 to your computer and use it in GitHub Desktop.
sass mixin for opacity
@mixin opacity($opacity) {
filter: alpha(opacity=#{$opacity});
opacity: $opacity * 0.01;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment