From d432d08668bd7be74841031d12c3f223b87c11d0 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Fri, 31 Oct 2025 18:05:59 +0500 Subject: feat: chat style --- static/style.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 static/style.css (limited to 'static') 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 -- cgit v1.2.3