Spaces:
Build error
Build error
Upload styles.css
Browse files- styles.css +32 -0
styles.css
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.chat-row {
|
2 |
+
display: flex;
|
3 |
+
margin: 5px;
|
4 |
+
width: 100%;
|
5 |
+
}
|
6 |
+
|
7 |
+
.row-reverse {
|
8 |
+
flex-direction: row-reverse;
|
9 |
+
}
|
10 |
+
|
11 |
+
.chat-bubble {
|
12 |
+
font-family: "Source Sans Pro", sans-serif, "Segoe UI", "Roboto", sans-serif;
|
13 |
+
border: 1px solid transparent;
|
14 |
+
padding: 5px 10px;
|
15 |
+
margin: 0px 7px;
|
16 |
+
max-width: 70%;
|
17 |
+
}
|
18 |
+
|
19 |
+
.ai-bubble {
|
20 |
+
background: rgb(240, 242, 246);
|
21 |
+
border-radius: 10px;
|
22 |
+
}
|
23 |
+
|
24 |
+
.human-bubble {
|
25 |
+
background: linear-gradient(135deg, rgb(0, 178, 255) 0%, rgb(0, 106, 255) 100%);
|
26 |
+
color: white;
|
27 |
+
border-radius: 20px;
|
28 |
+
}
|
29 |
+
|
30 |
+
.chat-icon {
|
31 |
+
border-radius: 5px;
|
32 |
+
}
|