summaryrefslogtreecommitdiff
path: root/public/css
diff options
context:
space:
mode:
Diffstat (limited to 'public/css')
-rw-r--r--public/css/style.css29
1 files changed, 28 insertions, 1 deletions
diff --git a/public/css/style.css b/public/css/style.css
index 5e6556c..7984fe5 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -200,4 +200,31 @@ body {
.notice-pad {
margin-top: 20px;
- } \ No newline at end of file
+ }
+
+
+
+.glyphicon-spin {
+ -webkit-animation: spin 1000ms infinite linear;
+ animation: spin 1000ms 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);
+ }
+}