This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_featured-Jobs.scss
89 lines (85 loc) · 2 KB
/
_featured-Jobs.scss
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
.single-job-items{
@include flexbox();
@include justify-content(space-between);
@include flex-wrap(wrap);
@include transition(.4s);
@media #{$md}{
}
@media #{$sm}{
}
.job-items{
@include flexbox();
@include flex-wrap(wrap);
@include align-items(center);
}
.company-img{
img {
overflow: hidden;
float: left;
margin-right: 32px;
z-index: 999;
@media #{$sm}{
margin-bottom: 20px;
}
@media #{$xs}{
margin-bottom: 20px;
}
}
}
.job-tittle{
@media #{$xs}{
padding: 14px;
}
@media #{$sm}{
padding: 14px;
}
a{
h4{
color: #454d72;
font-size: 30px;
font-weight: 700;
margin-bottom: 26px;
@include transition(.4s);
&:hover{
color:$theme-color;
}
}
}
ul {
li {
display: inline-block;
margin-right: 48px;
font-size: 15px;
color: #808080;
line-height: 1.8;
@media #{$md}{
margin-right: 18px;
}
@media #{$xs}{
margin-right: 0px;
margin-bottom: 7px;
}
@media #{$sm}{
margin-right: 8px;
}
&:last-child{
margin-right: 0px;
}
i {
font-size: 14px;
color: #bbbbbb;
margin-right: 10px;
}
}
}
}
.job-tittle2{
@media #{$md}{
padding-top: 25px;
}
}
// Hover
&:hover{
box-shadow: 0px 22px 57px 0px rgba(34, 41, 72, 0.05);
}
}