chatbot / style.css
DataCracker's picture
Update style.css
a52f1c8 verified
* style.css */
body {
background-color: #e8f5e9; /* Light green background */
font-family: Arial, sans-serif;
}
.stFileUploader {
background-color: #000000;
border: 1px solid #000000;
border-radius: 5px;
padding: 10px;
text-align: center;
}
.stButton {
background-color: #4CAF50;
color: white;
border-radius: 5px;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.stButton:hover {
background-color: #45a049;
}
.reportview-container .main .block-container{
padding-top: 0;
padding-right: 0;
padding-left: 0;
padding-bottom: 0;
}
.reportview-container .main {
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
justify-content: flex-start;
align-items: center;
}
.reportview-container {
display: flex;
flex-direction: column;
align-items: center;
}
.question {
text-align: right;
margin-right: 2rem;
color: #2E86C1;
}
.answer {
text-align: left;
margin-left: 2rem;
color: #28B463;
}
.qa-container {
width: 80%;
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 1rem 0;
}
.question-answer-divider {
border-bottom: 1px solid #ddd;
margin: 1rem 0;
width: 80%;
}