From 1d6aa02d56682e04543832a39319144546dbf305 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Thu, 14 Jan 2016 11:28:59 -0500 Subject: [PATCH] small update to gradient --- css/app.css | 6 +++--- scss/mixins/_gradient.scss | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/css/app.css b/css/app.css index dbe05f3..4219897 100644 --- a/css/app.css +++ b/css/app.css @@ -6777,9 +6777,9 @@ main.page-front #content-wrapper { main.page-front #content-wrapper a.action-block img { margin: 35px 0 30px; } } main.page-inside #content-wrapper { - background: -webkit-linear-gradient(top, #2f4d4f 73%, #2f4d4f 84%, rgba(255, 255, 255, 0) 100%); - background: -moz-linear-gradient(center top, #2f4d4f 73%, #2f4d4f 84%, rgba(255, 255, 255, 0) 100%); - background: -ms-linear-gradient(top, #2f4d4f 73%, #2f4d4f 84%, rgba(255, 255, 255, 0) 100%); + background: -webkit-linear-gradient(top, #2f4d4f 73%, #2f4d4f 85%, rgba(255, 255, 255, 0) 100%); + background: -moz-linear-gradient(center top, #2f4d4f 73%, #2f4d4f 85%, rgba(255, 255, 255, 0) 100%); + background: -ms-linear-gradient(top, #2f4d4f 73%, #2f4d4f 85%, rgba(255, 255, 255, 0) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f4d4f', endColorstr='#00ffffff',GradientType=0 ); } main.page-inside #content-wrapper .featured-image { min-height: 525px; diff --git a/scss/mixins/_gradient.scss b/scss/mixins/_gradient.scss index 6863b43..2d075ae 100644 --- a/scss/mixins/_gradient.scss +++ b/scss/mixins/_gradient.scss @@ -12,9 +12,9 @@ // filter: none; } @mixin bodygradient($from, $to1, $to2) { - background: -webkit-linear-gradient(top, $from 73%, $to1 84%, $to2 100%); - background: -moz-linear-gradient(center top, $from 73%, $to1 84%, $to2 100%); - background: -ms-linear-gradient(top, $from 73%, $to1 84%, $to2 100%); + background: -webkit-linear-gradient(top, $from 73%, $to1 85%, $to2 100%); + background: -moz-linear-gradient(center top, $from 73%, $to1 85%, $to2 100%); + background: -ms-linear-gradient(top, $from 73%, $to1 85%, $to2 100%); // filter: progid:DXIm-ageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr'#{$to}'); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$from}', endColorstr='#00ffffff',GradientType=0 ); // filter: none; -- 2.17.1