aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/css/dumbymap.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/css/dumbymap.css')
-rw-r--r--src/css/dumbymap.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/css/dumbymap.css b/src/css/dumbymap.css
index f0b4575..4b3aa52 100644
--- a/src/css/dumbymap.css
+++ b/src/css/dumbymap.css
@@ -48,6 +48,16 @@ root {
48 } 48 }
49} 49}
50 50
51@keyframes spin {
52 0% {
53 transform: rotate(0deg);
54 }
55
56 100% {
57 transform: rotate(360deg);
58 }
59}
60
51.external::after { 61.external::after {
52 content: ''; 62 content: '';
53 display: inline-block; 63 display: inline-block;
@@ -747,3 +757,11 @@ textarea .edit-map {
747 font-size: 1.1rem; 757 font-size: 1.1rem;
748 line-height: 1.5; 758 line-height: 1.5;
749} 759}
760
761.with-spinning-circle::after {
762 content: '\21BB';
763 display: inline-block;
764 margin-left: 1rem;
765
766 animation: spin 2s linear infinite;
767}