aryan79 commited on
Commit
3ba76f6
·
verified ·
1 Parent(s): 7a182a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -7
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
- /* Use inline styling for examples section */
145
- .gr-examples-title {
146
- color: #333 !important; /* Make sure the examples title is visible */
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
- ["<span style='color: #333;'>machine learning for beginners</span>"],
223
- ["<span style='color: #333;'>advanced data visualization techniques</span>"],
224
- ["<span style='color: #333;'>python programming basics</span>"],
225
- ["<span style='color: #333;'>Business Analytics</span>"]
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