diff options
| author | ilotterytea <iltsu@alright.party> | 2025-10-27 15:34:55 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-10-27 15:34:55 +0500 |
| commit | 3f488ebef743cd48373359ab1f1e59d4f2639222 (patch) | |
| tree | 01b4ae0124d984931eb8aaecc24a64614d824d5a /style.css | |
| parent | 8a2b0b0993bb48e2cc9ece10f5d272bd5acfe806 (diff) | |
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -41,6 +41,20 @@ form div { color: gray; } +.perplex { + position: absolute; + top: 0; + left: 0; + animation: perplex-animation 30s forwards; + white-space: nowrap; +} + +.message.perplex, +.message.perplex:nth-child(even) { + background: unset; + border-bottom: unset; +} + .message-thread { color: gray; font-size: 12px; @@ -78,4 +92,14 @@ form div { .message:last-child { border-bottom: none; +} + +@keyframes perplex-animation { + from { + left: 100%; + } + + to { + left: -100%; + } }
\ No newline at end of file |
