aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/chatbox
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-06-03 20:42:03 +0200
committersD <stoned@derpymail.org>2020-06-03 20:42:03 +0200
commit81c4b1366d12fc1410913f9877dce275550c9dd6 (patch)
treea3b08aa456c29e557300abf01b914b0209d07a89 /webAO/styles/chatbox
parent6e30529030190e9d8503e159243b45bc8801434b (diff)
add dr1 style current track indicator
Diffstat (limited to 'webAO/styles/chatbox')
-rw-r--r--webAO/styles/chatbox/dr1.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/webAO/styles/chatbox/dr1.css b/webAO/styles/chatbox/dr1.css
index ce86a63..52febce 100644
--- a/webAO/styles/chatbox/dr1.css
+++ b/webAO/styles/chatbox/dr1.css
@@ -114,4 +114,41 @@
height: 2em;
background-image: url("chatwaiting_dr1.svg");
background-size: contain;
+}
+
+#client_trackstatus {
+ position: absolute;
+ right: 4%;
+ top: 4%;
+ width: 4em;
+ height: 1.2em;
+ font-family: sans-serif;
+ font-weight: bold;
+ overflow: hidden;
+}
+
+#client_trackstatus::before {
+ content: "𝅘𝅥𝅮";
+ position: absolute;
+ left: 0;
+ top: 0;
+ margin: 0;
+}
+
+#client_trackstatustext {
+ display: inline-block;
+ position: absolute;
+ left: 20%;
+ width: 80%;
+ margin: 0;
+ overflow: hidden;
+ padding-left: 1em;
+ letter-spacing: 0.4em;
+ white-space: nowrap;
+ animation: marquee 10s linear infinite;
+}
+
+@keyframes marquee {
+ from { text-indent: 0% }
+ to { text-indent: -125% }
} \ No newline at end of file