aboutsummaryrefslogtreecommitdiff
path: root/src/static/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/static/main.css')
-rw-r--r--src/static/main.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/static/main.css b/src/static/main.css
index a591298..b47803f 100644
--- a/src/static/main.css
+++ b/src/static/main.css
@@ -3,3 +3,12 @@
body {
margin: 0;
}
+
+#LoadingIndicator {
+ animation: spin 1.75s linear infinite;
+}
+
+@keyframes spin {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+} \ No newline at end of file