aboutsummaryrefslogtreecommitdiff
path: root/web/js-transition.css
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-10-24 15:08:15 +0200
committermetamuffin <metamuffin@disroot.org>2023-10-24 15:08:15 +0200
commitf4f3a16bca576c202887799066bd896863612e2b (patch)
tree8ddb9cdc47abae7bc615109f241b2cd12e141128 /web/js-transition.css
parentc1afcdc0dc4e59cb2ce1e8c65b69c5647f2132f3 (diff)
downloadjellything-f4f3a16bca576c202887799066bd896863612e2b.tar
jellything-f4f3a16bca576c202887799066bd896863612e2b.tar.bz2
jellything-f4f3a16bca576c202887799066bd896863612e2b.tar.zst
partial theme implementation
Diffstat (limited to 'web/js-transition.css')
-rw-r--r--web/js-transition.css46
1 files changed, 0 insertions, 46 deletions
diff --git a/web/js-transition.css b/web/js-transition.css
deleted file mode 100644
index dbb80f0..0000000
--- a/web/js-transition.css
+++ /dev/null
@@ -1,46 +0,0 @@
-@keyframes jst-fadein {
- from {
- background-color: transparent;
- }
- to {
- background-color: black;
- }
-}
-@keyframes jst-fadeout {
- from {
- background-color: black;
- }
- to {
- background-color: transparent;
- }
-}
-
-.jst-fade {
- position: fixed;
- left: 0px;
- top: 0px;
- width: 100vw;
- height: 100vh;
- z-index: 10;
-}
-.jst-error {
- position: fixed;
- top: 50vh;
- left: 50vw;
- transform: translate(-50%, -50%);
- color: rgb(247, 69, 69);
- font-size: large;
- z-index: 11;
-}
-.jst-spinner {
- position: fixed;
- top: 50vh;
- left: 50vw;
- transform: translate(-50%, -50%);
- color: rgb(252, 255, 78);
- font-size: large;
- z-index: 11;
-}
-nav {
- z-index: 11;
-}