Spaces:
Sleeping
Sleeping
Commit
Β·
0727d5a
1
Parent(s):
c80f969
Update app.py
Browse files
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)
|