fschwartzer commited on
Commit
f2de8aa
·
verified ·
1 Parent(s): fa81cfc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -7
app.py CHANGED
@@ -6,13 +6,17 @@ import datetime
6
  import sentencepiece as spm
7
 
8
  st.markdown("""
9
- <div style='display: flex; align-items: center;'>
10
- <div style='width: 20px; height: 20px; background-color: green; border-radius: 50%; margin-right: 2px;'></div>
11
- <div style='width: 20px; height: 20px; background-color: red; border-radius: 50%; margin-right: 2px;'></div>
12
- <div style='width: 20px; height: 20px; background-color: yellow; border-radius: 50%; margin-right: 10px;'></div>
13
- <span style='font-size: 40px; font-weight: bold;'>PROTAX</span>
14
- <span style='font-size: 20px; font-weight: bold; color: #333;'>
15
- <strong>PRO</strong>phet & <strong>TA</strong>pex E<strong>X</strong>plorer</span>
 
 
 
 
16
  </div>
17
  """, unsafe_allow_html=True)
18
 
 
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