Spaces:
Running
Running
File size: 1,199 Bytes
100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 100fc99 1f6e4a8 e805cf3 |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
/* 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 */
}
/* Prominent Submit Button */
.submit-button {
background-color: #007bff !important;
color: white !important;
font-size: 18px !important;
font-weight: bold !important;
padding: 12px 24px !important;
border-radius: 8px !important;
margin: 15px auto !important;
display: block !important;
transition: background-color 0.3s ease !important;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}
.submit-button:hover {
background-color: #0056b3 !important;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
}
|