Spaces:
Sleeping
Sleeping
Truong-Phuc Nguyen
commited on
Commit
•
6e0a891
1
Parent(s):
83194b8
Update static/styles.css
Browse files- static/styles.css +56 -44
static/styles.css
CHANGED
@@ -1,44 +1,56 @@
|
|
1 |
-
.user-message {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
}
|
8 |
-
|
9 |
-
.user-message .stMarkdown {
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
}
|
16 |
-
|
17 |
-
.user-avatar {
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
}
|
24 |
-
|
25 |
-
.assistant-message {
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.user-message {
|
2 |
+
display: flex;
|
3 |
+
justify-content: flex-end;
|
4 |
+
align-items: center;
|
5 |
+
margin: 10px 0;
|
6 |
+
color: white;
|
7 |
+
}
|
8 |
+
|
9 |
+
.user-message .stMarkdown {
|
10 |
+
background-color: #3d92c4;
|
11 |
+
border-radius: 15px;
|
12 |
+
padding: 10px;
|
13 |
+
max-width: 70%;
|
14 |
+
word-wrap: break-word;
|
15 |
+
}
|
16 |
+
|
17 |
+
.user-avatar {
|
18 |
+
order: 2;
|
19 |
+
margin-left: 10px;
|
20 |
+
width: 38px;
|
21 |
+
height: 38px;
|
22 |
+
border-radius: 50%;
|
23 |
+
}
|
24 |
+
|
25 |
+
.assistant-message {
|
26 |
+
display: flex;
|
27 |
+
align-items: center;
|
28 |
+
margin: 10px 0;
|
29 |
+
color: white;
|
30 |
+
}
|
31 |
+
|
32 |
+
.assistant-message .stMarkdown {
|
33 |
+
background-color: #8e2929;
|
34 |
+
border-radius: 15px;
|
35 |
+
padding: 10px;
|
36 |
+
max-width: 70%;
|
37 |
+
word-wrap: break-word;
|
38 |
+
}
|
39 |
+
|
40 |
+
.assistant-avatar {
|
41 |
+
margin-right: 10px;
|
42 |
+
width: 38px;
|
43 |
+
height: 38px;
|
44 |
+
border-radius: 50%;
|
45 |
+
}
|
46 |
+
|
47 |
+
.logo_area {
|
48 |
+
display: flex;
|
49 |
+
justify-content: center;
|
50 |
+
}
|
51 |
+
|
52 |
+
.logo_area img {
|
53 |
+
margin-top: 50px;
|
54 |
+
margin-left: 0px auto;
|
55 |
+
width: 149px;
|
56 |
+
}
|