Newer
Older
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
.hy-general-list-item {
display: flex;
flex-direction: row;
font-family: var(--main-font-family);
position: relative;
margin-bottom: 1rem;
&:hover {
cursor: pointer;
}
&__image-container {
flex-basis: 33.3%;
position: relative;
}
&__text-container {
flex-basis: 66.6%;
padding-left: 2rem;
}
&--image {
background-color: #ececec;
border: 1px solid red;
width: 100%;
height: 100%;
}
&--label {
@include font-size(12px, 14px);
@include font-weight($bold);
background-color: var(--grayscale-black);
color: #ffffff;
letter-spacing: -0.1px;
padding: 5px 8px;
position: absolute;
top: 16px;
left: -8px;
text-transform: uppercase;
}
&--title {
@include font-size(20px, 24px);
@include font-weight($bold);
color: var(--brand-main-nearly-black);
letter-spacing: -0.5px;
}
&--description {
@include font-size(14px, 18px);
color: var(--grayscale-dark);
letter-spacing: -0.08px;
}
}