forked from aditya-bhaumik/Pathsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobs.css
332 lines (300 loc) · 6.46 KB
/
jobs.css
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/* <<<<<<< enhanceFAQ */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--primary-color:#f4f4f4;
--secondary-color:#333;
}
.darkmode{
--primary-color:#000000;
--secondary-color:#f4f4f4;
}
.hero-class {
background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1769&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100dvh;
width:100dvw;
display: flex;
align-items: end;
justify-content: center;
}
.hero-class-inner {
height: 10dvh;
width:100dvw;
color: var(--primary-color);
padding: 70px 20px;
margin-top: 60px;
margin-bottom: 20px;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
gap: 1px;
background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
/* border-radius: 10px; */
backdrop-filter: blur(10px); /* Creates the glass effect */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Optional: shadow for depth */
border: 2px solid rgba(255, 255, 255, 0.4);
}
.search-bar {
margin: 20px auto;
text-align: center;
position: relative;
}
.search-bar input {
padding: 10px;
width: 300px;
border: 1px solid #ccc;
border-radius: 5px;
}
.search-bar i {
position: absolute;
left: 10px;
top: 10px;
color: #888;
}
.job-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}
.job-item {
border: 1px solid #ccc;
border-radius: 5px;
padding: 15px;
margin: 10px;
width: 300px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s;
background-color: var(--primary-color);
}
.job-item:hover {
transform: scale(1.05);
}
.job-item h2 {
margin-top: 0;
}
.apply-btn {
display: inline-block;
background-color: #4caf50;
color: var(--secondary-color);
padding: 10px 15px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
/* .apply-btn:hover {
background-color: #45a049;
} */
.footer-container {
background-color: var(--primary-color);
color: var(--secondary-color);
padding: 20px;
text-align: center;
margin-top: 20px;
}
.footer-list {
margin: 20px 0;
}
.footer-list h3 {
margin-bottom: 10px;
}
.social-icons li {
display: inline;
margin: 0 10px;
}
.copyright {
margin-top: 10px;
}
@media (max-width: 600px) {
.search-bar input {
width: 80%;
}
.job-item {
width: 100%;
}
}
/*-----------job listings-----------*/
* {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
box-sizing: border-box;
}
.job-listings {
padding: 30px 90px;
width: 70vw;
margin: auto;
}
.search-bar {
display: flex;
justify-content: center;
align-items: center;
margin: 20px auto;
padding: 12px;
width: 60em;
max-width: 90%;
background-color: #ffffff;
border-radius: 40px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.3s ease;
}
.search-bar:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.search-bar input[type="text"] {
flex: 1;
padding: 12px 20px;
font-size: 16px;
border: none;
outline: none;
border-radius: 30px 0 0 30px;
background-color: #f2f2f2;
color: #333;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.search-bar input[type="text"]:focus {
background-color: #ffffff;
box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}
.search-bar button {
padding: 12px 25px;
font-size: 16px;
font-weight: bold;
border: none;
background-color: #4CAF50;
color: #ffffff;
cursor: pointer;
border-radius: 0 30px 30px 0;
transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.search-bar button:hover {
background-color: #3e8e41;
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.search-bar button:active {
transform: scale(0.95);
}
@media (max-width: 768px) {
.search-bar {
flex-direction: column;
width: 100%;
padding: 15px;
border-radius: 20px;
}
.search-bar input[type="text"] {
border-radius: 20px;
margin-bottom: 10px;
width: 100%;
}
.search-bar button {
border-radius: 20px;
width: 100%;
}
}
.job-listings h2 {
color: #FF6868;
font-size: 20px;
letter-spacing: 6px;
word-spacing: 10px;
font-weight: 700;
padding: 20px 0;
text-align: center;
}
.job-item {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 800px;
margin: 20px auto;
padding: 20px;
}
.card {
width: 100%;
background-color: #ffffff;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.2s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card-body {
padding: 20px;
text-align: left;
}
.card-body h5 {
font-size: 24px;
font-weight: 700;
color: #333;
margin: 0 0 10px;
}
.card-body h6 {
font-size: 18px;
font-weight: 500;
color: #555; /* Green color for the company name */
margin: 0 0 15px;
font-weight: 700;
}
.card-body p {
font-size: 16px;
color: #555;
line-height: 1.6;
margin: 0;
}
.apply-btn {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background-color: #f9f9f9;
border-top: 1px solid #eee;
}
.location {
font-size: 14px;
color: #777;
transition: color 0.3s ease;
}
.card:hover .location {
color: #777; /* Maintain original color on hover */
}
.apply-btn button {
padding: 8px 20px;
font-size: 16px;
font-weight: bold;
color: #fff;
background-color: #FF6347; /* Red color for the button */
border: none;
border-radius: 25px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.apply-btn button:hover {
background-color: #4CAF50; /* Green color on hover */
}
@media (max-width: 600px) {
.card-body h5 {
font-size: 20px;
}
.card-body h6 {
font-size: 16px;
}
.card-body p {
font-size: 14px;
}
.apply-btn button {
padding: 6px 16px;
font-size: 14px;
}
}