saherPervaiz commited on
Commit
9ea96c4
·
verified ·
1 Parent(s): 240a1f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -65,13 +65,24 @@ def get_health_articles(query):
65
 
66
  # Streamlit app layout
67
  def main():
68
- # Set a background color
69
  st.markdown(
70
  """
71
  <style>
72
  .stApp {
73
  background-color: #F4F4F9;
74
  }
 
 
 
 
 
 
 
 
 
 
 
75
  </style>
76
  """,
77
  unsafe_allow_html=True
 
65
 
66
  # Streamlit app layout
67
  def main():
68
+ # Set a background color and style
69
  st.markdown(
70
  """
71
  <style>
72
  .stApp {
73
  background-color: #F4F4F9;
74
  }
75
+ .stButton>button {
76
+ background-color: #6200EE;
77
+ color: white;
78
+ font-size: 18px;
79
+ }
80
+ .stSlider>div>div>span {
81
+ color: #6200EE;
82
+ }
83
+ .stTextInput>div>div>input {
84
+ background-color: #E0E0E0;
85
+ }
86
  </style>
87
  """,
88
  unsafe_allow_html=True