summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css24
1 files changed, 24 insertions, 0 deletions
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