Added a pleasant gradient.
authorHarris Lapiroff <harris@chromamine.com>
Thu, 12 May 2011 23:39:20 +0000 (19:39 -0400)
committerHarris Lapiroff <harris@chromamine.com>
Thu, 12 May 2011 23:39:20 +0000 (19:39 -0400)
static/css/screen.css
static/scss/screen.scss

index a1fc8a5..1877405 100644 (file)
@@ -74,6 +74,11 @@ html > body {
 
 body {
   background: #e0e5ef;
+  background: -webkit-gradient(linear, 50% 0%, 50% 250, color-stop(0%, #b4bdcf), color-stop(100%, #e0e5ef));
+  background: -webkit-linear-gradient(top, #b4bdcf 0%, #e0e5ef 250px);
+  background: -moz-linear-gradient(top, #b4bdcf 0%, #e0e5ef 250px);
+  background: -o-linear-gradient(top, #b4bdcf 0%, #e0e5ef 250px);
+  background: linear-gradient(top, #b4bdcf 0%, #e0e5ef 250px);
   color: #333333;
   text-shadow: 0 1px 0 #FFF;
   font-family: Helvetica, Arial, serif; }
index ff293f2..d6a043c 100644 (file)
@@ -18,6 +18,9 @@
 
 body{
        background:$page-background;
+       @include background(
+               linear-gradient(top, desaturate(darken($page-background, 15%), 10%) 0, $page-background 250px)
+       );
        @include body-text;
 }