Created
March 2, 2011 06:54
-
-
Save tj/850573 to your computer and use it in GitHub Desktop.
opacity.styl
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
support-for-ie = true | |
opacity(n) | |
opacity n | |
if support-for-ie | |
filter unquote('progid:DXImageTransform.Microsoft.Alpha(Opacity=' + round(n * 100) + ')') | |
#logo | |
&:hover | |
opacity 0.5 |
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
#logo:hover { | |
opacity: 0.5; | |
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment