JaredBailey commited on
Commit
6fa8650
·
verified ·
1 Parent(s): e5de783

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py CHANGED
@@ -128,6 +128,28 @@ if st.session_state['generate_result'] != 0:
128
 
129
  if st.session_state['show_result'] != 0:
130
  if result == 'Bird':
 
 
 
 
 
 
 
 
 
 
 
131
  st.write(":bird:" + " That's a Bird " + ":bird:")
132
  else:
 
 
 
 
 
 
 
 
 
 
 
133
  st.write(":chipmunk:" + " That's a Squirrel " + ":chipmunk:")
 
128
 
129
  if st.session_state['show_result'] != 0:
130
  if result == 'Bird':
131
+ st.markdown("""
132
+ <style>
133
+ .big-font {
134
+ font-size:30px !important;
135
+ text-align: center;
136
+ }
137
+ </style>
138
+ <div class="big-font">
139
+ ":bird:" + " That's a Bird " + ":bird:"
140
+ </div>
141
+ """, unsafe_allow_html=True)
142
  st.write(":bird:" + " That's a Bird " + ":bird:")
143
  else:
144
+ st.markdown("""
145
+ <style>
146
+ .big-font {
147
+ font-size:30px !important;
148
+ text-align: center;
149
+ }
150
+ </style>
151
+ <div class="big-font">
152
+ ":chipmunk:" + " That's a Squirrel " + ":chipmunk:"
153
+ </div>
154
+ """, unsafe_allow_html=True)
155
  st.write(":chipmunk:" + " That's a Squirrel " + ":chipmunk:")