King-B / styles.css
Blood076's picture
Update styles.css
620ee2e verified
raw
history blame
621 Bytes
/* styles.css */
#chatbox {
background-color: #f9f9f9;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#chatbox .gradio-chat {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
}
#chatbox .gradio-chat .user-message {
color: #997bff;
}
#chatbox .gradio-chat .narrator-message {
color: #28a745;
}
.gradio-container {
font-family: 'Arial', sans-serif;
}
.gradio-button {
background-color: #28a745;
color: white;
border-radius: 5px;
padding: 10px 20px;
}
.gradio-button:hover {
background-color: #218838;
}