fschwartzer commited on
Commit
63c894a
1 Parent(s): f2de8aa

Update app.py

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