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

Unified Diff: design/donate.css

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 2, 2012, 1:15 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « design/default.css ('k') | design/footer.css » ('j') | files/background.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: design/donate.css
===================================================================
new file mode 100644
--- /dev/null
+++ b/design/donate.css
@@ -0,0 +1,46 @@
+@keyframes donate_animate
+{
+ 0% { opacity: 0; }
+ 25% { opacity: 0; }
+ 45% { opacity: 1; }
+ 85% { opacity: 1; }
+ 100% { opacity: 0.5; }
+}
+#donate {
+ margin: 0px;
+ position:fixed;
+ bottom: 3px;
+ left: 3px;
+}
+#donate img {
+ transition: opacity 0.5s ease-in;
+ opacity: 0.5;
+ animation: donate_animate 12s ease-in;
+}
+#donate img:hover {
+ opacity:1;
+}
+@keyframes arrow_animate
+{
+ 0% {
+ opacity: 0.75;
+ top: -30px;
+ }
+ 100% {
+ opacity: 0;
+ top: 80%;
+ }
+}
+#arrow {
+ top: -30px;
+ opacity: 0.7;
+ width: 0;
+ height: 0;
+ border-left: 30px solid transparent;
+ border-right: 30px solid transparent;
+ border-top: 30px solid #0099CC;
+ position:fixed;
+ left: 20px;
+ animation: arrow_animate 5s ease-in;
+ /*animation-delay: 0s;*/
+}
« 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