Created
August 20, 2013 17:19
-
-
Save dallasbpeters/6284427 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
p { | |
padding:.5em; | |
margin:1em; | |
-webkit-animation: target-fade 3s 1; | |
-moz-animation: target-fade 3s 1; | |
} | |
@-webkit-keyframes target-fade { | |
0% { background-color: rgba(239,203,96,0); } | |
30% { background-color: rgba(239,203,96,.4); } | |
100% { background-color: rgba(239,203,96,0); } | |
} | |
@-moz-keyframes target-fade { | |
0% { background-color: rgba(239,203,96,0); } | |
30% { background-color: rgba(239,203,96,.7); } | |
100% { background-color: rgba(239,203,96,0); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment