From 791fc9cedd5dccb9a41b76eb8da1b58988beffb4 Mon Sep 17 00:00:00 2001 From: bbaer <bbaer@math.uzh.ch> Date: Thu, 20 Apr 2017 13:25:20 +0200 Subject: [PATCH] css classes for spinning, etc --- less/qfq-bs.css.less | 45 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/less/qfq-bs.css.less b/less/qfq-bs.css.less index 1a4b2021a..fd685d260 100644 --- a/less/qfq-bs.css.less +++ b/less/qfq-bs.css.less @@ -193,4 +193,47 @@ i.@{spinner_class} { // //.text-note { // padding-top: 7px; -//} \ No newline at end of file +//} + +/* classes for toggleable note mockup, bb */ +.qfq-icon-inside { + position: relative; + top: -22px; + left: calc(100% - 26px); +} + +.qfq-margin-top { + margin-top: 10px; +} + +/* spinning icons */ + +.text-large-with-margin { + font-size: 8em; + margin: 0.4em; +} + +.glyphicon-spin { + -webkit-animation: spin 2000ms infinite linear; + animation: spin 2000ms infinite linear; +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} \ No newline at end of file -- GitLab