aboutsummaryrefslogtreecommitdiffstats
path: root/python/gui/static/css/odr.css
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-01-09 15:44:06 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-01-09 15:44:06 +0100
commitb717160a90279c21c068d39673c6aafad66dfcae (patch)
tree01aaf768ebae270cd5f58261d777b374ee1152e6 /python/gui/static/css/odr.css
parent75ba4f064a65ebad77d130f160b9469418e49c9f (diff)
downloaddabmod-b717160a90279c21c068d39673c6aafad66dfcae.tar.gz
dabmod-b717160a90279c21c068d39673c6aafad66dfcae.tar.bz2
dabmod-b717160a90279c21c068d39673c6aafad66dfcae.zip
GUI: Add status to home page
Diffstat (limited to 'python/gui/static/css/odr.css')
-rw-r--r--python/gui/static/css/odr.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/gui/static/css/odr.css b/python/gui/static/css/odr.css
new file mode 100644
index 0000000..1710464
--- /dev/null
+++ b/python/gui/static/css/odr.css
@@ -0,0 +1,14 @@
+.glyphicon-refresh-animate {
+ -animation: spin 1.8s infinite linear;
+ -webkit-animation: spin2 1.8s infinite linear;
+}
+
+@-webkit-keyframes spin2 {
+ from { -webkit-transform: rotate(0deg);}
+ to { -webkit-transform: rotate(360deg);}
+}
+
+@keyframes spin {
+ from { transform: scale(1) rotate(0deg);}
+ to { transform: scale(1) rotate(360deg);}
+}