Spaces:
Running
Running
File size: 639 Bytes
100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 |
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 |
/* Minimal custom styling, avoiding explicit background and text colors */
/* General block styling */
.title-block, .description-block, .article-block {
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
text-align: center;
}
/* Title block */
.title-block {
font-size: 28px;
font-weight: bold;
/* No color or background settings to let Gradio handle the theme */
}
/* Description block */
.description-block {
font-size: 18px;
/* No color or background settings */
}
/* Article block */
.article-block {
font-size: 16px;
margin-top: 30px;
/* No color or background settings */
}
|