-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob-details-responsive.css
59 lines (47 loc) · 1 KB
/
job-details-responsive.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
@media screen and (max-width: 750px) and (min-width: 330px) {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow-x: hidden;
}
.job-details {
margin: 20px 10px;
flex-direction: column-reverse;
}
.job-info h2 {
font-size: 2rem;
}
.job-info-container {
flex-direction: column;
gap: 15px;
}
.job-info-container .job-position {
margin: 0 0 0 0;
}
.requirement ul {
margin: 0 20px;
}
.apply-save-share {
align-items: center;
flex-direction: column;
padding: 0 10px;
gap: 20px;
}
.apply-save-share .apply-save {
display: flex;
gap: 20px;
}
.job-company-container {
margin: 50px 0 0 0;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
#similar-jobs {
margin: 50px 10px 100px;
flex-direction: column;
align-items: start;
gap: 40px;
}
}