Update app.py
Browse files
app.py
CHANGED
@@ -141,14 +141,16 @@ h1, h2, p {
|
|
141 |
color: #333 !important; /* Set the color to dark for better contrast */
|
142 |
}
|
143 |
|
144 |
-
/*
|
145 |
-
.gr-examples
|
146 |
-
color: #333 !important;
|
147 |
}
|
148 |
|
|
|
149 |
.gr-examples-btn {
|
150 |
color: #333 !important; /* Make sure example suggestions are visible */
|
151 |
}
|
|
|
152 |
.container {
|
153 |
max-width: 800px;
|
154 |
margin: 0 auto;
|
@@ -219,10 +221,10 @@ iface = gr.Interface(
|
|
219 |
theme="huggingface",
|
220 |
css=custom_css,
|
221 |
examples=[
|
222 |
-
["
|
223 |
-
["
|
224 |
-
["
|
225 |
-
["
|
226 |
],
|
227 |
)
|
228 |
|
|
|
141 |
color: #333 !important; /* Set the color to dark for better contrast */
|
142 |
}
|
143 |
|
144 |
+
/* Customize the appearance of the examples section */
|
145 |
+
.gr-examples {
|
146 |
+
color: #333 !important; /* Ensure examples are visible */
|
147 |
}
|
148 |
|
149 |
+
/* Use inline styling for examples section */
|
150 |
.gr-examples-btn {
|
151 |
color: #333 !important; /* Make sure example suggestions are visible */
|
152 |
}
|
153 |
+
|
154 |
.container {
|
155 |
max-width: 800px;
|
156 |
margin: 0 auto;
|
|
|
221 |
theme="huggingface",
|
222 |
css=custom_css,
|
223 |
examples=[
|
224 |
+
["machine learning for beginners"],
|
225 |
+
["advanced data visualization techniques"],
|
226 |
+
["python programming basics"],
|
227 |
+
["Business Analytics"]
|
228 |
],
|
229 |
)
|
230 |
|