aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/misc.css
diff options
context:
space:
mode:
authorwinter2025-01-18 20:02:39 +0000
committerwinter2025-01-18 20:02:39 +0000
commit66bdcf04f431d615b5fac93e7677e7304888e90c (patch)
treed75f1b299e8ed2ff8d2fd6ccd42185cfb06b6729 /static/misc.css
parent00ab9734e880219fa68fed98cefda5ce12958e4b (diff)
implement settings editor page
Diffstat (limited to 'static/misc.css')
-rw-r--r--static/misc.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/static/misc.css b/static/misc.css
index ff9fe99..9bf9490 100644
--- a/static/misc.css
+++ b/static/misc.css
@@ -93,6 +93,20 @@ pre {
text-wrap: wrap;
}
+.temporaryIndicator {
+ color: var(--clr-positive);
+ animation: fadeOut 1s forwards;
+ animation-delay: 2s;
+}
+@keyframes fadeOut {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+
[hidden] {
display: none;
}