« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/static/site.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/static/site.css b/src/static/site.css
index 53a2ad9..fc60c23 100644
--- a/src/static/site.css
+++ b/src/static/site.css
@@ -984,3 +984,22 @@ html[data-language-code=preview-en][data-url-key="localized.home"] #content h1::
     display: block;
     content: "(Preview Build)";
 }
+
+html[data-language-code=preview-en] #header h2 > :first-child::before {
+    content: "(Preview Build! ✨) ";
+    animation: preview-notice 4s infinite;
+}
+
+@keyframes preview-notice {
+    0% {
+        color: #cc5500;
+    }
+
+    50% {
+        color: #ffaa00;
+    }
+
+    100% {
+        color: #cc5500;
+    }
+}