Revert to version 2f8a204

This commit is contained in:
Flatlogic Bot 2025-11-28 12:23:38 +00:00
parent 9043ce375e
commit 66a149c706

View File

@ -1,11 +1,11 @@
body { body {
background-color: #f4f4f9; background-color: #f8f9fa;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
} }
.hero { .hero {
background: linear-gradient(45deg, #2c3e50, #e67e22); background: linear-gradient(45deg, #6f42c1, #fd7e14);
color: white; color: white;
padding: 100px 0; padding: 100px 0;
text-align: center; text-align: center;
@ -14,13 +14,13 @@ body {
.chat-container { .chat-container {
max-width: 800px; max-width: 800px;
margin: 50px auto; margin: 50px auto;
background-color: #fdfdfd; background-color: #ffffff;
border-radius: 0.75rem; border-radius: 0.75rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
} }
.chat-header { .chat-header {
background-color: #2c3e50; background-color: #6f42c1;
color: white; color: white;
padding: 1rem; padding: 1rem;
border-top-left-radius: 0.75rem; border-top-left-radius: 0.75rem;
@ -43,14 +43,14 @@ body {
} }
.chat-bubble.user { .chat-bubble.user {
background-color: #d4e6f1; background-color: #e9ecef;
color: #2c3e50; color: #212529;
margin-left: auto; margin-left: auto;
text-align: right; text-align: right;
} }
.chat-bubble.ai { .chat-bubble.ai {
background-color: #2c3e50; background-color: #6f42c1;
color: white; color: white;
margin-right: auto; margin-right: auto;
} }
@ -67,11 +67,11 @@ body {
} }
.btn-primary { .btn-primary {
background-color: #2c3e50; background-color: #6f42c1;
border-color: #2c3e50; border-color: #6f42c1;
} }
.btn-primary:hover { .btn-primary:hover {
background-color: #233140; background-color: #5a37a0;
border-color: #233140; border-color: #5a37a0;
} }