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

Unified Diff: design/notify.css

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 8, 2012, 5:58 a.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/input.css ('k') | files/background.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: design/notify.css
===================================================================
new file mode 100644
--- /dev/null
+++ b/design/notify.css
@@ -0,0 +1,47 @@
+@keyframes notify_back_animate_in
+{
+ 0% { opacity: 0; }
+ 100% { opacity: 0.2; }
+}
+@keyframes notify_popup_animate_in
+{
+ 0% { opacity: 0; }
+ 100% { opacity: 0.9; }
+}
+@keyframes notify_back_animate_out
+{
+ 0% { opacity: 0.2; }
+ 50% { opacity: 0; }
+ 100% { opacity: 0; }
+}
+@keyframes notify_popup_animate_out
+{
+ 0% { opacity: 0.9; }
+ 50% { opacity: 0; }
+ 100% { opacity: 0; }
+}
+#notification div:first-child {
+ animation: notify_back_animate_in 0.6s ease-in;
+ width:100%;
+ height:100%;
+ opacity: 0.2;
+ background: black;
+ position:fixed;
+ top: 0px;
+ left: 0px;
+}
+#notification div:last-child {
+ animation: notify_popup_animate_in 0.6s ease-in;
+ text-align: center;
+ opacity: 0.9;
+ position:fixed;
+ top:40%;
+ left:30%;
+ width:40%;
+ padding: 8px;
+ width: 30%;
+ min-height: 20%;
+ background-image:-o-linear-gradient(#E0E0E0, #B0B0B0);
+ box-shadow:0px 0px 4px 2px #444444;
+ border-radius:5px;
+}
« no previous file with comments | « design/input.css ('k') | files/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld