@scrippsproduct/entertainment-sites-css 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/base.css +422 -0
- package/dist/css/base.css.map +1 -0
- package/dist/css/base.min.css +1 -0
- package/dist/css/episode-guide.css +93 -0
- package/dist/css/episode-guide.css.map +1 -0
- package/dist/css/episode-guide.min.css +1 -0
- package/dist/css/find-us.css +273 -0
- package/dist/css/find-us.css.map +1 -0
- package/dist/css/find-us.min.css +1 -0
- package/dist/css/footer.css +156 -0
- package/dist/css/footer.css.map +1 -0
- package/dist/css/footer.min.css +1 -0
- package/dist/css/header.css +154 -0
- package/dist/css/header.css.map +1 -0
- package/dist/css/header.min.css +1 -0
- package/dist/css/home.css +592 -0
- package/dist/css/home.css.map +1 -0
- package/dist/css/home.min.css +1 -0
- package/dist/css/index.css +2799 -0
- package/dist/css/index.css.map +1 -0
- package/dist/css/index.min.css +1 -0
- package/dist/css/page-not-found.css +32 -0
- package/dist/css/page-not-found.css.map +1 -0
- package/dist/css/page-not-found.min.css +1 -0
- package/dist/css/privacy-center.css +28 -0
- package/dist/css/privacy-center.css.map +1 -0
- package/dist/css/privacy-center.min.css +1 -0
- package/dist/css/privacy-policy.css +69 -0
- package/dist/css/privacy-policy.css.map +1 -0
- package/dist/css/privacy-policy.min.css +1 -0
- package/dist/css/schedule.css +252 -0
- package/dist/css/schedule.css.map +1 -0
- package/dist/css/schedule.min.css +1 -0
- package/dist/css/settings.css +3 -0
- package/dist/css/settings.css.map +1 -0
- package/dist/css/settings.min.css +0 -0
- package/dist/css/show-details.css +467 -0
- package/dist/css/show-details.css.map +1 -0
- package/dist/css/show-details.min.css +1 -0
- package/dist/css/shows.css +83 -0
- package/dist/css/shows.css.map +1 -0
- package/dist/css/shows.min.css +1 -0
- package/dist/css/special-lander.css +110 -0
- package/dist/css/special-lander.css.map +1 -0
- package/dist/css/special-lander.min.css +1 -0
- package/dist/css/sweeps.css +42 -0
- package/dist/css/sweeps.css.map +1 -0
- package/dist/css/sweeps.min.css +1 -0
- package/package.json +20 -0
- package/src/_reset.scss +59 -0
- package/src/base.scss +374 -0
- package/src/episode-guide.scss +101 -0
- package/src/find-us.scss +308 -0
- package/src/footer.scss +188 -0
- package/src/header.scss +185 -0
- package/src/home.scss +760 -0
- package/src/index.scss +17 -0
- package/src/page-not-found.scss +32 -0
- package/src/privacy-center.scss +25 -0
- package/src/privacy-policy.scss +75 -0
- package/src/schedule.scss +288 -0
- package/src/settings.scss +0 -0
- package/src/show-details.scss +578 -0
- package/src/shows.scss +98 -0
- package/src/special-lander.scss +137 -0
- package/src/sweeps.scss +42 -0
package/src/home.scss
ADDED
|
@@ -0,0 +1,760 @@
|
|
|
1
|
+
#carousel-homepage-banner {
|
|
2
|
+
> ol {
|
|
3
|
+
box-shadow: 10px 10px 26px rgba(0, 0, 0, 0.3), -2px -2px 10px rgba(0,0,0, 0.2);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.slide {
|
|
7
|
+
align-items: stretch;
|
|
8
|
+
display: block; // because display:flex causes extra space inside the element in Firefox & Safari
|
|
9
|
+
|
|
10
|
+
& > * {
|
|
11
|
+
place-items: unset;
|
|
12
|
+
// padding: 2.5rem;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
image-card {
|
|
17
|
+
height: unset;
|
|
18
|
+
padding-bottom: 0;
|
|
19
|
+
|
|
20
|
+
a {
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.image-card__overlay-content {
|
|
26
|
+
text-transform: uppercase;
|
|
27
|
+
font-size: 1.5em;
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
padding: 0 5rem 5rem;
|
|
30
|
+
line-height: 1.25;
|
|
31
|
+
|
|
32
|
+
> h1 {
|
|
33
|
+
font-size: clamp(1em, 3vw + 1em, 3em);
|
|
34
|
+
font-weight: 600;
|
|
35
|
+
margin-bottom: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.airdate-formatter__pipe {
|
|
39
|
+
vertical-align: bottom;
|
|
40
|
+
font-size: 1.5em;
|
|
41
|
+
font-weight: 300;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.airdate-formatter__time {
|
|
45
|
+
font-size: 1.125em;
|
|
46
|
+
text-transform: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.airdate-formatter__central-time {
|
|
50
|
+
text-transform: none;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.carousel-controls__previous,
|
|
55
|
+
.carousel-controls__next {
|
|
56
|
+
color: #fff;
|
|
57
|
+
top: calc(50% - 0.5rem);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.carousel-nav {
|
|
61
|
+
padding: 1rem 0 0;
|
|
62
|
+
|
|
63
|
+
> ol {
|
|
64
|
+
gap: 1.5rem;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.carousel-nav__item {
|
|
69
|
+
border: 2px solid #fff;
|
|
70
|
+
transition: scale 0.325s ease-out;
|
|
71
|
+
flex-basis: 0.8rem;
|
|
72
|
+
min-width: 0.8rem;
|
|
73
|
+
max-width: 0.8rem;
|
|
74
|
+
height: 0.8rem;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.carousel-nav__item[data-current=true] {
|
|
78
|
+
background-color: #fff;
|
|
79
|
+
scale: 1.3;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.slide[inert] {
|
|
83
|
+
opacity: 1;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.show-slide__logo-wrapper {
|
|
87
|
+
> img {
|
|
88
|
+
max-width: clamp(18rem, 30vw + 1rem, 30rem);
|
|
89
|
+
max-height: clamp(3.2rem, 4.6vw + 1rem, 8rem);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
img {
|
|
94
|
+
transition: all 0.325s ease-in-out;
|
|
95
|
+
transform-origin: bottom;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.image-card__img-wrapper {
|
|
99
|
+
overflow: hidden;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.show-slide:hover,
|
|
103
|
+
.image-card-slide:hover {
|
|
104
|
+
a picture > img {
|
|
105
|
+
transform: scale(1.02);
|
|
106
|
+
filter: brightness(1.15) contrast(1.15);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.brand-promotion-carousel {
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
background-color: rgba(235, 100, 10, 0.1);
|
|
114
|
+
background-image: linear-gradient(to bottom, rgb(255 126 0), transparent);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
#carousel-brand-promotion {
|
|
118
|
+
.carousel-controls__previous,
|
|
119
|
+
.carousel-controls__next {
|
|
120
|
+
color: #fff;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.carousel-controls__previous,
|
|
125
|
+
.carousel-controls__next {
|
|
126
|
+
background-color: transparent;
|
|
127
|
+
color: var(--theme-color-400);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.on-now-section {
|
|
131
|
+
--_padding-inline-start: 33%;
|
|
132
|
+
> content-constrainer {
|
|
133
|
+
gap: 4rem;
|
|
134
|
+
display: grid;
|
|
135
|
+
align-items: center;
|
|
136
|
+
grid-template-columns: 1fr 1fr;
|
|
137
|
+
padding-block: 5rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.program-airdate {
|
|
141
|
+
padding-inline-start: var(--_padding-inline-start);
|
|
142
|
+
font-size: 1.5rem;
|
|
143
|
+
color: var(--mono-color-400);
|
|
144
|
+
align-self: flex-start;
|
|
145
|
+
|
|
146
|
+
strong {
|
|
147
|
+
font-weight: 600;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
> div:first-of-type {
|
|
151
|
+
font-weight: 700;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.cta-block__cta {
|
|
156
|
+
transition: scale 0.325s ease-out;
|
|
157
|
+
|
|
158
|
+
&:hover {
|
|
159
|
+
scale: 1.05;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
loading-wrapper {
|
|
164
|
+
grid-column: -1/1;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
loading-wrapper,
|
|
168
|
+
error-handler {
|
|
169
|
+
min-height: 24rem;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.string-list__pipe {
|
|
173
|
+
vertical-align: baseline;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
@media screen and (max-width: 2250px) {
|
|
177
|
+
--_padding-inline-start: 25%;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
@media screen and (max-width: 1360px) {
|
|
181
|
+
--_padding-inline-start: 10%;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@media screen and (max-width: 1240px) {
|
|
185
|
+
--_padding-inline-start: 0;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.on-now__series-img {
|
|
190
|
+
aspect-ratio: 1548/864;
|
|
191
|
+
object-fit: cover;
|
|
192
|
+
object-position: center;
|
|
193
|
+
// needs to be removed for Safari
|
|
194
|
+
// not needed unless we go back to the croped image layout with
|
|
195
|
+
// equal padding on the top and bottom
|
|
196
|
+
//height: 100%;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.program-on-now__image-wrapper {
|
|
200
|
+
display: grid;
|
|
201
|
+
justify-self: flex-end;
|
|
202
|
+
align-self: start;
|
|
203
|
+
padding-inline-end: var(--_padding-inline-start);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// .program-airdate__image-wrapper {
|
|
207
|
+
// display: grid;
|
|
208
|
+
// place-items: center;
|
|
209
|
+
// }
|
|
210
|
+
|
|
211
|
+
.program-airdate__logo[data-style="gradient"] {
|
|
212
|
+
margin: 1rem 0 2rem;
|
|
213
|
+
mask-size: contain;
|
|
214
|
+
mask-position: left center;
|
|
215
|
+
max-width: 23rem;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.program-airdate__logo[class*="missing-logo"] {
|
|
219
|
+
aspect-ratio: unset;
|
|
220
|
+
max-width: unset;
|
|
221
|
+
font-size: 2.4rem;
|
|
222
|
+
font-weight: 900;
|
|
223
|
+
text-transform: uppercase;
|
|
224
|
+
line-height: 1.2;
|
|
225
|
+
letter-spacing: 0.6px;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.promotions-row {
|
|
229
|
+
equal-size-flex-row {
|
|
230
|
+
gap: 2.75rem;
|
|
231
|
+
padding-block-end: 1.5rem;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.promotions-row__header { font-weight: 700; }
|
|
236
|
+
|
|
237
|
+
.promotion-section {
|
|
238
|
+
.image-card__content {
|
|
239
|
+
.h4 {
|
|
240
|
+
font-size: 1.5rem;
|
|
241
|
+
margin-block-end: 0.5rem;
|
|
242
|
+
|
|
243
|
+
~ div {
|
|
244
|
+
font-size: 1.125rem;
|
|
245
|
+
margin: 0;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.image-card__cta {
|
|
251
|
+
font-size: 1.125rem;
|
|
252
|
+
font-weight: 400;
|
|
253
|
+
color: var(--theme-color-300);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
equal-size-flex-row[data-item-count="2"] {
|
|
257
|
+
.image-card__play-icon {
|
|
258
|
+
border-style: solid;
|
|
259
|
+
scale: 1.2;
|
|
260
|
+
|
|
261
|
+
&:hover {
|
|
262
|
+
scale: 1.35;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
#carousel-brand-promotion {
|
|
269
|
+
column-two {
|
|
270
|
+
width: 100%;
|
|
271
|
+
height: 77%;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
cta-block {
|
|
275
|
+
> div {
|
|
276
|
+
color: var(--mono-color-100);
|
|
277
|
+
font-size: 1.5rem;
|
|
278
|
+
width: 80%;
|
|
279
|
+
text-shadow: 1px 1px 3px rgba(0,0,0, 0.2);
|
|
280
|
+
line-height: 1.3;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
> .h2 {
|
|
284
|
+
filter: drop-shadow(1px 1px 3px rgba(0,0,0, 0.2));
|
|
285
|
+
width: min(66%, 435px);
|
|
286
|
+
margin-block-end: 2.4rem;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
cta-wrapper {
|
|
290
|
+
margin-block-start: 2.4rem;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
li[data-index="1"] cta-block {
|
|
295
|
+
.h2 {
|
|
296
|
+
transform: translate(-1rem, 0.5rem);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.image-container {
|
|
301
|
+
position: relative;
|
|
302
|
+
width: 100%;
|
|
303
|
+
height: 100%;
|
|
304
|
+
overflow: hidden;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.image-container img {
|
|
308
|
+
object-fit: cover;
|
|
309
|
+
position: absolute;
|
|
310
|
+
top: 0;
|
|
311
|
+
left: 0;
|
|
312
|
+
height: 100%;
|
|
313
|
+
width: 100%;
|
|
314
|
+
object-position: var(--image-position);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.cta-block__cta {
|
|
318
|
+
font-size: 1.2rem;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.carousel-nav {
|
|
322
|
+
padding: 1rem 0 0;
|
|
323
|
+
|
|
324
|
+
> ol {
|
|
325
|
+
gap: 1.5rem;
|
|
326
|
+
width: calc(100% + 4.8rem);
|
|
327
|
+
transform: translateX(-2.4rem);
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.carousel-nav__item {
|
|
332
|
+
border: 2px solid #fff;
|
|
333
|
+
transition: scale 0.325s ease-out;
|
|
334
|
+
flex-basis: 0.8rem;
|
|
335
|
+
min-width: 0.8rem;
|
|
336
|
+
max-width: 0.8rem;
|
|
337
|
+
height: 0.8rem;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.carousel-nav__item[data-current=true] {
|
|
341
|
+
background-color: #fff;
|
|
342
|
+
scale: 1.3;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
#carousel-featured-shows {
|
|
347
|
+
color: currentColor;
|
|
348
|
+
text-decoration: none;
|
|
349
|
+
|
|
350
|
+
image-card { width: 100%; }
|
|
351
|
+
|
|
352
|
+
.image-card__content {
|
|
353
|
+
text-align: center;
|
|
354
|
+
font-size: 1.4rem;
|
|
355
|
+
font-weight: 400;
|
|
356
|
+
|
|
357
|
+
> div {
|
|
358
|
+
margin-top: 0;
|
|
359
|
+
padding-top: 1.2rem;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
&:empty {
|
|
363
|
+
display: none;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.image-card-slide {
|
|
368
|
+
a {
|
|
369
|
+
cursor: pointer;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
img {
|
|
374
|
+
transition: all 0.325s ease-in-out;
|
|
375
|
+
transform-origin: bottom;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.image-card__img-wrapper {
|
|
379
|
+
overflow: hidden;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.image-card-slide:hover {
|
|
383
|
+
a img {
|
|
384
|
+
transform: scale(1.02);
|
|
385
|
+
filter: contrast(1.15) brightness(1.15);
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
image-card a {
|
|
390
|
+
color: currentColor;
|
|
391
|
+
text-decoration: none;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.carousel-controls__previous {
|
|
395
|
+
inset-inline-start: calc(var(--_control-btns-offset-x) - var(--_slide-gap));
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.slide {
|
|
399
|
+
align-items: flex-start;
|
|
400
|
+
|
|
401
|
+
&:only-child {
|
|
402
|
+
.image-card-slide {
|
|
403
|
+
flex-basis: var(--_slide-cell-size);
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.brand-promotion-section {
|
|
410
|
+
.ion-plus-promo {
|
|
411
|
+
cta-block > .h2 {
|
|
412
|
+
width: min(100%, 320px);
|
|
413
|
+
transform: translate(-0.9rem, 1rem);
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
.image-card__overlay-content {
|
|
417
|
+
padding-bottom: 0 1rem 2.5rem;
|
|
418
|
+
font-size: 1.2rem;
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.brand-promotion__list {
|
|
423
|
+
list-style: none;
|
|
424
|
+
padding: 3rem 0 0;
|
|
425
|
+
margin: 0 auto;
|
|
426
|
+
max-width: 37.5rem;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.brand-promotion__item {
|
|
430
|
+
color: var(--mono-color-100);
|
|
431
|
+
font-size: 1.5rem;
|
|
432
|
+
text-shadow: 1px 1px 3px rgba(0,0,0, 0.4);
|
|
433
|
+
margin-bottom: 6rem;
|
|
434
|
+
margin-block-end: 6rem;
|
|
435
|
+
text-wrap: balance;
|
|
436
|
+
|
|
437
|
+
.image-container img {
|
|
438
|
+
width: 100%
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
cta-block {
|
|
442
|
+
padding-left: 1rem;
|
|
443
|
+
|
|
444
|
+
.h2 {
|
|
445
|
+
filter: drop-shadow(1px 1px 3px rgba(0,0,0, 0.4));
|
|
446
|
+
width: min(66%, 250px);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
a {
|
|
450
|
+
font-size: 1.2rem;
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
// 1440px
|
|
456
|
+
@media screen and (max-width: 90rem) {
|
|
457
|
+
.brand-promotion-section {
|
|
458
|
+
image-card {
|
|
459
|
+
img {
|
|
460
|
+
aspect-ratio: 1/0.75;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
// 1280px
|
|
466
|
+
@media screen and (max-width: 80rem) {
|
|
467
|
+
#carousel-homepage-banner {
|
|
468
|
+
--_control-btns-offset-x: 1rem !important;
|
|
469
|
+
}
|
|
470
|
+
#carousel-featured-shows {
|
|
471
|
+
--_control-btns-offset-x: -0.75rem !important;
|
|
472
|
+
|
|
473
|
+
.carousel-controls__previous,
|
|
474
|
+
.carousel-controls__next {
|
|
475
|
+
filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
#carousel-brand-promotion {
|
|
479
|
+
--_control-btns-offset-x: -2rem !important;
|
|
480
|
+
|
|
481
|
+
.carousel-controls__previous,
|
|
482
|
+
.carousel-controls__next {
|
|
483
|
+
filter: unset;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
// 1170px
|
|
488
|
+
@media screen and (max-width: 73.125rem) {
|
|
489
|
+
#carousel-featured-shows,
|
|
490
|
+
.programs-list a {
|
|
491
|
+
|
|
492
|
+
.image-card__content {
|
|
493
|
+
font-size: 1.125rem;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
#carousel-homepage-banner {
|
|
498
|
+
.image-card__overlay-content {
|
|
499
|
+
font-size: 1.125rem;
|
|
500
|
+
padding: 0 1rem 2rem;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
// 1100px
|
|
505
|
+
@media screen and (max-width: 68.75rem) {
|
|
506
|
+
.brand-promotion-section {
|
|
507
|
+
equal-size-flex-row {
|
|
508
|
+
display: block;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
image-card {
|
|
512
|
+
img {
|
|
513
|
+
aspect-ratio: unset;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.promotion-section {
|
|
519
|
+
.image-card__content {
|
|
520
|
+
.h4 {
|
|
521
|
+
font-size: 1.125rem;
|
|
522
|
+
|
|
523
|
+
~ div {
|
|
524
|
+
font-size: 1rem;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.image-card__cta {
|
|
530
|
+
font-size: 1rem;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
#carousel-brand-promotion {
|
|
535
|
+
cta-block {
|
|
536
|
+
> div {
|
|
537
|
+
font-size: 1.25em;
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
// 1024px
|
|
543
|
+
@media screen and (max-width: 64rem) {
|
|
544
|
+
#carousel-brand-promotion {
|
|
545
|
+
--_cell-aspect-ratio: 1/1.1 !important;
|
|
546
|
+
--_slide-aspect-ratio: 1/1.1 !important;
|
|
547
|
+
|
|
548
|
+
cta-block {
|
|
549
|
+
padding-left: 1.5rem;
|
|
550
|
+
|
|
551
|
+
> div {
|
|
552
|
+
font-size: 1.5em;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
> .h2 {
|
|
556
|
+
width: min(100%, 365px);
|
|
557
|
+
margin-block-start: -1.5rem;
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.two-column-slide {
|
|
562
|
+
display: flex;
|
|
563
|
+
flex-direction: column-reverse;
|
|
564
|
+
justify-content: flex-start;
|
|
565
|
+
align-items: flex-start;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
column-two {
|
|
569
|
+
height: 50%;
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
#carousel-homepage-banner {
|
|
574
|
+
--_slide-gap: 0 !important;
|
|
575
|
+
|
|
576
|
+
> ol {
|
|
577
|
+
box-shadow: none;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.slide {
|
|
581
|
+
align-items: center;
|
|
582
|
+
padding: 0.75rem;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
image-card {
|
|
586
|
+
position: relative;
|
|
587
|
+
|
|
588
|
+
&:before {
|
|
589
|
+
content: '';
|
|
590
|
+
position: absolute;
|
|
591
|
+
z-index: -1;
|
|
592
|
+
width: 100%;
|
|
593
|
+
inset: 0;
|
|
594
|
+
box-shadow: 2px 2px 20px rgba(0,0,0,0.25);
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.banner-carousel-constrainer {
|
|
600
|
+
width: 100%;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
// 960px
|
|
604
|
+
@media screen and (max-width: 60rem) {
|
|
605
|
+
.on-now-section > content-constrainer {
|
|
606
|
+
grid-template-columns: 1fr;
|
|
607
|
+
gap: 2rem;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.program-on-now__image-wrapper {
|
|
611
|
+
grid-row: 1/2;
|
|
612
|
+
display: block;
|
|
613
|
+
aspect-ratio: 169/105;
|
|
614
|
+
padding-inline-end: 0;
|
|
615
|
+
justify-self: normal;
|
|
616
|
+
|
|
617
|
+
> img {
|
|
618
|
+
width: 100%;
|
|
619
|
+
object-position: center;
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.on-now-section .program-airdate {
|
|
624
|
+
padding: 0;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
content-constrainer .h2 { margin-block-start: 0; }
|
|
628
|
+
}
|
|
629
|
+
// 800px
|
|
630
|
+
@media screen and (max-width: 50rem) {
|
|
631
|
+
#carousel-homepage-banner {
|
|
632
|
+
.image-card__overlay-content {
|
|
633
|
+
padding: 0 1rem 2rem;
|
|
634
|
+
font-size: 1.125rem;
|
|
635
|
+
|
|
636
|
+
> h1 {
|
|
637
|
+
font-size: 2rem;
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.brand-promotion__item:last-child {
|
|
643
|
+
margin-block-end: 2rem;
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
// 700px
|
|
647
|
+
@media screen and (max-width: 43.75rem) {
|
|
648
|
+
#carousel-homepage-banner {
|
|
649
|
+
--_slide-aspect-ratio: 388/594 !important;
|
|
650
|
+
--_cell-aspect-ratio: 388/594 !important;
|
|
651
|
+
|
|
652
|
+
image-card {
|
|
653
|
+
--image-aspect-ratio: 388/594 !important;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.image-card__overlay-content {
|
|
657
|
+
width: 100%;
|
|
658
|
+
padding: 0 0 2.2rem;
|
|
659
|
+
font-size: 1.125rem;
|
|
660
|
+
text-align: center;
|
|
661
|
+
|
|
662
|
+
> h1 {
|
|
663
|
+
font-size: 2.5rem;
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.show-slide__logo-wrapper {
|
|
668
|
+
|
|
669
|
+
> img {
|
|
670
|
+
margin-left: auto;
|
|
671
|
+
margin-right: auto;
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
// 600px
|
|
678
|
+
@media screen and (max-width: 37.5rem) {
|
|
679
|
+
.featured-shows-section content-constrainer {
|
|
680
|
+
width: calc(100% - (3.8rem / 2));
|
|
681
|
+
padding-left: calc(3.8rem / 2);
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
#carousel-featured-shows {
|
|
685
|
+
--_carousel-gutters: 0 25% !important;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.promotions-row equal-size-flex-row {
|
|
689
|
+
gap: 3.5rem;
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
// 580px
|
|
693
|
+
@media screen and (max-width: 36.25rem) {
|
|
694
|
+
#carousel-homepage-banner {
|
|
695
|
+
.image-card__overlay-content {
|
|
696
|
+
|
|
697
|
+
> h1 {
|
|
698
|
+
font-size: 2.07rem;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.airdate-formatter__time {
|
|
702
|
+
font-size: 1.61em;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
airdate-formatter {
|
|
706
|
+
font-size: 1.035rem;
|
|
707
|
+
padding: 0 0.5rem;
|
|
708
|
+
margin-block-start: 0.5rem;
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
// 480px
|
|
714
|
+
@media screen and (max-width: 30rem) {
|
|
715
|
+
#carousel-homepage-banner .show-slide__logo-wrapper {
|
|
716
|
+
> img {
|
|
717
|
+
max-width: clamp(13rem, 30vw + 1rem, 30rem);
|
|
718
|
+
max-height: clamp(3.5rem, 4.6vw + 1rem, 6rem);
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.on-now-section .program-airdate > div:first-of-type {
|
|
723
|
+
font-size: 1.15em;
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
// 400px
|
|
727
|
+
@media screen and (max-width: 25rem) {
|
|
728
|
+
.featured-shows-section content-constrainer {
|
|
729
|
+
width: calc(100% - (1.5rem / 2));
|
|
730
|
+
padding-left: calc(1.5rem / 2);
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
#carousel-homepage-banner .show-slide__logo-wrapper > img {
|
|
734
|
+
margin-bottom: 1.25rem;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
#carousel-homepage-banner .image-card__overlay-content {
|
|
738
|
+
padding-bottom: 1.5rem;
|
|
739
|
+
|
|
740
|
+
airdate-formatter {
|
|
741
|
+
.airdate-formatter__date,
|
|
742
|
+
.airdate-formatter__time-wrap {
|
|
743
|
+
display: block;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.airdate-formatter__pipe { display: none; }
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.on-now-section .program-airdate > div:first-of-type {
|
|
751
|
+
font-size: 1em;
|
|
752
|
+
margin-block-end: 1rem;
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
// 320px
|
|
756
|
+
@media screen and (max-width: 20rem) {
|
|
757
|
+
#carousel-homepage-banner .show-slide__logo-wrapper > img {
|
|
758
|
+
max-width: 11rem;
|
|
759
|
+
}
|
|
760
|
+
}
|