diff options
Diffstat (limited to 'web/js-transition.css')
-rw-r--r-- | web/js-transition.css | 16 |
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; + } +} |