-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind-developers.html
More file actions
298 lines (260 loc) · 6.64 KB
/
Copy pathfind-developers.html
File metadata and controls
298 lines (260 loc) · 6.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Find Developers - DevHub</title>
<style>
/* ===== RESET ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-color: #f9fafc;
color: #333;
}
/* ===== TOP NAV ===== */
.top-nav {
width: 100%;
background: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
padding: 15px 8%;
position: sticky;
top: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: flex-start;
}
.top-nav .logo a {
font-size: 1.6rem;
font-weight: 700;
color: #007bff;
text-decoration: none;
letter-spacing: 0.5px;
}
/* ===== FIND DEVELOPERS SECTION ===== */
.find-developers {
padding: 60px 10%;
}
.section-header {
text-align: center;
margin-bottom: 2rem;
}
.section-header h2 {
font-size: 2rem;
color: #222;
margin-bottom: 0.5rem;
}
.section-header p {
color: #666;
font-size: 1rem;
max-width: 600px;
margin: 0 auto;
}
/* ===== FILTER BAR ===== */
.filter-bar {
background: #fff;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-bottom: 2.5rem;
}
.filter-bar input,
.filter-bar select {
padding: 10px 12px;
border-radius: 6px;
border: 1px solid #ccc;
outline: none;
font-size: 0.95rem;
width: 100%;
max-width: 230px;
transition: border 0.3s;
}
.filter-bar input:focus,
.filter-bar select:focus {
border-color: #007bff;
}
.filter-bar button {
background: #007bff;
color: white;
border: none;
padding: 10px 18px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}
.filter-bar button:hover {
background: #005ecb;
}
/* ===== DEVELOPER LIST (VERTICAL) ===== */
.developer-list {
display: flex;
flex-direction: column;
gap: 2rem;
}
.developer-card {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 1.5rem;
background: #fff;
border-radius: 16px;
padding: 1.5rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.06);
transition: transform 0.3s, box-shadow 0.3s;
}
.developer-card:hover {
transform: translateY(-6px);
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.developer-card img {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.dev-info {
flex: 1;
text-align: left;
}
.dev-info h3 {
color: #007bff;
font-size: 1.3rem;
margin-bottom: 5px;
}
.dev-skill {
font-weight: 600;
color: #333;
margin-bottom: 8px;
}
.dev-bio {
color: #555;
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 10px;
}
.rating {
font-size: 0.9rem;
color: #666;
margin-bottom: 1rem;
}
.dev-buttons {
display: flex;
gap: 10px;
}
.btn-blue,
.btn-outline {
padding: 8px 14px;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
transition: 0.3s;
text-align: center;
border: none;
cursor: pointer;
font-size: 0.9rem;
}
.btn-blue {
background: #007BFF;
color: white;
}
.btn-blue:hover {
background: #0056c7;
}
.btn-outline {
border: 1px solid #007BFF;
color: #007BFF;
background: transparent;
}
.btn-outline:hover {
background: #007BFF;
color: white;
}
@media (max-width: 768px) {
.developer-card {
flex-direction: column;
text-align: center;
align-items: center;
}
.dev-info {
text-align: center;
}
.dev-buttons {
justify-content: center;
flex-direction: column;
width: 100%;
}
.filter-bar {
flex-direction: column;
}
.filter-bar input,
.filter-bar select {
max-width: 100%;
}
}
</style>
</head>
<body>
<!-- ===== TOP NAV ===== -->
<nav class="top-nav">
<div class="logo">
<a href="index.html">DevHub</a>
</div>
</nav>
<!-- ===== FIND DEVELOPERS SECTION ===== -->
<section class="find-developers">
<div class="section-header">
<h2>Find Developers For You</h2>
<p>Search and connect with skilled freelance developers ready to bring your vision to life.</p>
</div>
<!-- FILTER BAR -->
<div class="filter-bar">
<input type="text" placeholder="Search by name or keyword...">
<select>
<option value="">All Skills</option>
<option value="Frontend">Frontend Developer</option>
<option value="Backend">Backend Developer</option>
<option value="Full Stack">Full Stack Developer</option>
<option value="UI/UX">UI/UX Designer</option>
<option value="Mobile">Mobile Developer</option>
<option value="React">React Developer</option>
<option value="Python">Python Developer</option>
<option value="Node">Node.js Developer</option>
</select>
<select>
<option value="">All Locations</option>
<option value="Nigeria">Nigeria</option>
<option value="USA">USA</option>
<option value="UK">UK</option>
<option value="India">India</option>
<option value="Remote">Remote</option>
</select>
<select>
<option value="">All Ratings</option>
<option value="4">4 Stars & Above</option>
<option value="3">3 Stars & Above</option>
</select>
<button>Apply Filters</button>
</div>
<!-- DEVELOPER LIST -->
<div class="developer-list">
<div style="text-align: center; padding: 40px;">
<p style="color: #666;">Loading developers...</p>
</div>
</div>
</section>
<script src="api.js"></script>
<script src="find-developers.js"></script>
</body>
</html>