fschwartzer commited on
Commit
3910b68
1 Parent(s): 97d5f40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -3,8 +3,20 @@ import pandas as pd
3
 
4
  df = pd.read_csv('last_results.csv')
5
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  with st.sidebar:
7
- st.markdown('Previsões de Receitas')
8
  selected_instituicao = st.selectbox('Select Instituição', df['Instituição'].unique())
9
  selected_conta = st.selectbox('Select Conta', df['Conta'].unique())
10
 
 
3
 
4
  df = pd.read_csv('last_results.csv')
5
 
6
+ title_html = """
7
+ <style>
8
+ @font-face {font-family: 'Quicksand';
9
+ src: url('font/Quicksand-VariableFont_wght.ttf') format('truetype');
10
+ }
11
+ body {{
12
+ font-family: 'Quicksand', sans-serif;
13
+ }}
14
+ </style>
15
+ <span style='color: red; font-size: 30px;'>PREVISÕES DE RECEITAS</span>
16
+ """
17
+
18
  with st.sidebar:
19
+ st.markdown(title_html, unsafe_allow_html=True)
20
  selected_instituicao = st.selectbox('Select Instituição', df['Instituição'].unique())
21
  selected_conta = st.selectbox('Select Conta', df['Conta'].unique())
22