-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy path_legal-tech-features.scss
75 lines (64 loc) · 1.45 KB
/
_legal-tech-features.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
@use '../helpers/functions' as *;
.legal-tech-features {
padding-top: $spacer * 2.5;
padding-bottom: $spacer * 2.5;
background-color: $neutral-94;
position: relative;
&__title {
margin-bottom: $spacer * 2.5;
font-size: $spacer * 2;
line-height: pxToRem(38);
text-align: center;
color: $neutral-20;
}
&__cards {
position: relative;
z-index: 1;
}
&__card {
justify-content: flex-start;
padding: pxToRem(40);
&-icon {
display: block;
height: $spacer * 3;
width: $spacer * 3;
margin-bottom: $spacer * 2;
}
&-title {
font-size: pxToRem(24);
line-height: pxToRem(34);
color: $neutral-20;
margin-bottom: $spacer * 0.5;
}
&-description {
margin-bottom: 0;
font-size: pxToRem(18);
line-height: pxToRem(27);
color: $neutral-30;
}
}
&__square-grid-overlay {
display: none;
}
@include media-breakpoint-up(lg) {
padding-top: $spacer * 5;
padding-bottom: $spacer * 5;
&__title {
font-size: $spacer * 3;
line-height: pxToRem(58);
margin-bottom: $spacer * 6;
}
&__square-grid-overlay {
display: block;
position: absolute;
left: 0;
bottom: pxToRem(40);
width: 100%;
height: pxToRem(400);
background-image: url('/img/square-grid.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
}
}