Created
July 30, 2014 21:29
-
-
Save iamcarrico/0f85e67ecdb747e5b25a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
| // ---- | |
| // libsass (v2.0.0) | |
| // ---- | |
| .foo { | |
| -webkit-filter: #{"invert("} 100% #{")"}; | |
| color: invert(#FFFFFF); | |
| } | |
| .bar { | |
| -webkit-filter: #{"invert(100%)"}; | |
| color: invert(#FFFFFF); | |
| } |
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
| .foo { | |
| -webkit-filter: invert( 100% ); | |
| color: black; } | |
| .bar { | |
| -webkit-filter: invert(100%); | |
| color: black; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment