aboutsummaryrefslogtreecommitdiff
path: root/web/js-transition.css
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-10-21 20:59:02 +0200
committermetamuffin <metamuffin@disroot.org>2023-10-21 20:59:02 +0200
commit704d65109a0a249583e49e600fef848934cfc13e (patch)
treee6bfe1335df4583938af4a0d876aa6022da07a15 /web/js-transition.css
parent539e48e3547040c05a84abc796b1778ab5472a8d (diff)
downloadjellything-704d65109a0a249583e49e600fef848934cfc13e.tar
jellything-704d65109a0a249583e49e600fef848934cfc13e.tar.bz2
jellything-704d65109a0a249583e49e600fef848934cfc13e.tar.zst
reenable js transitions
Diffstat (limited to 'web/js-transition.css')
-rw-r--r--web/js-transition.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/web/js-transition.css b/web/js-transition.css
new file mode 100644
index 0000000..54a899f
--- /dev/null
+++ b/web/js-transition.css
@@ -0,0 +1,16 @@
+@keyframes jst-fadein {
+ from {
+ background-color: transparent;
+ }
+ to {
+ background-color: black;
+ }
+}
+@keyframes jst-fadeout {
+ from {
+ background-color: black;
+ }
+ to {
+ background-color: transparent;
+ }
+}