From c736d3218e18cd8e53c0efef3656bc8c1e8d9a19 Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Wed, 28 Jul 2021 04:01:32 +0000 Subject: [PATCH] Included animated css styling. --- src/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/style.css b/src/style.css index 6ab4950..d5dd364 100644 --- a/src/style.css +++ b/src/style.css @@ -898,4 +898,19 @@ button{ } .submitting{ border: 1px solid rgba(0,150,200,1); + background: linear-gradient(-45deg, #2317c7, #3ce77e, #23a6d5, #23d5ab); + background-size: 400% 400%; + animation: submitgradient 1s ease infinite; +} + +@keyframes submitgradient { + 0% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } + 100% { + background-position: 0% 50%; + } } \ No newline at end of file