« get me outta code hell

preview "splash" - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2022-05-23 14:43:50 -0300
committer(quasar) nebula <qznebula@protonmail.com>2022-05-23 14:43:57 -0300
commit6e430bcdf251fbc8cbcfd4c48a8bbc1bf134120f (patch)
treebc86317ade84ae9db76fda86f2c2856d94f938a2
parent6fc58e9134803fc74a24bc0514542ce8ff1d347c (diff)
preview "splash"
-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;
+    }
+}