Newer
Older
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
:host {
display: block;
}
.hy-video__video-container {
display: inline-block;
margin-bottom: 8px;
position: relative;
width: 100%;
@include breakpoint($wide) {
margin-bottom: 16px;
}
iframe {
height: 100%;
overflow: hidden;
width: 100%;
}
.hy-video__preview-image {
height: 100%;
left: 0;
object-fit: cover;
position: absolute;
top: 0;
width: 100%;
}
.hy-video__play {
left: 50%;
position: absolute;
top: 50%;
transform: translateX(-50%) translateY(-50%);
button {
align-items: center;
background: transparent;
border: none;
display: flex;
flex-direction: column;
&:hover {
cursor: pointer;
}
}
button .hy-video__button-label {
@include font-size(16px, 24px);
color: var(--grayscale-white);
font-family: var(--main-font-family);
font-weight: bold;
letter-spacing: -0.1px;
text-align: center;
text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
text-transform: uppercase;
@include breakpoint($medium) {
@include font-size(24px, 32px);
letter-spacing: -0.14px;
text-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
}
@include breakpoint($extrawide) {
@include font-size(28px, 32px);
letter-spacing: -0.16px;
}
@include font-size(32px, 32px);
}
}
button svg {
fill: var(--grayscale-white);
filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
height: 48px;
width: 48px;
@include breakpoint($medium) {
filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.6));
height: 60px;
width: 60px;
}
@include breakpoint($wide) {
height: 80px;
width: 80px;
}
@include breakpoint($extrawide) {
height: 104px;
width: 104px;
}
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
height: 120px;
width: 120px;
}
}
}
> *:not(.hy-video__label):not(.hy-video__play) {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
}
&:after {
content: '';
display: block;
// 16:9 ratio
padding-top: (9 / 16) * 100%;
}
}
.hy-video:not(.hy-video--horizontal) {
display: flex;
flex-direction: column;
.hy-video__meta__description {
@include breakpoint($wide) {
width: 57.24%;
}
}
}
.hy-video__label {
// font: h5 small size
@include font-size(16px, 20px);
background-color: var(--grayscale-black);
bottom: 12px;
color: var(--grayscale-white);
font-family: var(--main-font-family);
font-weight: bold;
left: -8px;
letter-spacing: -0.5px;
max-width: 46%; // 5.5 columns
padding: 6px 12px;
position: absolute;
text-transform: uppercase;
@include breakpoint($narrow) {
// >=480px
// font: h4 small size
@include font-size(18px, 24px);
bottom: 20px;
left: -16px;
letter-spacing: -0.56px;
max-width: 58%; // 7 columns
padding: 12px 24px;
position: absolute;
}
@include breakpoint($wide) {
// Applies both to 960px-1200px and 1201-1440px
// font: h4 medium size
@include font-size(22px, 28px);
bottom: 24px;
left: -16px;
letter-spacing: -0.69px;
padding: 16px 24px;
position: absolute;
}
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// font: h3 medium size
@include font-size(26px, 32px);
bottom: 28px;
left: -16px;
letter-spacing: -0.8px;
padding: 20px 24px;
position: absolute;
}
}
.hy-video.hy-video--horizontal {
display: flex;
flex-direction: column;
justify-content: space-between;
@include breakpoint($wide) {
flex-direction: row;
}
.hy-video__meta {
padding-left: 0;
width: 100%;
@include breakpoint($wide) {
padding-left: 2.5%;
width: 57.24%;
}
}
}
.hy-video__meta__title {
h2.hy-heading {
margin: 8px 0 12px 0 !important;
padding: 0 !important;
@include breakpoint($wide) {
margin: 0 0 16px 0 !important;
}
}
}
.hy-video__meta__details {
display: flex;
flex-direction: row;
margin-bottom: 12px;
@include breakpoint($wide) {
margin-bottom: 16px;
}
}
.hy-video__meta__details--item {
border-right: 1px dashed var(--brand-main-light);
display: flex;
flex-direction: column;
margin-right: 44px;
min-width: 87px;
padding-right: 46px;
place-content: center space-between;
&:last-child {
border-right: 0;
}
}
.hy-video__meta__description {
@include font-size(14px, 20px);
color: var(--grayscale-dark);
display: block;
font-family: var(--main-font-family);
letter-spacing: 0;
width: 100%;
@include font-size(16px, 24px);
}
}
.hy-video__meta__label {
}
.hy-video__meta__label,
.hy-video__meta__content {
@include font-size(16px, 20px);
color: var(--grayscale-black);
font-family: var(--main-font-family);
letter-spacing: -0.5px;