Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created November 30, 2015 12:03
Show Gist options
  • Save cimmanon/a7e8c7623a4bd6bb3769 to your computer and use it in GitHub Desktop.
Save cimmanon/a7e8c7623a4bd6bb3769 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin transparency($opacity){
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
filter: alpha(opacity=($opacity * 100));
-moz-opacity: $opacity;
-khtml-opacity: $opacity;
opacity: $opacity;
}
.foo {
@include transparency(0.5);
}
.foo {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment