Skip to content

Instantly share code, notes, and snippets.

@iwtw-richb
Forked from chriseppstein/filters.sass
Last active August 29, 2015 14:05
Show Gist options
  • Save iwtw-richb/c5a60990e57a80cfbb08 to your computer and use it in GitHub Desktop.
Save iwtw-richb/c5a60990e57a80cfbb08 to your computer and use it in GitHub Desktop.
@mixin filter( $var ) {
-webkit-filter: $var;
-moz-filter: $var;
-ms-filter: $var;
-o-filter: $var;
filter: $var;
}
a {
&:hover {
@include filter(blur(2px));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment