Create static/styles.css
Browse files- static/styles.css +36 -0
static/styles.css
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: 'Roboto', sans-serif;
|
| 3 |
+
background-color: #f8fafc;
|
| 4 |
+
color: #334155;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
.title-font {
|
| 8 |
+
font-family: 'Playfair Display', serif;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
.chat-container {
|
| 12 |
+
height: calc(100vh - 200px);
|
| 13 |
+
overflow-y: auto;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.psycho-bubble {
|
| 17 |
+
background: #fff;
|
| 18 |
+
border-left: 4px solid #6366f1;
|
| 19 |
+
padding: 1rem;
|
| 20 |
+
margin-bottom: 1rem;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.user-bubble {
|
| 24 |
+
background: #6366f1;
|
| 25 |
+
color: #fff;
|
| 26 |
+
padding: 1rem;
|
| 27 |
+
margin-bottom: 1rem;
|
| 28 |
+
border-radius: 0.5rem;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.tone-bubble {
|
| 32 |
+
font-size: 0.85rem;
|
| 33 |
+
color: #64748b;
|
| 34 |
+
margin-top: -0.75rem;
|
| 35 |
+
margin-bottom: 0.5rem;
|
| 36 |
+
}
|