From 923f9992dd00532aa3f3abbba2bce77d232addf8 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Thu, 6 Apr 2017 15:23:47 -0400 Subject: [PATCH] I added the background color to blocks I put the background color for the blocks in and added a bit of padding to help keep them from touching the edges of the background. --- css/app.css | 3 +++ scss/_main.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/css/app.css b/css/app.css index 548438b..3f4314b 100644 --- a/css/app.css +++ b/css/app.css @@ -7000,6 +7000,9 @@ main#golf-template #content-wrapper { main#golf-template #content-wrapper h6 { font-size: 1.4375rem; color: #859878; } + main#golf-template #content-wrapper .block-text { + padding: 0 5px 5px; + background: #859878; } main.search-results #head-img { margin: -280px auto 0; } diff --git a/scss/_main.scss b/scss/_main.scss index 04a482e..f67a896 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -384,6 +384,10 @@ main#golf-template{ font-size: rem-calc(23); color: #859878; } + .block-text { + padding: 0 5px 5px; + background: #859878; + } } } main.search-results { -- 2.17.1