Spaces:
Running
Running
Upload 12 files
Browse files
app.py
CHANGED
@@ -125,9 +125,10 @@ except Exception as e:
|
|
125 |
st.markdown("""
|
126 |
<style>
|
127 |
.robocopy-title {
|
128 |
-
color:
|
129 |
font-weight: bold;
|
130 |
-
font-size:
|
|
|
131 |
}
|
132 |
</style>
|
133 |
""", unsafe_allow_html=True)
|
@@ -149,10 +150,10 @@ def display_initial_header():
|
|
149 |
""", unsafe_allow_html=True)
|
150 |
st.image("robocopy_logo.png", width=300, use_container_width=True)
|
151 |
|
152 |
-
# Título
|
153 |
st.markdown("""
|
154 |
<div style='text-align: center; margin-top: -35px; width: 100%;'>
|
155 |
-
<h1 class='robocopy-title' style='width: 100%; text-align: center; color: white !important;'>PUV Creator</h1>
|
156 |
</div>
|
157 |
""", unsafe_allow_html=True)
|
158 |
|
|
|
125 |
st.markdown("""
|
126 |
<style>
|
127 |
.robocopy-title {
|
128 |
+
color: white !important;
|
129 |
font-weight: bold;
|
130 |
+
font-size: clamp(2.5em, 5vw, 4em);
|
131 |
+
line-height: 1.2;
|
132 |
}
|
133 |
</style>
|
134 |
""", unsafe_allow_html=True)
|
|
|
150 |
""", unsafe_allow_html=True)
|
151 |
st.image("robocopy_logo.png", width=300, use_container_width=True)
|
152 |
|
153 |
+
# Título con diseño responsivo
|
154 |
st.markdown("""
|
155 |
<div style='text-align: center; margin-top: -35px; width: 100%;'>
|
156 |
+
<h1 class='robocopy-title' style='width: 100%; text-align: center; color: white !important; font-size: clamp(2.5em, 5vw, 4em); line-height: 1.2;'>PUV Creator</h1>
|
157 |
</div>
|
158 |
""", unsafe_allow_html=True)
|
159 |
|