summaryrefslogtreecommitdiff
path: root/public/assets/css/css.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/css/css.css')
-rw-r--r--public/assets/css/css.css19
1 files changed, 18 insertions, 1 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css
index 184445b..2a2e2a9 100644
--- a/public/assets/css/css.css
+++ b/public/assets/css/css.css
@@ -674,4 +674,21 @@ input.small {
background: rgba(238,238,238,0.4);
border: 1px solid #bbb;
color: #234;
-} \ No newline at end of file
+}
+
+.spinfx {
+ position: fixed;
+ left: calc(50vw - 30vmin);
+ top: calc(50vh - 30vmin);
+ height: 60vmin;
+ width: 60vmin;
+ transform-origin: center center;
+ animation: spinfx 10s infinite;
+ transform: rotateZ(45deg);
+ z-index: -1;
+}
+@keyframes spinfx {
+ 0% { opacity: 0.9; }
+ 50% { opacity: 0.5; }
+ 100% { opacity: 0.9; }
+}