Spaces:
Runtime error
Runtime error
Ankur Goyal
commited on
Commit
·
42081d7
1
Parent(s):
3a4d71f
Tweak CSS for answer
Browse files
app.py
CHANGED
|
@@ -239,13 +239,23 @@ gradio-app h2, .gradio-app h2 {
|
|
| 239 |
|
| 240 |
#answer {
|
| 241 |
overflow-y: scroll;
|
| 242 |
-
height: 42px;
|
| 243 |
color: white;
|
| 244 |
background: #666;
|
| 245 |
border-color: #666;
|
| 246 |
font-size: 20px;
|
| 247 |
font-weight: bold;
|
| 248 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 249 |
"""
|
| 250 |
|
| 251 |
with gr.Blocks(css=CSS) as demo:
|
|
|
|
| 239 |
|
| 240 |
#answer {
|
| 241 |
overflow-y: scroll;
|
|
|
|
| 242 |
color: white;
|
| 243 |
background: #666;
|
| 244 |
border-color: #666;
|
| 245 |
font-size: 20px;
|
| 246 |
font-weight: bold;
|
| 247 |
}
|
| 248 |
+
|
| 249 |
+
#answer span {
|
| 250 |
+
color: white;
|
| 251 |
+
}
|
| 252 |
+
|
| 253 |
+
#answer textarea {
|
| 254 |
+
color:white;
|
| 255 |
+
background: #777;
|
| 256 |
+
border-color: #777;
|
| 257 |
+
font-size: 18px;
|
| 258 |
+
}
|
| 259 |
"""
|
| 260 |
|
| 261 |
with gr.Blocks(css=CSS) as demo:
|