Spaces:
Running
Running
File size: 1,271 Bytes
4c3d299 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
.user-message {
display: flex;
justify-content: flex-end;
align-items: center;
margin: 10px 0;
color: white;
}
.user-message .stMarkdown {
background: linear-gradient(0.9turn, #d46c4e, #ca8d57);
/* background: linear-gradient(0.9turn, #112c55, #3578cf); */
border-radius: 15px;
padding: 10px;
max-width: 80%;
word-wrap: break-word;
}
.user-avatar {
order: 2;
margin-left: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
}
.assistant-message {
display: flex;
align-items: center;
margin: 10px 0;
color: black;
}
.assistant-message .stMarkdown {
background-color: #dadada;
border-radius: 15px;
padding: 10px;
max-width: 80%;
word-wrap: break-word;
}
.assistant-avatar {
margin-right: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
}
.logo_area {
display: flex;
justify-content: center;
}
.logo_area img {
margin-top: 50px;
margin-left: 0px auto;
width: 149px;
}
/* [data-testid="baseButton-headerNoPadding"], */
[data-testid="stDecoration"],
/* [data-testid="baseButton-header"], */
[data-testid="stHeader"] {
display: none;
}
[data-testid="stChatInput"],
[data-testid="stChatInputSubmitButton"] {
border-radius: 15px;
}
[data-baseweb="textarea"] {
border-color: transparent;
}
|