Created
October 13, 2014 08:03
-
-
Save avwave/674f2756b32fa4332d3f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin invert($amt: 100%) { | |
-o-filter: invert($amt); | |
-ms-filter: invert($amt); | |
-moz-filter: invert($amt); | |
-webkit-filter: invert($amt); | |
@-moz-document url-prefix() { | |
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'invert\'><feColorMatrix in='SourceGraphic' type='matrix' values='-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0'/></filter></svg>#invert"); | |
background-color: #000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment