Spaces:
Running
Running
Upload 11 files
Browse files
app.py
CHANGED
@@ -159,5 +159,20 @@ if submit_ad:
|
|
159 |
<p>{generated_ad}</p>
|
160 |
</div>
|
161 |
""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
else:
|
163 |
-
col2.warning("Por favor, completa todos los campos antes de generar el anuncio.")
|
|
|
|
|
|
|
|
|
|
159 |
<p>{generated_ad}</p>
|
160 |
</div>
|
161 |
""", unsafe_allow_html=True)
|
162 |
+
|
163 |
+
# Aplicar estilo para el bot贸n de descarga
|
164 |
+
st.markdown(styles["download_button"], unsafe_allow_html=True)
|
165 |
+
|
166 |
+
# Bot贸n de descarga
|
167 |
+
st.download_button(
|
168 |
+
label="Descargar Anuncio",
|
169 |
+
data=generated_ad,
|
170 |
+
file_name="anuncio_facebook.txt",
|
171 |
+
mime="text/plain"
|
172 |
+
)
|
173 |
else:
|
174 |
+
col2.warning("Por favor, completa todos los campos antes de generar el anuncio.")
|
175 |
+
|
176 |
+
# Agregar firma del autor al final de la p谩gina
|
177 |
+
st.markdown('---')
|
178 |
+
st.markdown('Made with 鉂わ笍 by Jes煤s Cabrera')
|
style.py
CHANGED
@@ -30,5 +30,34 @@ styles = {
|
|
30 |
padding: 15px;
|
31 |
border: 1px solid #ddd;
|
32 |
border-radius: 8px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
"""
|
34 |
}
|
|
|
30 |
padding: 15px;
|
31 |
border: 1px solid #ddd;
|
32 |
border-radius: 8px;
|
33 |
+
""",
|
34 |
+
"download_button": """
|
35 |
+
<style>
|
36 |
+
[data-testid="stDownloadButton"] {
|
37 |
+
text-align: center;
|
38 |
+
display: flex;
|
39 |
+
justify-content: center;
|
40 |
+
margin-top: 5px;
|
41 |
+
width: 80%;
|
42 |
+
margin-left: auto;
|
43 |
+
margin-right: auto;
|
44 |
+
}
|
45 |
+
|
46 |
+
[data-testid="stDownloadButton"] button {
|
47 |
+
width: 100%;
|
48 |
+
border-radius: 5px;
|
49 |
+
height: 3em;
|
50 |
+
background-color: #00D100;
|
51 |
+
color: black;
|
52 |
+
font-weight: bold;
|
53 |
+
transition: all 0.3s ease;
|
54 |
+
border: 1px solid black;
|
55 |
+
}
|
56 |
+
|
57 |
+
[data-testid="stDownloadButton"] button:hover {
|
58 |
+
background-color: #00C000;
|
59 |
+
transform: translateY(-2px);
|
60 |
+
}
|
61 |
+
</style>
|
62 |
"""
|
63 |
}
|