Truong-Phuc Nguyen commited on
Commit
85aafd6
1 Parent(s): 9b266f9

Upload 3 files

Browse files
Files changed (3) hide show
  1. static/ai.png +0 -0
  2. static/human.png +0 -0
  3. static/styles.css +44 -0
static/ai.png ADDED
static/human.png ADDED
static/styles.css ADDED
@@ -0,0 +1,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
+ }
30
+
31
+ .assistant-message .stMarkdown {
32
+ background-color: #D9D9D9;
33
+ border-radius: 15px;
34
+ padding: 10px;
35
+ max-width: 70%;
36
+ word-wrap: break-word;
37
+ }
38
+
39
+ .assistant-avatar {
40
+ margin-right: 10px;
41
+ width: 38px;
42
+ height: 38px;
43
+ border-radius: 50%;
44
+ }