From: Ian Weller Date: Wed, 16 Sep 2015 17:07:10 +0000 (-0400) Subject: blog feed image padding added X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=45babb089018ea1d226fb08d4b5c3da750f873de;p=WP-Themes%2Fglmthemes%2Fmountpleasant-theme.git blog feed image padding added --- diff --git a/css/app.css b/css/app.css index aae1c0c..855ca60 100644 --- a/css/app.css +++ b/css/app.css @@ -6632,7 +6632,7 @@ ul#sec-nav { .top-bar-section ul li .dropdown li:nth-child(even) { margin: 0 5% 0 0; } .top-bar-section ul li .dropdown li a { - font-size: 0.9375rem; + font-size: 1.0625rem; white-space: pre-wrap; text-transform: uppercase; border-bottom: 1px dotted #000000; } @@ -7131,7 +7131,7 @@ h2#slide-text { .blog-feed-post:nth-child(odd) .blog-feed-img { float: left; - padding: 0; + padding: 0 15px; margin-bottom: 25px; } @media only screen and (max-width: 40em) { .blog-feed-post:nth-child(odd) .blog-feed-img { @@ -7142,7 +7142,7 @@ h2#slide-text { margin: 0 auto; } } .blog-feed-post:nth-child(even) .blog-feed-img { float: right; - padding: 0; + padding: 0 15px; margin-bottom: 15px; } @media only screen and (max-width: 40em) { .blog-feed-post:nth-child(even) .blog-feed-img { diff --git a/scss/_blog.scss b/scss/_blog.scss index af9d857..42bbc73 100644 --- a/scss/_blog.scss +++ b/scss/_blog.scss @@ -90,7 +90,7 @@ &:nth-child(odd) { .blog-feed-img { float: left; - padding: 0; + padding: 0 15px; margin-bottom: 25px; @media #{$small-only} { float: none; @@ -105,7 +105,7 @@ &:nth-child(even) { .blog-feed-img { float: right; - padding: 0; + padding: 0 15px; margin-bottom: 15px; @media #{$small-only} { float: none;