drguilhermeapolinario
commited on
Commit
•
d8ec5f4
1
Parent(s):
7c4d4b8
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,13 @@ from streamlit_extras.stylable_container import stylable_container
|
|
10 |
|
11 |
st.set_page_config(page_title='Psicopatologia Geral - Jaspers', layout='wide', page_icon='🧠')
|
12 |
|
|
|
|
|
|
|
|
|
13 |
|
|
|
|
|
14 |
|
15 |
with stylable_container(
|
16 |
key="banner",
|
|
|
10 |
|
11 |
st.set_page_config(page_title='Psicopatologia Geral - Jaspers', layout='wide', page_icon='🧠')
|
12 |
|
13 |
+
STYLE = "style.css"
|
14 |
+
STYLES = "styles.html"
|
15 |
+
with open(STYLE, "r", encoding="utf-8") as f:
|
16 |
+
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
17 |
|
18 |
+
with open(STYLES, "r", encoding="utf-8") as f:
|
19 |
+
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
20 |
|
21 |
with stylable_container(
|
22 |
key="banner",
|