Update app.py
Browse files
app.py
CHANGED
@@ -18,16 +18,11 @@ def image_to_base64(image_path):
|
|
18 |
|
19 |
st.markdown("""
|
20 |
<style>
|
21 |
-
@
|
22 |
-
|
23 |
-
|
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: '
|
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)
|