Spaces:
Sleeping
Sleeping
/* 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 ; /* Ensure the logo size is applied */ | |
display: block; | |
object-fit: contain; | |
} | |
/* Title styling */ | |
.title .prose p{ | |
font-size: 28px ; /* 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 ; /* Specifically target the paragraph inside Gradio's prose class */ | |
text-align: center; | |
margin-top: 20px; | |
} | |