OLD | NEW |
(Empty) | |
| 1 @keyframes donate_animate |
| 2 { |
| 3 0% { opacity: 0; } |
| 4 25% { opacity: 0; } |
| 5 45% { opacity: 1; } |
| 6 85% { opacity: 1; } |
| 7 100% { opacity: 0.5; } |
| 8 } |
| 9 #donate { |
| 10 margin: 0px; |
| 11 position:fixed; |
| 12 bottom: 3px; |
| 13 left: 3px; |
| 14 } |
| 15 #donate img { |
| 16 transition: opacity 0.5s ease-in; |
| 17 opacity: 0.5; |
| 18 animation: donate_animate 12s ease-in; |
| 19 } |
| 20 #donate img:hover { |
| 21 opacity:1; |
| 22 } |
| 23 @keyframes arrow_animate |
| 24 { |
| 25 0% { |
| 26 opacity: 0.75; |
| 27 top: -30px; |
| 28 } |
| 29 100% { |
| 30 opacity: 0; |
| 31 top: 80%; |
| 32 } |
| 33 } |
| 34 #arrow { |
| 35 top: -30px; |
| 36 opacity: 0.7; |
| 37 width: 0; |
| 38 height: 0; |
| 39 border-left: 30px solid transparent; |
| 40 border-right: 30px solid transparent; |
| 41 border-top: 30px solid #0099CC; |
| 42 position:fixed; |
| 43 left: 20px; |
| 44 animation: arrow_animate 5s ease-in; |
| 45 /*animation-delay: 0s;*/ |
| 46 } |
OLD | NEW |