-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJobList.css
38 lines (38 loc) · 886 Bytes
/
JobList.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
.job-list {
padding: 2rem;
color: #333;
}
.job-list h2 {
font-size: 2rem;
color: #2a2a2a;
margin-bottom: 1.5rem;
}
.job-card {
background-color: #f7f7f7;
padding: 1.5rem;
margin-bottom: 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.job-card h3 {
margin: 0;
font-size: 1.25rem;
}
.view-details-btn {
margin-top: 1rem;
padding: 0.5rem 1rem;
background-color: #1a73e8;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.view-details-btn:hover {
background-color: #0f5ac6;
}