Spaces:
Sleeping
Sleeping
File size: 1,402 Bytes
319ada5 | 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 | /* Set global styles for body, containers, and titles */
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.title {
font-size: 36px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
text-align: center;
}
/* Style the text input and submit button */
.gradio-form-group {
margin-bottom: 20px;
}
.gradio-input {
display: block;
width: 100%;
padding: 10px;
font-size: 18px;
border-radius: 5px;
border: 2px solid #ccc;
}
.gradio-button {
display: inline-block;
background-color: #333;
color: #fff;
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
}
.gradio-button:hover {
background-color: #444;
}
/* Style the chatbot conversation messages */
.chatbot {
margin-top: 30px;
}
.chat-message {
margin-bottom: 20px;
padding: 10px;
border-radius: 10px;
}
.user-message {
background-color: #c9e6ff;
}
.assistant-message {
background-color: #f0f0f0;
text-align: right;
}
/* Style the chatbot example questions */
.examples {
margin-top: 30px;
}
.example {
display: block;
margin-bottom: 10px;
padding: 10px;
border-radius: 5px;
background-color: #f0f0f0;
cursor: pointer;
}
.example:hover {
background-color: #e0e0e0;
}
|