dmolino commited on
Commit
9b97177
·
verified ·
1 Parent(s): bd6bb23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -9
app.py CHANGED
@@ -18,16 +18,11 @@ def image_to_base64(image_path):
18
 
19
  st.markdown("""
20
  <style>
21
- @font-face {
22
- font-family: 'Palatino';
23
- font-style: normal;
24
- font-weight: 400;
25
- src: local('Palatino Linotype'), local('Book Antiqua'),
26
- url(https://fonts.gstatic.com/s/cardo/v22/wlp_gwIBjINFON1YNFX6WcrrlQ.ttf) format('truetype');
27
- }
28
- /* Applica il font a tutto */
29
  html, body, [class*="st"] {
30
- font-family: 'Palatino', serif;
31
  }
32
  </style>
33
  """, unsafe_allow_html=True)
 
18
 
19
  st.markdown("""
20
  <style>
21
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
22
+
23
+ /* Apply the font to everything */
 
 
 
 
 
24
  html, body, [class*="st"] {
25
+ font-family: 'Roboto', sans-serif;
26
  }
27
  </style>
28
  """, unsafe_allow_html=True)