Skip to content

Commit

Permalink
fix: linear-gradient color
Browse files Browse the repository at this point in the history
  • Loading branch information
johnggli committed Mar 22, 2020
1 parent 9d283d9 commit 67c1d7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--bgColor: #223344;
--accentColor: #E6E6E6;
--font: 'Karla', sans-serif;
--delay: .5s;
--delay: .3s;
}

body {
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 67c1d7d

Please sign in to comment.