aboutsummaryrefslogtreecommitdiff
path: root/web/style/js-transition.css
blob: dbb80f00b2a276a0286dc45a1b83f7d125835bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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;
}