Update app.py
Browse files
app.py
CHANGED
|
@@ -194,7 +194,7 @@ custom_css = """
|
|
| 194 |
}
|
| 195 |
|
| 196 |
#header {
|
| 197 |
-
font-family: '
|
| 198 |
font-weight: 700;
|
| 199 |
font-size: 2.8em;
|
| 200 |
margin-bottom: 20px;
|
|
@@ -208,7 +208,7 @@ custom_css = """
|
|
| 208 |
# Create Gradio interface with custom Seafoam theme
|
| 209 |
with gr.Blocks(theme=seafoam, title="Log Stock Charts", css=custom_css) as iface:
|
| 210 |
# Use a centered, bold text header with custom font
|
| 211 |
-
gr.Markdown("# Log
|
| 212 |
|
| 213 |
gr.Markdown("Enter a stock ticker and date range to generate a chart.", elem_classes=["center-text"])
|
| 214 |
|
|
|
|
| 194 |
}
|
| 195 |
|
| 196 |
#header {
|
| 197 |
+
font-family: 'Cinzel', serif;
|
| 198 |
font-weight: 700;
|
| 199 |
font-size: 2.8em;
|
| 200 |
margin-bottom: 20px;
|
|
|
|
| 208 |
# Create Gradio interface with custom Seafoam theme
|
| 209 |
with gr.Blocks(theme=seafoam, title="Log Stock Charts", css=custom_css) as iface:
|
| 210 |
# Use a centered, bold text header with custom font
|
| 211 |
+
gr.Markdown("# Stock Log Charts", elem_id="header", elem_classes=["center-text"])
|
| 212 |
|
| 213 |
gr.Markdown("Enter a stock ticker and date range to generate a chart.", elem_classes=["center-text"])
|
| 214 |
|