UCS2014 commited on
Commit
3edff9a
·
verified ·
1 Parent(s): 34ceced

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -114,7 +114,7 @@ st.markdown(f"""
114
  /* HERO (logo only) */
115
  .hero {{ text-align:center; margin: 0; }}
116
  .hero img {{
117
- width: 580px; max-width: 92vw; height: auto;
118
  display:block; margin: 0 auto 6px;
119
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.10));
120
  }}
@@ -223,6 +223,20 @@ st.markdown(f"""
223
 
224
  .footer {{ text-align:center; color:#3f4a5a; font-size:0.96em; margin-top: 26px; }}
225
  .footer hr {{ margin: 12px 0; border-color: rgba(0,0,0,.08); }}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
  </style>
227
  """, unsafe_allow_html=True)
228
 
 
114
  /* HERO (logo only) */
115
  .hero {{ text-align:center; margin: 0; }}
116
  .hero img {{
117
+ width: 400px; max-width: 92vw; height: auto;
118
  display:block; margin: 0 auto 6px;
119
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.10));
120
  }}
 
223
 
224
  .footer {{ text-align:center; color:#3f4a5a; font-size:0.96em; margin-top: 26px; }}
225
  .footer hr {{ margin: 12px 0; border-color: rgba(0,0,0,.08); }}
226
+ <style>
227
+ /* Force white text + no underline on the CTA link in ALL states */
228
+ a.btn,
229
+ a.btn:link,
230
+ a.btn:visited {
231
+ color: #ffffff !important;
232
+ text-decoration: none !important;
233
+ }
234
+ a.btn:hover,
235
+ a.btn:active,
236
+ a.btn:focus {
237
+ color: #ffffff !important;
238
+ text-decoration: none !important;
239
+ }
240
  </style>
241
  """, unsafe_allow_html=True)
242