From f4f3a16bca576c202887799066bd896863612e2b Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 24 Oct 2023 15:08:15 +0200 Subject: partial theme implementation --- web/style/js-transition.css | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 web/style/js-transition.css (limited to 'web/style/js-transition.css') diff --git a/web/style/js-transition.css b/web/style/js-transition.css new file mode 100644 index 0000000..dbb80f0 --- /dev/null +++ b/web/style/js-transition.css @@ -0,0 +1,46 @@ +@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; +} -- cgit v1.2.3-70-g09d2