Update app.py
Browse files
app.py
CHANGED
|
@@ -113,12 +113,18 @@ def app():
|
|
| 113 |
width: 200px; /* Ajusta este valor al doble del tamaño original */
|
| 114 |
height: 200px; /* Ajusta este valor al doble del tamaño original */
|
| 115 |
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
""") as demo:
|
| 117 |
gr.Markdown("## Modulo Imaging for Computer Vision", elem_id="centered-title")
|
| 118 |
|
| 119 |
with gr.Row():
|
| 120 |
with gr.Column():
|
| 121 |
-
gr.Markdown("### High Dynamic Range Modulo Imaging for Robust Object Detection in Autonomous Driving", elem_id="centered-text")
|
|
|
|
|
|
|
| 122 |
gr.HTML('<a href="https://openreview.net/pdf?id=2GqZFx2I7s" target="_blank" class="custom-button btn-grey">Article</a>')
|
| 123 |
gr.HTML('<a href="https://github.com/kebincontreras/Modulo_images.git" target="_blank" class="custom-button btn-blue">GitHub</a>')
|
| 124 |
|
|
@@ -182,3 +188,4 @@ if __name__ == "__main__":
|
|
| 182 |
|
| 183 |
|
| 184 |
|
|
|
|
|
|
| 113 |
width: 200px; /* Ajusta este valor al doble del tamaño original */
|
| 114 |
height: 200px; /* Ajusta este valor al doble del tamaño original */
|
| 115 |
}}
|
| 116 |
+
/* Añadir margen inferior al título de la primera columna */
|
| 117 |
+
.first-column-title {{
|
| 118 |
+
margin-bottom: 20px; /* Ajusta este valor según sea necesario */
|
| 119 |
+
}}
|
| 120 |
""") as demo:
|
| 121 |
gr.Markdown("## Modulo Imaging for Computer Vision", elem_id="centered-title")
|
| 122 |
|
| 123 |
with gr.Row():
|
| 124 |
with gr.Column():
|
| 125 |
+
gr.Markdown("### High Dynamic Range Modulo Imaging for Robust Object Detection in Autonomous Driving", elem_id="centered-text", elem_classes="first-column-title")
|
| 126 |
+
# Añadir una línea en blanco
|
| 127 |
+
gr.Markdown(" ")
|
| 128 |
gr.HTML('<a href="https://openreview.net/pdf?id=2GqZFx2I7s" target="_blank" class="custom-button btn-grey">Article</a>')
|
| 129 |
gr.HTML('<a href="https://github.com/kebincontreras/Modulo_images.git" target="_blank" class="custom-button btn-blue">GitHub</a>')
|
| 130 |
|
|
|
|
| 188 |
|
| 189 |
|
| 190 |
|
| 191 |
+
|