From 3f488ebef743cd48373359ab1f1e59d4f2639222 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Mon, 27 Oct 2025 15:34:55 +0500 Subject: feat: perplex chat --- style.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'style.css') diff --git a/style.css b/style.css index bec003a..c0053d1 100644 --- a/style.css +++ b/style.css @@ -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 -- cgit v1.2.3