From 9500f10ed3e9c18529b1bf91e96fa16f9f926a2f Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 14 Aug 2012 23:29:04 +0200 Subject: addjusted animations --- module/web/static/css/omniwindow.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'module/web/static') diff --git a/module/web/static/css/omniwindow.css b/module/web/static/css/omniwindow.css index 12f4d451c..2117a77e0 100644 --- a/module/web/static/css/omniwindow.css +++ b/module/web/static/css/omniwindow.css @@ -5,7 +5,7 @@ width: 100%; position: absolute; left: 0; - top: 0; + top: 0; /* TODO change gradient at all browser */ background: -moz-radial-gradient(center, ellipse cover, rgba(127,127,0,0) 0%, rgba(127,127,127,0.9) 100%); background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(127,127,127,0)), color-stop(100%,rgba(127,127,127,0.9))); background: -webkit-radial-gradient(center, ellipse cover, rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%); @@ -13,7 +13,7 @@ background: -ms-radial-gradient(center, ellipse cover, rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%); background: radial-gradient(center, ellipse cover, rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007f7f7f', endColorstr='#e67f7f7f',GradientType=1 ); - z-index: 50; + z-index: 50; } /* Default class for both hidden overlay and modal window */ @@ -35,7 +35,6 @@ .window-container { background: #fcfcfc; opacity: 0; - margin: 8em auto; width: 500px; padding: 10px 20px 20px; text-align: left; -- cgit v1.2.3 From dc1674c73c7e3ca24ea651e15fa7098199b2a3db Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 15 Aug 2012 17:23:09 +0200 Subject: fancier colors for background --- module/web/static/css/omniwindow.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/web/static') diff --git a/module/web/static/css/omniwindow.css b/module/web/static/css/omniwindow.css index 2117a77e0..4947ea3c7 100644 --- a/module/web/static/css/omniwindow.css +++ b/module/web/static/css/omniwindow.css @@ -6,7 +6,8 @@ position: absolute; left: 0; top: 0; /* TODO change gradient at all browser */ - background: -moz-radial-gradient(center, ellipse cover, rgba(127,127,0,0) 0%, rgba(127,127,127,0.9) 100%); + background: -moz-radial-gradient(center, ellipse cover, rgba(236,208,66,0) 0%, rgba(40,119,171,0.9) 100%); + /*background: -moz-radial-gradient(center, ellipse cover, rgba(127,127,0,0) 0%, rgba(127,127,127,0.9) 100%);*/ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(127,127,127,0)), color-stop(100%,rgba(127,127,127,0.9))); background: -webkit-radial-gradient(center, ellipse cover, rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%); background: -o-radial-gradient(center, ellipse cover, rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%); -- cgit v1.2.3