diff options
author | crupest <crupest@outlook.com> | 2021-06-30 22:46:42 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-30 22:46:42 +0800 |
commit | fdc2d4a971d608bb230cd8aa1e602197c7775231 (patch) | |
tree | d14c60fd52750308edd8b06d8f207a526c360f1a /FrontEnd/src/views/common/Spinner.css | |
parent | a1c593ee087c47937f98dee4459c8d50fdd7b9d7 (diff) | |
download | timeline-fdc2d4a971d608bb230cd8aa1e602197c7775231.tar.gz timeline-fdc2d4a971d608bb230cd8aa1e602197c7775231.tar.bz2 timeline-fdc2d4a971d608bb230cd8aa1e602197c7775231.zip |
...
Diffstat (limited to 'FrontEnd/src/views/common/Spinner.css')
-rw-r--r-- | FrontEnd/src/views/common/Spinner.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/FrontEnd/src/views/common/Spinner.css b/FrontEnd/src/views/common/Spinner.css new file mode 100644 index 00000000..a1de68d2 --- /dev/null +++ b/FrontEnd/src/views/common/Spinner.css @@ -0,0 +1,13 @@ +@keyframes cru-spinner-animation {
+ from {
+ transform: scale(0,0);
+ }
+}
+
+.cru-spinner {
+ display: inline-block;
+ animation: cru-spinner-animation 0.5s infinite alternate;
+ background-color: currentColor;
+ border-radius: 50%;
+ transform-origin: center;
+}
|