Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: design/donate.css

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 2, 2012, 1:15 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « design/default.css ('k') | design/footer.css » ('j') | files/background.js » ('J')

Powered by Google App Engine
This is Rietveld