28 lines
519 B
CSS
28 lines
519 B
CSS
@import url("https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css");
|
|
|
|
div[option\:page-display\:page-id="125"] h1 {
|
|
display: none;
|
|
}
|
|
|
|
.conversation.message {
|
|
|
|
}
|
|
|
|
.conversation .user-message {
|
|
border: 1px solid rgba(0,0,0,0.1);
|
|
background-color: rgba(0,0,0,0.05);
|
|
margin-left: 3em;
|
|
margin-right: -1em;
|
|
padding: 1em;
|
|
border-radius: 1em;
|
|
}
|
|
|
|
.conversation .user-message::before {
|
|
content: "You said:";
|
|
font-weight: bold;
|
|
}
|
|
|
|
.conversation.assistant-message {
|
|
margin-left: -1em;
|
|
margin-right: 3em;
|
|
}
|