Bavarder/src/style.css

41 lines
590 B
CSS
Raw Normal View History

2023-07-19 19:29:17 +05:30
.small-pill {
border-radius: 18px;
}
.user{
background-color: rgba(61, 152, 255,0.03);
}
.assistant{
background-color: rgba(184, 134, 17,0.02);
}
2023-07-20 20:13:32 +05:30
.chat-entry {
background: rgba(0, 0, 0, 0.08);
}
2023-07-19 19:29:17 +05:30
.message-bubble {
color: @window_fg_color;
2023-07-20 20:13:32 +05:30
border-radius: 12px;
2023-07-19 19:29:17 +05:30
padding: 9px;
background-color: mix(@window_bg_color, @window_fg_color, .05);
}
.message-bubble-user {
background-color: alpha(@accent_bg_color, 0.3);
color: @card_fg_color;
}
.avatar-user {
2023-07-20 20:13:32 +05:30
opacity: 1;
2023-07-19 19:29:17 +05:30
}
.timestamp {
2023-07-20 20:13:32 +05:30
font-size: 9pt;
2023-07-19 19:29:17 +05:30
padding-left: 6px;
}
.sourceview {
font-family: monospace;
}