Created
November 1, 2012 20:29
-
-
Save NapoleonWils0n/3996276 to your computer and use it in GitHub Desktop.
css: glass effect
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
/* glass */ | |
#poster:after { | |
content: -webkit-gradient(linear,left top, right top, | |
from(rgba(255,255,255,0.2)), | |
to(rgba(255,255,255,0.2)), | |
color-stop(0.5, rgba(255,255,255,0.5)), | |
color-stop(0.6, rgba(255,255,255,0.1)), | |
color-stop(0.605, rgba(255,255,255,0.1))); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment