Web3Daily commited on
Commit
60d9524
1 Parent(s): cb2e1a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -19,8 +19,14 @@ demo = gr.Interface(
19
  fn=CustomChatGPT,
20
  inputs=gr.Textbox(label="Insert jargon here (ask a question):", placeholder="E.g. What are gas fees?"),
21
  outputs=gr.Textbox(label="Get a simple answer in return:"),
22
- css="gr.Textbox {background-color: white;}",
23
-
 
 
 
 
 
 
24
  title="Web(GPT)3"
25
 
26
  )
 
19
  fn=CustomChatGPT,
20
  inputs=gr.Textbox(label="Insert jargon here (ask a question):", placeholder="E.g. What are gas fees?"),
21
  outputs=gr.Textbox(label="Get a simple answer in return:"),
22
+ css="""
23
+ .input_textbox, .output_textbox { /* Target both input and output textboxes */
24
+ color: white;
25
+ background-color: #2c2c2c; /* Add background color */
26
+ font-family: 'Arial', sans-serif; /* Change the font */
27
+ font-size: 16px; /* Change the font size */
28
+ }
29
+ """,
30
  title="Web(GPT)3"
31
 
32
  )