Demo_Chatbot / app /css /styles.css
nmtan2001's picture
Upload folder using huggingface_hub
2028cec verified
raw
history blame contribute delete
733 Bytes
/* Flex container for logo and title */
.header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
}
/* Make the logo bigger */
.logo-image img {
height: 120px !important; /* Ensure the logo size is applied */
display: block;
object-fit: contain;
}
/* Title styling */
.title .prose p{
font-size: 28px !important; /* Force the title font size */
font-weight: bold;
margin: 0;
text-align: center;
}
/* More specific targeting for description to override Gradio */
.description .prose p {
font-size: 18px !important; /* Specifically target the paragraph inside Gradio's prose class */
text-align: center;
margin-top: 20px;
}