diff options
| author | winter | 2025-01-18 20:02:39 +0000 |
|---|---|---|
| committer | winter | 2025-01-18 20:02:39 +0000 |
| commit | 66bdcf04f431d615b5fac93e7677e7304888e90c (patch) | |
| tree | d75f1b299e8ed2ff8d2fd6ccd42185cfb06b6729 /static/misc.css | |
| parent | 00ab9734e880219fa68fed98cefda5ce12958e4b (diff) | |
implement settings editor page
Diffstat (limited to 'static/misc.css')
| -rw-r--r-- | static/misc.css | 14 |
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; } |
