diff options
author | metamuffin <metamuffin@disroot.org> | 2023-10-03 14:24:52 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-10-03 14:24:52 +0200 |
commit | 6b636bc73b8e44841d76a14fd3cb23af647b7165 (patch) | |
tree | b38518eee2cd2e2c822b218345cd73aecef7e0a6 /web/js-player.css | |
parent | 9f97111e2f2b89fa5fcb2ff0dd69a62e31ea381f (diff) | |
download | jellything-6b636bc73b8e44841d76a14fd3cb23af647b7165.tar jellything-6b636bc73b8e44841d76a14fd3cb23af647b7165.tar.bz2 jellything-6b636bc73b8e44841d76a14fd3cb23af647b7165.tar.zst |
nice logger
Diffstat (limited to 'web/js-player.css')
-rw-r--r-- | web/js-player.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/web/js-player.css b/web/js-player.css index 3df8cde..3bb8613 100644 --- a/web/js-player.css +++ b/web/js-player.css @@ -86,3 +86,40 @@ .jsp-stats pre { margin: 0.1em; } + +.jsp .jsh-log { + position: absolute; + bottom: var(--csize); + left: 0px; +} +.jsp .jsh-log-line { + font-size: 1em; + height: 1.2em; + animation-name: appear; + animation-timing-function: linear; + animation-duration: 0.5s; + animation-fill-mode: forwards; +} +.jsp .jsh-log-line-disappear { + animation-name: disappear; + animation-timing-function: linear; + animation-duration: 0.2s; + animation-fill-mode: forwards; +} + +@keyframes appear { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes disappear { + from { + opacity: 1; + } + to { + opacity: 0; + } +} |