Newer
Older
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
.hy-heading__container {
display: flex;
flex-direction: column-reverse;
@include breakpoint($medium) {
flex-direction: row;
}
}
.hy-heading {
display: flex;
flex-grow: 1;
flex-shrink: 0;
max-width: 100%;
}
.hy-heading__subsection {
flex-shrink: 2;
overflow: hidden;
width: 100%;
&:after {
background-color: var(--brand-main-nearly-black);
content: ' ';
display: flex;
height: 2px;
width: 100%;
margin-left: 0;
margin-bottom: 1rem;
position: relative;
top: 50%;
transform: translateY(-50%);
@include breakpoint($medium) {
margin-left: 2rem;
}
}
}
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
h1, h2, h3, h4, h5, h6 {
color: var(--brand-main-nearly-black);
font-family: var(--main-font-family);
font-weight: 600;
padding: 0;
margin: 0;
}
h1 {
font-size: 32px;
letter-spacing: -1px;
line-height: 40px;
@include breakpoint($medium) {
font-size: 48px;
letter-spacing: -1.5px;
line-height: 64px;
}
}
h2 {
font-size: 26px;
letter-spacing: -0.82px;
line-height: 32px;
@include breakpoint($medium) {
font-size: 32px;
letter-spacing: -1px;
line-height: 40px;
}
}
h3 {
font-size: 22px;
letter-spacing: -0.69px;
line-height: 28px;
@include breakpoint($medium) {
font-size: 26px;
letter-spacing: -0.82px;
line-height: 32px;
}
}
h4 {
font-size: 18px;
letter-spacing: -0.56px;
line-height: 24px;
@include breakpoint($medium) {
font-size: 22px;
letter-spacing: -0.69px;
line-height: 28px;
}
}
h5 {
font-size: 16px;
letter-spacing: -0.5px;
line-height: 20px;
@include breakpoint($medium) {
font-size: 18px;
letter-spacing: -0.56px;
line-height: 24px;
}
}
h6 {
font-size: 14px;
letter-spacing: -0.44px;
line-height: 16px;
@include breakpoint($medium) {
font-size: 16px;
letter-spacing: -0.5px;
line-height: 20px;
}
}