diff --git a/static/css/style.css b/static/css/style.css index 14191f4..baa07a4 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -93,4 +93,18 @@ a { .logo { width: 100%; +} + +.icn-spinner { + animation: spin-animation 0.9s infinite; + display: inline-block; +} + +@keyframes spin-animation { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } } \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 91ff3b7..d7863c6 100644 --- a/templates/base.html +++ b/templates/base.html @@ -18,8 +18,8 @@