diff --git a/styles/animations.css b/styles/animations.css index e300b10..c3ac1fd 100644 --- a/styles/animations.css +++ b/styles/animations.css @@ -6,9 +6,9 @@ @keyframes move-gradient { 0% { - background-position: 0 center + background-position: 0 center; } 100% { - background-position: 100% center + background-position: 100% center; } } diff --git a/styles/variables.css b/styles/variables.css index 0ae619b..11c1d20 100644 --- a/styles/variables.css +++ b/styles/variables.css @@ -3,6 +3,18 @@ --text-primary: rgba(255, 255, 255, 0.8); --text-link: rgba(255, 255, 255, 1); --text-secondary: rgba(255, 255, 255, 0.4); - --fancy-gradient: linear-gradient(100deg, #ff377f 0%, #c984ff 15%, #3971ff 26%, #3971ff 33%, #3971ff 48%, #c984ff 59%, #ff377f 66%, #c984ff 81%, #3971ff 91%, #3971ff 100%); + --fancy-gradient: linear-gradient( + 100deg, + #ff377f 0%, + #c984ff 15%, + #3971ff 26%, + #3971ff 33%, + #3971ff 48%, + #c984ff 59%, + #ff377f 66%, + #c984ff 81%, + #3971ff 91%, + #3971ff 100% + ); --font-family: 'Recursive', monospace; }