Spaces:
Sleeping
Sleeping
File size: 1,806 Bytes
e8cb35e 5f49ddf b26fb37 5f49ddf 0b53e86 67dcd2e 0b53e86 789a89e 5f49ddf ed09d03 5f49ddf 90a4f10 5f49ddf ed09d03 5f49ddf 90a4f10 5f49ddf 3efc095 ed09d03 5f49ddf |
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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
@import url('https://fonts.cdnfonts.com/css/linux-libertine-o');
body {
font-family: 'Linux Libertine O', sans-serif;
}
/* html {
font-size: 14px !important;
} */ */
.user-message {
display: flex;
justify-content: flex-end;
align-items: center;
margin: 10px 0;
color: white;
font-size: 14px;
}
.user-message .stMarkdown {
background: linear-gradient(0.9turn, #d46c4e, #ca8d57);
/* background: linear-gradient(0.9turn, #112c55, #3578cf); */
border-radius: 15px 15px 0px 15px;
padding: 10px;
max-width: 80%;
word-wrap: break-word;
}
.user-avatar {
order: 2;
margin-left: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
align-self: flex-start;
}
.assistant-message {
display: flex;
align-items: center;
margin: 10px 0;
color: #141416;
font-size: 14px;
}
.assistant-message .stMarkdown {
background-color: #dadada;
border-radius: 15px 15px 15px 0px;
padding: 10px;
max-width: 80%;
word-wrap: break-word;
}
.assistant-options {
display: flex;
align-items: center;
gap: 12px;
margin-top: 8px;
color: #666;
}
.assistant-options i {
cursor: pointer;
}
.assistant-options i:hover {
color: #333;
}
.assistant-avatar {
margin-right: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
align-self: flex-start;
}
.logo_area {
display: flex;
justify-content: center;
}
.logo_area img {
margin-top: 50px;
margin-left: 0px auto;
width: 149px;
}
.stChatInput {
font-size: 14px;
}
/* [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;
}
|