Skip to content

Instantly share code, notes, and snippets.

@mokargas
Created November 25, 2013 00:25
Show Gist options
  • Save mokargas/7634446 to your computer and use it in GitHub Desktop.
Save mokargas/7634446 to your computer and use it in GitHub Desktop.
Basic Filter Mixin
@mixin filter( $var ){
-webkit-filter: $var;
-moz-filter: $var;
-ms-filter: $var;
-o-filter: $var;
filter: $var;
}
.blur{
@include filter(blur(20px));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment