From: Anthony Talarico Date: Fri, 1 Mar 2019 19:09:21 +0000 (-0500) Subject: reducing spacing between nav and logo X-Git-Tag: v1.2.52^2~7 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=23a122254042349776ea544acf1432c309d46cb4;p=WP-Themes%2Fmountpleasantwow.git reducing spacing between nav and logo --- diff --git a/css/app.css b/css/app.css index 55d3034..0154b1d 100644 --- a/css/app.css +++ b/css/app.css @@ -6739,9 +6739,9 @@ a[href^=tel] { header#page-header { height: 295px; - background: -webkit-linear-gradient(top, #ffffff 5%, rgba(255, 255, 255, 0) 100%); - background: -moz-linear-gradient(center top, #ffffff 5%, rgba(255, 255, 255, 0) 100%); - background: -ms-linear-gradient(top, #ffffff 5%, rgba(255, 255, 255, 0) 100%); + background: -webkit-linear-gradient(top, #ffffff 8%, rgba(255, 255, 255, 0) 100%); + background: -moz-linear-gradient(center top, #ffffff 8%, rgba(255, 255, 255, 0) 100%); + background: -ms-linear-gradient(top, #ffffff 8%, rgba(255, 255, 255, 0) 100%); position: relative; padding-top: 11px; z-index: 5; } @@ -6874,7 +6874,7 @@ ul#sec-nav { text-align: right; } .top-bar { - margin-top: 105px; } + margin-top: 85px; } @media (max-width: 1055px) { .top-bar { display: none !important; } } @@ -7690,9 +7690,9 @@ h2#slide-text { margin-left: 15px; } #glm-event-wrapper .glm-event-day-row { border: 1px solid #FFFFFF; - background: -webkit-linear-gradient(top, #f2f2f2 5%, #FFFFFF 100%); - background: -moz-linear-gradient(center top, #f2f2f2 5%, #FFFFFF 100%); - background: -ms-linear-gradient(top, #f2f2f2 5%, #FFFFFF 100%); } + background: -webkit-linear-gradient(top, #f2f2f2 8%, #FFFFFF 100%); + background: -moz-linear-gradient(center top, #f2f2f2 8%, #FFFFFF 100%); + background: -ms-linear-gradient(top, #f2f2f2 8%, #FFFFFF 100%); } #glm-event-wrapper .glm-event-day-event { border: 1px solid #CCCCCC; } #glm-event-wrapper .glm-event-day-event:hover { @@ -7708,9 +7708,9 @@ h2#slide-text { #glm-event-wrapper .glm-event-cal { border: 1px solid #690433; } #glm-event-wrapper .glm-event-cal-day-container { - background: -webkit-linear-gradient(top, #FFFFFF 5%, #f2f2f2 100%); - background: -moz-linear-gradient(center top, #FFFFFF 5%, #f2f2f2 100%); - background: -ms-linear-gradient(top, #FFFFFF 5%, #f2f2f2 100%); } + background: -webkit-linear-gradient(top, #FFFFFF 8%, #f2f2f2 100%); + background: -moz-linear-gradient(center top, #FFFFFF 8%, #f2f2f2 100%); + background: -ms-linear-gradient(top, #FFFFFF 8%, #f2f2f2 100%); } #glm-event-wrapper .glm-event-cal-month { background-color: #690433; color: #fff; } diff --git a/scss/_topbar.scss b/scss/_topbar.scss index bc37a07..1c112c7 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -18,7 +18,7 @@ } } .top-bar { - margin-top: 105px; + margin-top: 85px; @media (max-width: 1055px) { display: none !important; } diff --git a/scss/mixins/_gradient.scss b/scss/mixins/_gradient.scss index ad1f3d0..c5da59a 100644 --- a/scss/mixins/_gradient.scss +++ b/scss/mixins/_gradient.scss @@ -4,7 +4,7 @@ */ @mixin gradient($from, $to) { - background: -webkit-linear-gradient(top, $from 5%, $to 100%); - background: -moz-linear-gradient(center top, $from 5%, $to 100%); - background: -ms-linear-gradient(top, $from 5%, $to 100%); + background: -webkit-linear-gradient(top, $from 8%, $to 100%); + background: -moz-linear-gradient(center top, $from 8%, $to 100%); + background: -ms-linear-gradient(top, $from 8%, $to 100%); } \ No newline at end of file