Web3Daily commited on
Commit
5394d68
1 Parent(s): 9dfdd95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -24
app.py CHANGED
@@ -20,30 +20,10 @@ demo = gr.Interface(
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
  title="Web(GPT)3",
23
- css="""
24
- body {
25
- background-color: white;
26
- }
27
-
28
- input[type="text"],
29
- textarea {
30
- border-color: #4CAF50;
31
- }
32
-
33
- button {
34
- background-color: #4CAF50;
35
- border-color: #4CAF50;
36
- color: white;
37
- }
38
-
39
- .gradio-title {
40
- color: #4CAF50;
41
- }
42
-
43
- .gradio-container {
44
- color: #FFFFFF;
45
- }
46
- """
47
  )
48
 
49
 
 
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
  title="Web(GPT)3",
23
+ css=""".gradio-container {
24
+ background-color: #FFFFFF;
25
+ border-color: #FFFFFF;
26
+ color: white}"""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  )
28
 
29