From 471bf2fb103066329e8f618dc37da5e7108fcc3a Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Wed, 8 Feb 2017 13:27:34 -0500 Subject: [PATCH] change bg color --- scss/page/_watch.scss | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/scss/page/_watch.scss b/scss/page/_watch.scss index ab3c9a577..01b3b7b93 100644 --- a/scss/page/_watch.scss +++ b/scss/page/_watch.scss @@ -33,18 +33,21 @@ opacity: 1; } +$video-back-background: #333; +$video-back-size: 20px; + .video__back-label-arrow { - color: darken($color-primary, 5%); - font-size: 20px; + color: $video-back-background; + font-size: $video-back-size; } .video__back-label-content { display: inline-block; margin-left: -2px; - font-size: 20px; - padding: 10px; + font-size: $video-back-size; + padding: $spacing-vertical / 2; border-radius: 3px; - background-color: darken($color-primary, 5%); + background-color: $video-back-background; color: #fff; pointer-events: none; }