Spaces:
Sleeping
Sleeping
File size: 1,472 Bytes
1f330df c610257 1f330df c610257 8c9a6b8 1f330df dceceb0 1f330df eea921b 1f330df aaa533e 1f330df 324d04a 1f330df 324d04a 1f330df 324d04a 1f330df 324d04a 1f330df 324d04a |
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
/* Global container + blocks → white background */
.gradio-container,
.gradio-container .app,
.gradio-container .wrap,
.gradio-container .contain,
.block,
.gr-group,
.html-container,
.prose,
#main_panel,
#control_panel {
background: #ffffff !important;
}
/* Control panel spacing */
#control_panel {
padding: 1em !important;
margin: 1em !important;
}
/* Footer styling */
#footer {
text-align: center;
color: gray;
font-size: 1em;
}
/* Any Gradio component block (not hardcoded ids like #component-8) */
[id^="component-"].block,
[id^="component-"].row,
[id^="component-"].form {
padding: 2em !important;
margin: 16px 0 !important;
background: #ffffff !important;
}
/* Body text inside guidance blocks */
[id^="component-"] .prose p {
color: #475569 !important;
line-height: 1.6 !important;
margin-bottom: 12px !important;
font-size: 14px !important;
}
/* Lists inside guidance blocks */
[id^="component-"] .prose ul {
color: #475569 !important;
padding-left: 20px !important;
margin: 12px 0 !important;
}
[id^="component-"] .prose li {
margin-bottom: 6px !important;
line-height: 1.5 !important;
}
/* Inline code blocks inside guidance */
[id^="component-"] .prose code {
background: #e0e7ff !important;
color: #4338ca !important;
padding: 2px 6px !important;
border-radius: 4px !important;
border: 1px solid #c7d2fe !important;
font-family: Monaco, Consolas, monospace !important;
font-size: 13px !important;
}
|