Spaces:
Sleeping
Sleeping
added custom css
Browse files
app.py
CHANGED
|
@@ -59,7 +59,6 @@ def view_model(selected_models):
|
|
| 59 |
"""
|
| 60 |
return netron_html if netron_html else "<p>No valid models selected for visualization.</p>"
|
| 61 |
|
| 62 |
-
# Custom CSS for styling (optional)
|
| 63 |
custom_css = """
|
| 64 |
#run_button {
|
| 65 |
background-color: purple;
|
|
@@ -76,13 +75,13 @@ custom_css = """
|
|
| 76 |
justify-content: center; /* Center-align contents */
|
| 77 |
}
|
| 78 |
.highlighted-text {
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
"""
|
| 85 |
|
|
|
|
| 86 |
with gr.Blocks(css=custom_css) as interface:
|
| 87 |
gr.Markdown("""
|
| 88 |
## NeuralVista
|
|
|
|
| 59 |
"""
|
| 60 |
return netron_html if netron_html else "<p>No valid models selected for visualization.</p>"
|
| 61 |
|
|
|
|
| 62 |
custom_css = """
|
| 63 |
#run_button {
|
| 64 |
background-color: purple;
|
|
|
|
| 75 |
justify-content: center; /* Center-align contents */
|
| 76 |
}
|
| 77 |
.highlighted-text {
|
| 78 |
+
color: blue;
|
| 79 |
+
font-size: 32px; /* Increase font size */
|
| 80 |
+
font-weight: bold;
|
| 81 |
+
}
|
|
|
|
| 82 |
"""
|
| 83 |
|
| 84 |
+
|
| 85 |
with gr.Blocks(css=custom_css) as interface:
|
| 86 |
gr.Markdown("""
|
| 87 |
## NeuralVista
|