From 516b02163df148d3cd8a2b38387541396f64749d Mon Sep 17 00:00:00 2001 From: matt Date: Sat, 8 Nov 2025 15:32:18 +0800 Subject: [PATCH] Update style.css Tweaking the ChatGPT imported styles --- style.css | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 448153c..0d5b093 100644 --- a/style.css +++ b/style.css @@ -7,12 +7,21 @@ div[option\:page-display\:page-id="125"] h1 { .conversation.message { } -.conversation.user-message { - border: 1px solid rgba(0,0,0,0.5); - background-color: rgba(0,0,0,0.1); + +.conversation .user-message { + border: 1px solid rgba(0,0,0,0.1); + background-color: rgba(0,0,0,0.05); margin-left: 3em; margin-right: -1em; + padding: 1em; + border-radius: 1em; } + +.conversation .user-message::before { + content: "You said:"; + font-weight: bold; +} + .conversation.assistant-message { margin-left: -1em; margin-right: 3em;