diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-01-09 15:44:06 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-01-09 15:44:06 +0100 |
commit | b717160a90279c21c068d39673c6aafad66dfcae (patch) | |
tree | 01aaf768ebae270cd5f58261d777b374ee1152e6 /python/gui/static/css | |
parent | 75ba4f064a65ebad77d130f160b9469418e49c9f (diff) | |
download | dabmod-b717160a90279c21c068d39673c6aafad66dfcae.tar.gz dabmod-b717160a90279c21c068d39673c6aafad66dfcae.tar.bz2 dabmod-b717160a90279c21c068d39673c6aafad66dfcae.zip |
GUI: Add status to home page
Diffstat (limited to 'python/gui/static/css')
-rw-r--r-- | python/gui/static/css/odr.css | 14 |
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);} +} |