palitrajarshi commited on
Commit
0727d5a
β€’
1 Parent(s): c80f969

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
app.py CHANGED
@@ -14,7 +14,20 @@ def main():
14
 
15
  #st.sidebar.title("😎")
16
  st.sidebar.image('./resume_screening.jpg',width=300, use_column_width=True)
17
-
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  job_description = st.text_area("Please paste the 'JOB DESCRIPTION' here...πŸ“",key="1")
19
  document_count = st.text_input("No.of 'RESUMES' to return",key="2")
20
  # Upload the Resumes (pdf files)
 
14
 
15
  #st.sidebar.title("😎")
16
  st.sidebar.image('./resume_screening.jpg',width=300, use_column_width=True)
17
+
18
+ # Applying Styling
19
+ st.markdown("""
20
+ <style>
21
+ div.stButton > button:first-child {
22
+ background-color: #0099ff;
23
+ color:#ffffff;
24
+ }
25
+ div.stButton > button:hover {
26
+ background-color: #00ff00;
27
+ color:#FFFFFF;
28
+ }
29
+ </style>""", unsafe_allow_html=True)
30
+
31
  job_description = st.text_area("Please paste the 'JOB DESCRIPTION' here...πŸ“",key="1")
32
  document_count = st.text_input("No.of 'RESUMES' to return",key="2")
33
  # Upload the Resumes (pdf files)