From dd1c42151eb85eec70a01ff7d9d80e8726029fec Mon Sep 17 00:00:00 2001 From: Chuck Dries Date: Tue, 8 Aug 2017 03:08:00 -0700 Subject: [PATCH] tagline remove text shadow --- css/style.css | 3 +-- sass/style.scss | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/css/style.css b/css/style.css index 582739b..34ee076 100755 --- a/css/style.css +++ b/css/style.css @@ -177,8 +177,7 @@ body { #mast h2 { transition-property: size; transition-duration: .2s; - text-shadow: 1px 2px #19DEFF; - color: #FFFFFF; } + color: #91EFFF; } .small { background: black; } diff --git a/sass/style.scss b/sass/style.scss index 0537b1c..e878a9e 100755 --- a/sass/style.scss +++ b/sass/style.scss @@ -69,9 +69,9 @@ body { } h2 { transition-property: size; - transition-duration: .2s; - text-shadow: 1px 2px #19DEFF; // text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; - color: #FFFFFF; + transition-duration: .2s; // text-shadow: 1px 2px #19DEFF; // text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; + // color: #FFFFFF; + color: #91EFFF; } }