Created
October 14, 2014 04:04
-
-
Save veb/e6d5311b2a875bc73fab to your computer and use it in GitHub Desktop.
This file contains hidden or 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