Update app.py
Browse files
app.py
CHANGED
|
@@ -14,6 +14,30 @@ import ideaGen_Followup
|
|
| 14 |
css_1 = """
|
| 15 |
#warning {background-color: #FFCCCB}
|
| 16 |
.feedback textarea {font-size: 240px !important}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
"""
|
| 18 |
|
| 19 |
ideaGen_demo = gr.Interface(theme=gr.themes.Soft(), fn=ideaGen.ideagen,
|
|
|
|
| 14 |
css_1 = """
|
| 15 |
#warning {background-color: #FFCCCB}
|
| 16 |
.feedback textarea {font-size: 240px !important}
|
| 17 |
+
.container {
|
| 18 |
+
width: 80%;
|
| 19 |
+
margin: 0 auto;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.title {
|
| 23 |
+
font-size: 40px !important;
|
| 24 |
+
font-weight: 600 !important;
|
| 25 |
+
line-height: 50px !important;
|
| 26 |
+
letter-spacing: 0em;
|
| 27 |
+
text-align: center;
|
| 28 |
+
color: #374159 !important;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.subtitle {
|
| 32 |
+
font-size: 2em !important;
|
| 33 |
+
font-style: italic;
|
| 34 |
+
font-weight: 400 !important;
|
| 35 |
+
line-height: 40px !important;
|
| 36 |
+
letter-spacing: 0em;
|
| 37 |
+
text-align: center;
|
| 38 |
+
color: #1d652a !important;
|
| 39 |
+
|
| 40 |
+
}
|
| 41 |
"""
|
| 42 |
|
| 43 |
ideaGen_demo = gr.Interface(theme=gr.themes.Soft(), fn=ideaGen.ideagen,
|