wrapper228 commited on
Commit
19bf1f9
1 Parent(s): 09ffd87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -40,6 +40,8 @@ st.image(image)
40
  st.markdown("##### This app predicts the probabilities of the article belonging to the following topics: \'biology\', \'computer science\', \'economics\', \'electrics\', \'finance\', \'math\', \'physics\', \'statistics\'.")
41
  st.markdown("##### To get an article topic prediction, please write down it's title, abstract, or both.")
42
 
 
 
43
  title = st.text_area("Write article title:", height=30, unsafe_allow_html=True)
44
 
45
  abstract = st.text_area("Write article abstract:", height=60, unsafe_allow_html=True)
 
40
  st.markdown("##### This app predicts the probabilities of the article belonging to the following topics: \'biology\', \'computer science\', \'economics\', \'electrics\', \'finance\', \'math\', \'physics\', \'statistics\'.")
41
  st.markdown("##### To get an article topic prediction, please write down it's title, abstract, or both.")
42
 
43
+ st.markdown('<style>textarea { background: gray !important;}</style>', unsafe_allow_html=True)
44
+
45
  title = st.text_area("Write article title:", height=30, unsafe_allow_html=True)
46
 
47
  abstract = st.text_area("Write article abstract:", height=60, unsafe_allow_html=True)