summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-10-31 18:05:59 +0500
committerilotterytea <iltsu@alright.party>2025-10-31 18:05:59 +0500
commitd432d08668bd7be74841031d12c3f223b87c11d0 (patch)
treea8b6111a5fa30c011923d15fb7cfda584fbfd866
parentf0da8b89f8168a8a65fcc27a2344440045c09c89 (diff)
feat: chat styleHEADmaster
-rw-r--r--index.html1
-rw-r--r--static/style.css31
2 files changed, 32 insertions, 0 deletions
diff --git a/index.html b/index.html
index de2f7a0..1e21dd8 100644
--- a/index.html
+++ b/index.html
@@ -2,6 +2,7 @@
<html>
<head>
<title>webberino</title>
+ <link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="tabs" id="main-window-tabs"></div>
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..4becf32
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,31 @@
+:root {
+ --message-background: #303034;
+ --message-background-alt: #3c3b43;
+ --message-color: #e9e9e9;
+ --message-border: #202020;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+}
+
+.messages {
+ display: flex;
+ flex-direction: column;
+}
+
+.message {
+ padding: 4px;
+ background: var(--message-background);
+ color: var(--message-color);
+ border-bottom: var(--message-border) solid 1px;
+}
+
+.message:nth-child(even) {
+ background: var(--message-background-alt);
+}
+
+.message:last-child {
+ border-bottom: none;
+} \ No newline at end of file