JeCabrera commited on
Commit
c0eed81
·
verified ·
1 Parent(s): 78301c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +47 -0
app.py CHANGED
@@ -450,10 +450,57 @@ IMPORTANT FINAL REMINDER:
450
  # Inicializar la aplicación Streamlit
451
  st.set_page_config(page_title="Generador de Historias", page_icon=":pencil:", layout="wide")
452
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
453
  # Título y subtítulo
454
  st.markdown("<h1 style='text-align: center;'>Story Genius Maker</h1>", unsafe_allow_html=True)
455
  st.markdown("<h3 style='text-align: center;'>Teje historias inolvidables en segundos, guiado por la magia de la inteligencia artificial que da vida a tus ideas en relatos cautivadores.</h3>", unsafe_allow_html=True)
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  # Crear las columnas para el diseño (40% para la izquierda, 60% para la derecha)
458
  col1, col2 = st.columns([2, 3])
459
 
 
450
  # Inicializar la aplicación Streamlit
451
  st.set_page_config(page_title="Generador de Historias", page_icon=":pencil:", layout="wide")
452
 
453
+ # Ocultar elementos de la interfaz
454
+ st.markdown("""
455
+ <style>
456
+
457
+ /* Reducir espacio superior */
458
+ .block-container {
459
+ padding-top: 1rem;
460
+ padding-bottom: 5rem;
461
+ }
462
+
463
+ /* Ajustar espaciado del título */
464
+ h1 {
465
+ margin-top: -2rem;
466
+ padding-top: 0.5rem;
467
+ }
468
+
469
+ /* Ajustar espaciado del subtítulo */
470
+ h4 {
471
+ margin-top: 0.5rem;
472
+ padding-top: 0rem;
473
+ }
474
+ </style>
475
+ """, unsafe_allow_html=True)
476
+
477
  # Título y subtítulo
478
  st.markdown("<h1 style='text-align: center;'>Story Genius Maker</h1>", unsafe_allow_html=True)
479
  st.markdown("<h3 style='text-align: center;'>Teje historias inolvidables en segundos, guiado por la magia de la inteligencia artificial que da vida a tus ideas en relatos cautivadores.</h3>", unsafe_allow_html=True)
480
 
481
+ # Añadir CSS personalizado para el botón
482
+ st.markdown("""
483
+ <style>
484
+ div.stButton > button {
485
+ background-color: #FFCC00;
486
+ color: black;
487
+ width: 90%;
488
+ height: 60px;
489
+ font-weight: bold;
490
+ font-size: 22px;
491
+ text-transform: uppercase;
492
+ border: 1px solid #000000;
493
+ border-radius: 8px;
494
+ display: block;
495
+ margin: 0 auto;
496
+ }
497
+ div.stButton > button:hover {
498
+ background-color: #FFD700;
499
+ color: black;
500
+ }
501
+ </style>
502
+ """, unsafe_allow_html=True)
503
+
504
  # Crear las columnas para el diseño (40% para la izquierda, 60% para la derecha)
505
  col1, col2 = st.columns([2, 3])
506