Update app.py
Browse files
app.py
CHANGED
@@ -136,13 +136,21 @@ h1, h2, p {
|
|
136 |
color: #333; /* Darker color for better visibility */
|
137 |
}
|
138 |
|
139 |
-
/*
|
140 |
.gradio-container .gr-examples-title,
|
141 |
.gradio-container .gr-examples-btn,
|
142 |
.gradio-container .gr-suggestions li {
|
143 |
color: #333 !important; /* Force dark color for examples and suggestions */
|
144 |
}
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
.container {
|
147 |
max-width: 800px;
|
148 |
margin: 0 auto;
|
|
|
136 |
color: #333; /* Darker color for better visibility */
|
137 |
}
|
138 |
|
139 |
+
/* Inline styles to target the example section directly */
|
140 |
.gradio-container .gr-examples-title,
|
141 |
.gradio-container .gr-examples-btn,
|
142 |
.gradio-container .gr-suggestions li {
|
143 |
color: #333 !important; /* Force dark color for examples and suggestions */
|
144 |
}
|
145 |
|
146 |
+
/* Use inline styling for examples section */
|
147 |
+
.gr-examples-title {
|
148 |
+
color: #333 !important; /* Make sure the examples title is visible */
|
149 |
+
}
|
150 |
+
|
151 |
+
.gr-examples-btn {
|
152 |
+
color: #333 !important; /* Make sure example suggestions are visible */
|
153 |
+
}
|
154 |
.container {
|
155 |
max-width: 800px;
|
156 |
margin: 0 auto;
|