From 67c1d7d17ee4b313ee1c8bc950c1e6a11064760c Mon Sep 17 00:00:00 2001 From: john-emerson14 Date: Sun, 22 Mar 2020 01:58:58 -0300 Subject: [PATCH] fix: linear-gradient color --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index fa04e73..f936545 100644 --- a/style.css +++ b/style.css @@ -4,7 +4,7 @@ --bgColor: #223344; --accentColor: #E6E6E6; --font: 'Karla', sans-serif; - --delay: .5s; + --delay: .3s; } body { @@ -95,7 +95,7 @@ body { /* animation */ overflow: hidden; - background: linear-gradient(90deg, #000, #fff, #000); + background: linear-gradient(90deg, var(--bgColor), #fff, var(--bgColor)); background-repeat: no-repeat; background-size: 80%; animation: animate 3s linear var(--delay) infinite;