diff options
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 |
