Spaces:
Running
Running
Update static/styles.css
Browse files- static/styles.css +9 -20
static/styles.css
CHANGED
@@ -1,26 +1,15 @@
|
|
1 |
-
@import url('https://fonts.cdnfonts.com/css/linux-libertine-o');
|
2 |
-
|
3 |
-
body {
|
4 |
-
font-family: 'Linux Libertine O', sans-serif;
|
5 |
-
}
|
6 |
-
|
7 |
-
html {
|
8 |
-
font-size: 18px !important;
|
9 |
-
} */
|
10 |
-
|
11 |
.user-message {
|
12 |
display: flex;
|
13 |
justify-content: flex-end;
|
14 |
align-items: center;
|
15 |
margin: 10px 0;
|
16 |
color: white;
|
17 |
-
font-size: 14px;
|
18 |
}
|
19 |
|
20 |
.user-message .stMarkdown {
|
21 |
background: linear-gradient(0.9turn, #d46c4e, #ca8d57);
|
22 |
/* background: linear-gradient(0.9turn, #112c55, #3578cf); */
|
23 |
-
border-radius:
|
24 |
padding: 10px;
|
25 |
max-width: 80%;
|
26 |
word-wrap: break-word;
|
@@ -39,15 +28,14 @@ html {
|
|
39 |
display: flex;
|
40 |
align-items: center;
|
41 |
margin: 10px 0;
|
42 |
-
color:
|
43 |
-
font-size: 14px;
|
44 |
}
|
45 |
|
46 |
.assistant-message .stMarkdown {
|
47 |
background-color: #dadada;
|
48 |
-
border-radius:
|
49 |
padding: 10px;
|
50 |
-
max-width:
|
51 |
word-wrap: break-word;
|
52 |
}
|
53 |
|
@@ -86,10 +74,6 @@ html {
|
|
86 |
width: 149px;
|
87 |
}
|
88 |
|
89 |
-
.stChatInput {
|
90 |
-
font-size: 14px;
|
91 |
-
}
|
92 |
-
|
93 |
/* [data-testid="baseButton-headerNoPadding"], */
|
94 |
[data-testid="stDecoration"],
|
95 |
/* [data-testid="baseButton-header"], */
|
@@ -105,3 +89,8 @@ html {
|
|
105 |
[data-baseweb="textarea"] {
|
106 |
border-color: transparent;
|
107 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: linear-gradient(0.9turn, #d46c4e, #ca8d57);
|
11 |
/* background: linear-gradient(0.9turn, #112c55, #3578cf); */
|
12 |
+
border-radius: 20px 20px 0px 20px;
|
13 |
padding: 10px;
|
14 |
max-width: 80%;
|
15 |
word-wrap: break-word;
|
|
|
28 |
display: flex;
|
29 |
align-items: center;
|
30 |
margin: 10px 0;
|
31 |
+
color: black;
|
|
|
32 |
}
|
33 |
|
34 |
.assistant-message .stMarkdown {
|
35 |
background-color: #dadada;
|
36 |
+
border-radius: 20px 20px 20px 0px;
|
37 |
padding: 10px;
|
38 |
+
max-width: 100%;
|
39 |
word-wrap: break-word;
|
40 |
}
|
41 |
|
|
|
74 |
width: 149px;
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
77 |
/* [data-testid="baseButton-headerNoPadding"], */
|
78 |
[data-testid="stDecoration"],
|
79 |
/* [data-testid="baseButton-header"], */
|
|
|
89 |
[data-baseweb="textarea"] {
|
90 |
border-color: transparent;
|
91 |
}
|
92 |
+
|
93 |
+
[data-testid="stExpander"] {
|
94 |
+
max-width: 93%;
|
95 |
+
margin-left: 48px;
|
96 |
+
}
|