aboutsummaryrefslogtreecommitdiff
path: root/res/loading.css
diff options
context:
space:
mode:
Diffstat (limited to 'res/loading.css')
-rw-r--r--res/loading.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/res/loading.css b/res/loading.css
new file mode 100644
index 0000000..6a1fb67
--- /dev/null
+++ b/res/loading.css
@@ -0,0 +1,19 @@
+.spinner {
+ /* Shamelessly stolen from https://www.w3schools.com/howto/howto_css_loader.asp */
+ border: 16px solid #d6d6d6; /* Light grey */
+ border-top: 16px solid #3498db; /* Blue */
+ border-radius: 50%;
+ width: 120px;
+ height: 120px;
+ animation: spinner 2s linear infinite;
+}
+
+
+@keyframes spinner {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}