From: Ian Weller Date: Tue, 12 Jan 2016 13:56:10 +0000 (-0500) Subject: mixin adjustment X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=617b7828f8e95708224082784bc9928e0e91c33b;p=WP-Themes%2Fglmthemes%2Fsaultstemarie-theme.git mixin adjustment --- diff --git a/css/app.css b/css/app.css index ba5db33..65d6ca2 100644 --- a/css/app.css +++ b/css/app.css @@ -6196,9 +6196,9 @@ img.alignleft { max-width: 100%; text-align: center; } #searchform div input.blogbutton { - background: -webkit-linear-gradient(top, #1999ce 75%, #107098 100%); - background: -moz-linear-gradient(center top, #1999ce 75%, #107098 100%); - background: -ms-linear-gradient(top, #1999ce 75%, #107098 100%); + background: -webkit-linear-gradient(top, #1999ce 51%, #107098 100%); + background: -moz-linear-gradient(center top, #1999ce 51%, #107098 100%); + background: -ms-linear-gradient(top, #1999ce 51%, #107098 100%); filter: progid:DXImageTransform.Microsoft.gradient StartColorStr=#1999ce, EndColorStr=#107098; } #blog-side-info { @@ -6556,9 +6556,9 @@ main.page-front { main.page-front { padding: 0; } } main.page-front #content-wrapper { - background: -webkit-linear-gradient(top, #d7e8f0 75%, rgba(255, 255, 255, 0) 100%); - background: -moz-linear-gradient(center top, #d7e8f0 75%, rgba(255, 255, 255, 0) 100%); - background: -ms-linear-gradient(top, #d7e8f0 75%, rgba(255, 255, 255, 0) 100%); + background: -webkit-linear-gradient(top, #d7e8f0 51%, rgba(255, 255, 255, 0) 100%); + background: -moz-linear-gradient(center top, #d7e8f0 51%, rgba(255, 255, 255, 0) 100%); + background: -ms-linear-gradient(top, #d7e8f0 51%, rgba(255, 255, 255, 0) 100%); filter: progid:DXImageTransform.Microsoft.gradient StartColorStr=#d7e8f0, EndColorStr=rgba(255, 255, 255, 0); } main.page-front #content-wrapper #main-content { margin-top: 37px; } @@ -6569,9 +6569,9 @@ main.page-inside { main.page-inside { padding: 0; } } main.page-inside #content-wrapper { - background: -webkit-linear-gradient(top, #d7e8f0 75%, rgba(255, 255, 255, 0) 100%); - background: -moz-linear-gradient(center top, #d7e8f0 75%, rgba(255, 255, 255, 0) 100%); - background: -ms-linear-gradient(top, #d7e8f0 75%, rgba(255, 255, 255, 0) 100%); + background: -webkit-linear-gradient(top, #d7e8f0 51%, rgba(255, 255, 255, 0) 100%); + background: -moz-linear-gradient(center top, #d7e8f0 51%, rgba(255, 255, 255, 0) 100%); + background: -ms-linear-gradient(top, #d7e8f0 51%, rgba(255, 255, 255, 0) 100%); filter: progid:DXImageTransform.Microsoft.gradient StartColorStr=#d7e8f0, EndColorStr=rgba(255, 255, 255, 0); min-height: 250px; } main.page-inside #content-wrapper #main-content { @@ -6645,9 +6645,9 @@ main.page-inside { margin-top: 25px; padding-top: 0; } .blocks #block-1.blocks:before, .blocks #block-2.blocks:before, .blocks #block-3.blocks:before { - background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 75%, #000000 100%); - background: -moz-linear-gradient(center top, rgba(255, 255, 255, 0) 75%, #000000 100%); - background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 75%, #000000 100%); + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 51%, #000000 100%); + background: -moz-linear-gradient(center top, rgba(255, 255, 255, 0) 51%, #000000 100%); + background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 51%, #000000 100%); filter: progid:DXImageTransform.Microsoft.gradient StartColorStr=rgba(255, 255, 255, 0), EndColorStr=#000000; position: absolute; content: ''; @@ -6668,7 +6668,7 @@ main.page-inside { width: 100%; height: 100%; display: block; - background: rgba(0, 0, 0, 0.85); } + background: rgba(0, 0, 0, 0.65); } .blocks #block-1.blocks:hover h2, .blocks #block-2.blocks:hover h2, .blocks #block-3.blocks:hover h2 { position: relative; } .blocks #block-1.blocks:hover p, .blocks #block-2.blocks:hover p, .blocks #block-3.blocks:hover p { diff --git a/scss/_main.scss b/scss/_main.scss index fe0ef75..64352cd 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -127,7 +127,7 @@ main.page-inside { width: 100%; height: 100%; display: block; - background: rgba($black, 0.85); + background: rgba($black, 0.65); } h2 { position: relative; diff --git a/scss/mixins/_gradient.scss b/scss/mixins/_gradient.scss index a8136a3..f9058fb 100644 --- a/scss/mixins/_gradient.scss +++ b/scss/mixins/_gradient.scss @@ -4,8 +4,8 @@ */ @mixin gradient($from, $to) { - background: -webkit-linear-gradient(top, $from 75%, $to 100%); - background: -moz-linear-gradient(center top, $from 75%, $to 100%); - background: -ms-linear-gradient(top, $from 75%, $to 100%); + background: -webkit-linear-gradient(top, $from 51%, $to 100%); + background: -moz-linear-gradient(center top, $from 51%, $to 100%); + background: -ms-linear-gradient(top, $from 51%, $to 100%); filter: progid:DXImageTransform.Microsoft.gradient((StartColorStr=$from, EndColorStr=$to)); }