fschwartzer commited on
Commit
535c2d9
·
verified ·
1 Parent(s): b9b532e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -11
app.py CHANGED
@@ -7,24 +7,22 @@ import sentencepiece as spm
7
 
8
  st.markdown("""
9
  <style>
10
- @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
11
  </style>
12
- <div style='display: flex; flex-direction: column; align-items: left;'>
13
- <div style='display: flex; align-items: left;'>
14
- <div style='width: 20px; height: 20px; background-color: green; border-radius: 50%; margin-right: 2px;'></div>
15
- <div style='width: 20px; height: 20px; background-color: red; border-radius: 50%; margin-right: 2px;'></div>
16
- <div style='width: 20px; height: 20px; background-color: yellow; border-radius: 50%; margin-right: 10px;'></div>
17
- <span style='font-size: 40px; font-weight: bold; font-family: "Kanit", monospace;'>PROTAX</span>
18
  </div>
19
  <div style='text-align: left; width: 100%;'>
20
- <span style='font-size: 20px; font-weight: bold; color: #333; font-family: "Kanit", monospace;'>
21
- <strong>PRO</strong>phet & <strong>TA</strong>pex E<strong>X</strong>plorer
22
- </span>
23
  </div>
24
  </div>
25
  """, unsafe_allow_html=True)
26
 
27
-
28
  # File upload interface
29
  uploaded_file = st.file_uploader("Carregue um arquivo CSV ou XLSX", type=['csv', 'xlsx'])
30
 
 
7
 
8
  st.markdown("""
9
  <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@700&display=swap');
11
  </style>
12
+ <div style='display: flex; flex-direction: column; align-items: flex-start;'>
13
+ <div style='display: flex; align-items: center;'>
14
+ <div style='width: 20px; height: 20px; background-color: green; margin-right: 2px;'></div>
15
+ <div style='width: 20px; height: 20px; background-color: red; margin-right: 2px;'></div>
16
+ <div style='width: 20px; height: 20px; background-color: yellow; margin-right: 10px;'></div>
17
+ <span style='font-size: 40px; font-weight: bold; font-family: "Kanit", sans-serif;'>PROTAX</span>
18
  </div>
19
  <div style='text-align: left; width: 100%;'>
20
+ <span style='font-size: 20px; font-weight: bold; color: #333; font-family: "Kanit", sans-serif'>
21
+ <strong>PRO</strong>phet & <strong>TA</strong>pex E<strong>X</strong>plorer</span>
 
22
  </div>
23
  </div>
24
  """, unsafe_allow_html=True)
25
 
 
26
  # File upload interface
27
  uploaded_file = st.file_uploader("Carregue um arquivo CSV ou XLSX", type=['csv', 'xlsx'])
28