From 5dbfc74c3b1617b13263b137bbedecb70242fb7a Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Fri, 20 May 2022 13:48:30 -0600 Subject: [PATCH] adding a spining animation thing to CSS --- src/resources/css/animations.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/resources/css/animations.css b/src/resources/css/animations.css index 218fe0c..fa45768 100644 --- a/src/resources/css/animations.css +++ b/src/resources/css/animations.css @@ -1,3 +1,11 @@ +.spin { + animation: spin 1.5s linear infinite; +} + +@keyframes spin { + to { transform: rotate(360deg); } +} + /** https://thinkdobecreate.com/articles/css-animating-newly-added-element/ **/ .anim-show {