Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -100,6 +100,21 @@ def clear_callback():
|
|
100 |
st.session_state["output"] = ""
|
101 |
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
col1, col2, col3, col4 = st.columns([1, 1, 1, 1])
|
104 |
with col1:
|
105 |
st.button("Demo: immunology", on_click=demo_immunology_callback)
|
|
|
100 |
st.session_state["output"] = ""
|
101 |
|
102 |
|
103 |
+
st.markdown(
|
104 |
+
"""<style>
|
105 |
+
.css-ocqkz7 > div:nth-child(4) button {
|
106 |
+
background-color: #A0A0A0;
|
107 |
+
}
|
108 |
+
.css-ocqkz7 > div:nth-child(4) button:hover {
|
109 |
+
color: #FF6961;
|
110 |
+
}
|
111 |
+
.css-ocqkz7 > div:nth-child(4) button:active {
|
112 |
+
background-color: #FAA0A0;
|
113 |
+
color: #FF6961;
|
114 |
+
}
|
115 |
+
</style>""",
|
116 |
+
unsafe_allow_html=True,
|
117 |
+
)
|
118 |
col1, col2, col3, col4 = st.columns([1, 1, 1, 1])
|
119 |
with col1:
|
120 |
st.button("Demo: immunology", on_click=demo_immunology_callback)
|