climateeeeeeee3 / style.css
anekcb's picture
Create style.css
319ada5
/* 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;
}