rca123456 commited on
Commit
2e541d1
·
verified ·
1 Parent(s): 8afcfae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -8
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
- <style>
100
- body { background-color: #f7f7f7; }
101
- .gradio-container { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
102
- h1 { color: #2E8B57; }
103
- .gr-button { background-color: #4CAF50; color: white; }
104
- .gr-textbox { background-color: #ffffff; }
105
- </style>
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. 📄")