Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -96,14 +96,27 @@ def process_skill_gap(resume_pdf, jd_pdf):
|
|
| 96 |
|
| 97 |
with gr.Blocks() as demo:
|
| 98 |
gr.HTML("""
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
|
| 108 |
gr.Markdown("# 🧠 AI Skill Gap Checker")
|
| 109 |
gr.Markdown("Upload your **Resume PDF** and **Job Description PDF** below. The AI will analyze your skill match and generate an improvement report. 📄")
|
|
|
|
| 96 |
|
| 97 |
with gr.Blocks() as demo:
|
| 98 |
gr.HTML("""
|
| 99 |
+
<style>
|
| 100 |
+
body {
|
| 101 |
+
background-color: #121212;
|
| 102 |
+
color: #ffffff;
|
| 103 |
+
}
|
| 104 |
+
.gradio-container {
|
| 105 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 106 |
+
color: #ffffff;
|
| 107 |
+
}
|
| 108 |
+
h1, h2, h3, h4, h5, h6, p, label, textarea, input, .gr-textbox, .gr-button {
|
| 109 |
+
color: #ffffff !important;
|
| 110 |
+
background-color: #1e1e1e !important;
|
| 111 |
+
border-color: #333333 !important;
|
| 112 |
+
}
|
| 113 |
+
.gr-button {
|
| 114 |
+
background-color: #4CAF50 !important;
|
| 115 |
+
color: white !important;
|
| 116 |
+
}
|
| 117 |
+
</style>
|
| 118 |
+
""")
|
| 119 |
+
|
| 120 |
|
| 121 |
gr.Markdown("# 🧠 AI Skill Gap Checker")
|
| 122 |
gr.Markdown("Upload your **Resume PDF** and **Job Description PDF** below. The AI will analyze your skill match and generate an improvement report. 📄")
|