jfataphd commited on
Commit
2166834
·
1 Parent(s): 2bba935

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -17
app.py CHANGED
@@ -24,22 +24,9 @@ st.markdown(
24
  unsafe_allow_html=True
25
  )
26
 
27
- st.markdown(
28
- """
29
- <style>
30
- .stTextInput div label {
31
- color: #ffffff !important;
32
- }
33
- .stTextInput div input[type="text"] {
34
- color: #ffffff !important;
35
- }
36
- </style>
37
- """,
38
- unsafe_allow_html=True
39
- )
40
- st.header(":white[My Streamlit App with HTML and CSS]")
41
  # Add some text to the app
42
- st.write(":white[**This is my Streamlit app with HTML and CSS formatting.**]")
43
 
44
  text_input_value = st.text_input("Enter some text", "")
45
  query = text_input_value
@@ -66,7 +53,7 @@ if query:
66
  table.head(10).to_csv("clotting_sim1.csv", index=True)
67
  # short_table = table.head(50)
68
  # print(table)
69
- st.header(f":white[Similar Words to {query}]")
70
 
71
  # calculate the sizes of the squares in the treemap
72
  short_table = table.head(20)
@@ -101,7 +88,7 @@ if query:
101
  print()
102
  df1.head(50).to_csv("clotting_sim2.csv", index=True, header=False)
103
  # time.sleep(2)
104
- st.header(f":white[Similar Genes to {query}]")
105
 
106
  df1 = df1.head(20)
107
  df1.index = 1/df1.index
 
24
  unsafe_allow_html=True
25
  )
26
 
27
+ st.header("My Streamlit App with HTML and CSS")
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  # Add some text to the app
29
+ st.write("**This is my Streamlit app with HTML and CSS formatting.**")
30
 
31
  text_input_value = st.text_input("Enter some text", "")
32
  query = text_input_value
 
53
  table.head(10).to_csv("clotting_sim1.csv", index=True)
54
  # short_table = table.head(50)
55
  # print(table)
56
+ st.header(f"Similar Words to {query}")
57
 
58
  # calculate the sizes of the squares in the treemap
59
  short_table = table.head(20)
 
88
  print()
89
  df1.head(50).to_csv("clotting_sim2.csv", index=True, header=False)
90
  # time.sleep(2)
91
+ st.header(f"Similar Genes to {query}")
92
 
93
  df1 = df1.head(20)
94
  df1.index = 1/df1.index