diff options
| author | metamuffin <metamuffin@yandex.com> | 2022-01-24 20:01:23 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@yandex.com> | 2022-01-24 20:01:23 +0100 |
| commit | a22bdc3821bd53d8e3b198423db3f8d7e8e579f6 (patch) | |
| tree | 59ea451651bfcc95cf3956b4ffb5dc8c03c7b5a0 /public/style/logger.css | |
| parent | 8cbe8e1a92fbf6531ff477b5dff11185c53fd12d (diff) | |
| download | keks-meet-a22bdc3821bd53d8e3b198423db3f8d7e8e579f6.tar keks-meet-a22bdc3821bd53d8e3b198423db3f8d7e8e579f6.tar.bz2 keks-meet-a22bdc3821bd53d8e3b198423db3f8d7e8e579f6.tar.zst | |
really fancy loggin + fonts on my own "cdn"
Diffstat (limited to 'public/style/logger.css')
| -rw-r--r-- | public/style/logger.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/public/style/logger.css b/public/style/logger.css new file mode 100644 index 0000000..77f0d41 --- /dev/null +++ b/public/style/logger.css @@ -0,0 +1,47 @@ +.logger-container { + position: absolute; + top: 0px; + right: 0px; + transition: width 1s; + + background-color: rgba(0, 0, 0, 0.376); + border-radius: 0.2em; + border: 0px solid transparent; + padding: 0.2em; + + +} + +.logger-line { + font-size: 1em; + height: 1.2em; + + animation-name: appear, disappear; + animation-timing-function: linear, linear; + animation-delay: 0s, 3s; + animation-duration: 0.3s, 2s; + animation-fill-mode: forwards, forwards; +} + + +@keyframes appear { + from { + margin-top: -1.2em; + opacity: 0; + } + to { + opacity: 1; + } +} + + + +@keyframes disappear { + from { + opacity: 1; + } + to { + margin-top: -1.2em; + opacity: 0; + } +} |