From ea63514852585592fd8615644819c89ee39910cd Mon Sep 17 00:00:00 2001 From: Jim True Date: Fri, 29 Jul 2016 18:39:45 -0400 Subject: [PATCH] Fixing color and staging on Related Content Box #23 --- style.css | 8 ++++++++ style.scss | 9 +++++++++ 2 files changed, 17 insertions(+) diff --git a/style.css b/style.css index 7f9d5c7..ec81c6c 100755 --- a/style.css +++ b/style.css @@ -1262,6 +1262,14 @@ li.social-icon a:focus { color: #7fa035; } /* # Doc Info Sidebar */ +.related-content-box { + background: #73735D; + color: #deddc2; + padding: 10px; } + +.related-content-box h5 { + color: #deddc2; } + .related-content { background: #73735D; color: #deddc2; } diff --git a/style.scss b/style.scss index 4bf795f..6cbef5c 100644 --- a/style.scss +++ b/style.scss @@ -1358,6 +1358,15 @@ li.social-icon a:focus { /* # Doc Info Sidebar */ +.related-content-box { + background: $grey; + color: $sec-highlight; + padding: 10px; +} + +.related-content-box h5 { + color: $sec-highlight; +} .related-content { background: $grey; color: $sec-highlight