summaryrefslogtreecommitdiff
path: root/www/styles/main-style.css
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-02-05 17:42:58 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-02-05 17:42:58 (GMT)
commit8f3e1153bdc0297038340c0ec559dc622065c232 (patch)
treefbbb4af0d237d22e5716f11023e04ca72bc29436 /www/styles/main-style.css
parent5a577416e669d3ae8d4f26947367a08540bc9a03 (diff)
instant feedback for jingle action buttons
Diffstat (limited to 'www/styles/main-style.css')
-rw-r--r--www/styles/main-style.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/www/styles/main-style.css b/www/styles/main-style.css
index 8a4793f..5b8c5db 100644
--- a/www/styles/main-style.css
+++ b/www/styles/main-style.css
@@ -97,3 +97,9 @@ body {
.text-center {
text-align: center;
}
+
+.spin {
+ animation: spin 2s linear infinite;
+}
+
+@keyframes spin { 100% { transform:rotate(360deg); } }