blob: 54a899fd5adb646eb2d6e4cc71b3144ee6d4ac89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@keyframes jst-fadein {
from {
background-color: transparent;
}
to {
background-color: black;
}
}
@keyframes jst-fadeout {
from {
background-color: black;
}
to {
background-color: transparent;
}
}
|