summaryrefslogtreecommitdiff
path: root/static/group-form-loading.html
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-07-06 00:18:28 +0200
committeremkael <emkael@tlen.pl>2017-07-06 00:18:28 +0200
commit927c8dfa1142fb1edc38eaf50d932be8cecccb02 (patch)
tree91381084d6966931188b8bde2c75df87c53d692a /static/group-form-loading.html
parent3bef06bedb9b2dad691356863b7c227ad8ecbd67 (diff)
Tools for calculating group ratings
Diffstat (limited to 'static/group-form-loading.html')
-rw-r--r--static/group-form-loading.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/static/group-form-loading.html b/static/group-form-loading.html
new file mode 100644
index 0000000..837985d
--- /dev/null
+++ b/static/group-form-loading.html
@@ -0,0 +1,16 @@
+<div class="text-center">
+ <i id="form-loading" class="glyphicon glyphicon-refresh"></i>
+</div>
+<style type="text/css">
+ @keyframes rotating {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+ }
+ #form-loading {
+ animation: rotating 1s linear infinite;
+ }
+</style>