@shift72/core-template 1.0.0 → 1.2.0
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/CHANGELOG.md +39 -6
- package/kibble.json +1 -1
- package/package.json +1 -1
- package/site/ar_LB.all.json +27 -12
- package/site/ca_ES.all.json +28 -13
- package/site/da_DK.all.json +28 -13
- package/site/de_DE.all.json +27 -12
- package/site/el_EL.all.json +28 -13
- package/site/en_AU.all.json +27 -12
- package/site/es_ES.all.json +28 -13
- package/site/es_MX.all.json +27 -12
- package/site/et_ET.all.json +27 -12
- package/site/fi_FI.all.json +28 -13
- package/site/fr_FR.all.json +28 -13
- package/site/hr_HR.all.json +28 -13
- package/site/hu_HU.all.json +28 -13
- package/site/it_IT.all.json +26 -11
- package/site/ja_JP.all.json +27 -12
- package/site/lt_LT.all.json +28 -13
- package/site/manifest.json.jet +2 -2
- package/site/nl_BE.all.json +27 -12
- package/site/no_NO.all.json +28 -13
- package/site/pl_PL.all.json +28 -13
- package/site/plans.html.jet +1 -1
- package/site/pt_BR.all.json +28 -13
- package/site/pt_PT.all.json +28 -13
- package/site/ru_RU.all.json +28 -13
- package/site/sr_SR.all.json +28 -13
- package/site/static/fonts/fa-s72.woff +0 -0
- package/site/static/js/main.js +0 -1
- package/site/static/scripts/main.js.map +1 -1
- package/site/styles/_availability-tags.scss +1 -3
- package/site/styles/_awards.scss +16 -10
- package/site/styles/_buttons.scss +19 -95
- package/site/styles/_can-be-watched-button.scss +1 -1
- package/site/styles/_carousel.scss +41 -28
- package/site/styles/_collections.scss +17 -33
- package/site/styles/_cta-buttons.scss +3 -75
- package/site/styles/_footer.scss +5 -9
- package/site/styles/_forms.scss +7 -4
- package/site/styles/_icons.scss +22 -9
- package/site/styles/_meta-detail.scss +44 -56
- package/site/styles/_meta-item-tagline.scss +2 -6
- package/site/styles/_meta-item.scss +0 -4
- package/site/styles/_meta-sub-item.scss +0 -4
- package/site/styles/_mixins.scss +17 -15
- package/site/styles/_pages.scss +21 -49
- package/site/styles/_plans.scss +4 -0
- package/site/styles/_search.scss +0 -2
- package/site/styles/_share-modal.scss +0 -4
- package/site/styles/_shopping.scss +0 -5
- package/site/styles/_tooltips.scss +13 -0
- package/site/styles/_typography.scss +87 -0
- package/site/styles/_variables.scss +14 -4
- package/site/styles/_wishlist.scss +8 -14
- package/site/styles/main.scss +1 -0
- package/site/templates/application/footer/brand.jet +4 -4
- package/site/templates/application/footer/copyright-statement.jet +1 -1
- package/site/templates/application/nav/nav.jet +2 -2
- package/site/templates/collection/carousel/item/synopsis.jet +5 -3
- package/site/templates/collection/carousel/item.jet +8 -5
- package/site/templates/common/awards/item.jet +2 -2
- package/site/templates/common/cta_buttons.jet +4 -12
- package/site/templates/film/item.jet +3 -3
- package/site/templates/items/meta_item.jet +20 -6
- package/site/templates/items/tagline.jet +25 -50
- package/site/templates/tv/detail.jet +1 -1
- package/site/tr_TR.all.json +28 -13
- package/site/uk_UA.all.json +28 -13
- package/site/zh_TW.all.json +27 -12
|
@@ -121,19 +121,32 @@
|
|
|
121
121
|
flex-direction: column;
|
|
122
122
|
padding: var(--page-detail-padding-top) 20px 0 20px;
|
|
123
123
|
|
|
124
|
-
@include media-breakpoint-up(
|
|
125
|
-
flex-direction: row;
|
|
126
|
-
padding-bottom: 0;
|
|
124
|
+
@include media-breakpoint-up(xs) {
|
|
127
125
|
padding-top: var(--page-detail-padding-top-md);
|
|
128
126
|
}
|
|
129
127
|
|
|
130
128
|
@include media-breakpoint-up(lg) {
|
|
129
|
+
flex-direction: row;
|
|
131
130
|
padding: var(--page-detail-padding-top-lg) 50px 0 50px;
|
|
131
|
+
padding-bottom: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.poster-wrapper {
|
|
135
|
+
margin-bottom: 20px;
|
|
136
|
+
position: relative;
|
|
137
|
+
.sponsor {
|
|
138
|
+
bottom: 100%;
|
|
139
|
+
position: absolute;
|
|
140
|
+
@include media-breakpoint-up(xs) {
|
|
141
|
+
position: relative;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
132
144
|
}
|
|
133
145
|
|
|
134
146
|
.poster {
|
|
135
147
|
animation: fadein 2s;
|
|
136
148
|
display: block;
|
|
149
|
+
flex-shrink: 0;
|
|
137
150
|
margin-right: 20px;
|
|
138
151
|
width: 110px;
|
|
139
152
|
|
|
@@ -141,13 +154,13 @@
|
|
|
141
154
|
width: 155px;
|
|
142
155
|
}
|
|
143
156
|
|
|
144
|
-
@include media-breakpoint-up(
|
|
157
|
+
@include media-breakpoint-up(xl) {
|
|
145
158
|
width: 208px;
|
|
146
159
|
}
|
|
147
160
|
}
|
|
148
161
|
|
|
149
162
|
.poster-wrapper .sponsor {
|
|
150
|
-
@include media-breakpoint-up(
|
|
163
|
+
@include media-breakpoint-up(lg) {
|
|
151
164
|
display: none;
|
|
152
165
|
}
|
|
153
166
|
}
|
|
@@ -169,36 +182,16 @@ s72-element-switcher,
|
|
|
169
182
|
|
|
170
183
|
h1 {
|
|
171
184
|
animation: fadein 2s;
|
|
172
|
-
font-size: 28px;
|
|
173
|
-
font-weight: $font-weight-bold;
|
|
174
185
|
margin-bottom: 0;
|
|
175
186
|
max-width: 728px;
|
|
176
187
|
text-shadow: none;
|
|
177
188
|
|
|
178
|
-
@include media-breakpoint-up(md) {
|
|
179
|
-
font-size: 34px;
|
|
180
|
-
}
|
|
181
|
-
@include media-breakpoint-up(lg) {
|
|
182
|
-
font-size: 38px;
|
|
183
|
-
}
|
|
184
189
|
@include media-breakpoint-up(xxxl) {
|
|
185
|
-
font-size: 54px;
|
|
186
190
|
max-width: 1100px;
|
|
187
191
|
}
|
|
188
|
-
|
|
189
|
-
small {
|
|
190
|
-
font-size: 24px;
|
|
191
|
-
}
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
.meta-item-tagline {
|
|
195
|
-
color: rgba(var(--body-color-rgb), 0.8);
|
|
196
|
-
font-size: 14px;
|
|
197
|
-
font-weight: $font-weight-normal;
|
|
198
|
-
@include media-breakpoint-up(xxxl) {
|
|
199
|
-
font-size: 18px;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
195
|
.meta-item-tagline-item,
|
|
203
196
|
.meta-item-tagline-divider {
|
|
204
197
|
animation: fadein 2s;
|
|
@@ -218,14 +211,6 @@ s72-element-switcher,
|
|
|
218
211
|
|
|
219
212
|
p {
|
|
220
213
|
animation: fadein 2s;
|
|
221
|
-
font-size: 12px;
|
|
222
|
-
font-weight: $font-weight-normal;
|
|
223
|
-
@include media-breakpoint-up(lg) {
|
|
224
|
-
font-size: 14px;
|
|
225
|
-
}
|
|
226
|
-
@include media-breakpoint-up(xxxl) {
|
|
227
|
-
font-size: 18px;
|
|
228
|
-
}
|
|
229
214
|
}
|
|
230
215
|
|
|
231
216
|
a {
|
|
@@ -244,30 +229,15 @@ s72-element-switcher,
|
|
|
244
229
|
h4 {
|
|
245
230
|
animation: fadein 2s;
|
|
246
231
|
color: var(--body-color);
|
|
247
|
-
font-size: 8px;
|
|
248
|
-
font-weight: $font-weight-bold;
|
|
249
|
-
margin-bottom: 0;
|
|
250
|
-
padding-bottom: 0;
|
|
251
|
-
@include media-breakpoint-up(md) {
|
|
252
|
-
font-size: 12px;
|
|
253
|
-
}
|
|
254
232
|
}
|
|
255
233
|
|
|
256
234
|
p {
|
|
257
235
|
animation: fadein 2s;
|
|
258
236
|
color: var(--body-color);
|
|
259
|
-
font-size: 12px;
|
|
260
|
-
font-weight: $font-weight-light;
|
|
261
|
-
margin-bottom: 0;
|
|
262
|
-
@include media-breakpoint-up(md) {
|
|
263
|
-
font-size: 12px;
|
|
264
|
-
}
|
|
265
237
|
}
|
|
266
238
|
|
|
267
239
|
a {
|
|
268
|
-
@include a;
|
|
269
240
|
animation: fadein 2s;
|
|
270
|
-
font-size: 12px;
|
|
271
241
|
}
|
|
272
242
|
}
|
|
273
243
|
}
|
|
@@ -404,12 +374,15 @@ s72-element-switcher,
|
|
|
404
374
|
margin-bottom: 40px;
|
|
405
375
|
|
|
406
376
|
h2 {
|
|
407
|
-
|
|
408
|
-
|
|
377
|
+
@include heading-3-style;
|
|
378
|
+
}
|
|
409
379
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
380
|
+
h3 {
|
|
381
|
+
@include subtitle-1-style;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.runtime {
|
|
385
|
+
@include subtitle-2-style;
|
|
413
386
|
}
|
|
414
387
|
}
|
|
415
388
|
|
|
@@ -422,15 +395,19 @@ s72-element-switcher,
|
|
|
422
395
|
.sponsor {
|
|
423
396
|
display: none;
|
|
424
397
|
padding-top: 10px;
|
|
425
|
-
@include media-breakpoint-up(
|
|
398
|
+
@include media-breakpoint-up(lg) {
|
|
426
399
|
display: block;
|
|
427
400
|
}
|
|
428
401
|
}
|
|
429
402
|
}
|
|
430
403
|
|
|
431
404
|
.sponsor {
|
|
432
|
-
margin-bottom:
|
|
405
|
+
margin-bottom: 24px;
|
|
433
406
|
max-width: 250px;
|
|
407
|
+
|
|
408
|
+
div {
|
|
409
|
+
margin-bottom: 4px;
|
|
410
|
+
}
|
|
434
411
|
}
|
|
435
412
|
|
|
436
413
|
.meta-detail-content .sponsor {
|
|
@@ -439,7 +416,10 @@ s72-element-switcher,
|
|
|
439
416
|
}
|
|
440
417
|
|
|
441
418
|
s72-element-switcher {
|
|
442
|
-
margin-bottom:
|
|
419
|
+
margin-bottom: 60px;
|
|
420
|
+
@include media-breakpoint-up(sm) {
|
|
421
|
+
margin-bottom: 100px;
|
|
422
|
+
}
|
|
443
423
|
}
|
|
444
424
|
|
|
445
425
|
.meta-detail-info {
|
|
@@ -450,4 +430,12 @@ s72-element-switcher {
|
|
|
450
430
|
@include media-breakpoint-up(lg) {
|
|
451
431
|
grid-template-columns: repeat(2, 1fr);
|
|
452
432
|
}
|
|
433
|
+
|
|
434
|
+
p {
|
|
435
|
+
margin-bottom: 0;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
h2 {
|
|
439
|
+
@include caption-1-style;
|
|
440
|
+
}
|
|
453
441
|
}
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
.meta-item-tagline {
|
|
2
2
|
@extend .list-inline;
|
|
3
|
-
|
|
4
|
-
@include media-breakpoint-up(md) {
|
|
5
|
-
font-size: 14px;
|
|
6
|
-
}
|
|
7
|
-
|
|
3
|
+
@include overline-style;
|
|
8
4
|
.meta-item-tagline-item,
|
|
9
5
|
.meta-item-tagline-divider {
|
|
10
6
|
@extend .d-inline;
|
|
@@ -57,5 +53,5 @@
|
|
|
57
53
|
align-items: center;
|
|
58
54
|
display: flex !important;
|
|
59
55
|
padding-bottom: 14px;
|
|
60
|
-
padding-top:
|
|
56
|
+
padding-top: 5px;
|
|
61
57
|
}
|
|
@@ -83,14 +83,10 @@
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
.meta-item-synopsis {
|
|
86
|
-
color: $meta-item-body-color;
|
|
87
86
|
display: none;
|
|
88
|
-
font-size: 12px;
|
|
89
|
-
font-weight: $font-weight-normal;
|
|
90
87
|
|
|
91
88
|
@include media-breakpoint-up(lg) {
|
|
92
89
|
display: block;
|
|
93
|
-
font-size: 12px;
|
|
94
90
|
padding-top: 10px;
|
|
95
91
|
}
|
|
96
92
|
}
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
|
|
14
14
|
h3 {
|
|
15
15
|
color: var(--body-color);
|
|
16
|
-
font-size: 16px;
|
|
17
|
-
font-weight: $font-weight-normal;
|
|
18
|
-
letter-spacing: 0.4px;
|
|
19
16
|
margin-bottom: 15px;
|
|
20
17
|
|
|
21
18
|
@include media-breakpoint-up(sm) {
|
|
@@ -59,7 +56,6 @@
|
|
|
59
56
|
}
|
|
60
57
|
|
|
61
58
|
.runtime {
|
|
62
|
-
font-size: 14px;
|
|
63
59
|
line-height: 14px;
|
|
64
60
|
}
|
|
65
61
|
|
package/site/styles/_mixins.scss
CHANGED
|
@@ -25,25 +25,27 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
// Easing gradients created using this tool: https://larsenwork.com/easing-gradients/#editor
|
|
28
|
+
// This gradient has solid colour from 85% to 100%.
|
|
28
29
|
.carousel-bottom-gradient {
|
|
29
30
|
background: linear-gradient(
|
|
30
31
|
to bottom,
|
|
31
32
|
rgba(var(--body-bg-rgb), 0) 0%,
|
|
32
|
-
rgba(var(--body-bg-rgb), 0.013)
|
|
33
|
-
rgba(var(--body-bg-rgb), 0.049)
|
|
34
|
-
rgba(var(--body-bg-rgb), 0.104)
|
|
35
|
-
rgba(var(--body-bg-rgb), 0.175)
|
|
36
|
-
rgba(var(--body-bg-rgb), 0.259)
|
|
37
|
-
rgba(var(--body-bg-rgb), 0.352)
|
|
38
|
-
rgba(var(--body-bg-rgb), 0.45)
|
|
39
|
-
rgba(var(--body-bg-rgb), 0.55)
|
|
40
|
-
rgba(var(--body-bg-rgb), 0.648)
|
|
41
|
-
rgba(var(--body-bg-rgb), 0.741)
|
|
42
|
-
rgba(var(--body-bg-rgb), 0.825)
|
|
43
|
-
rgba(var(--body-bg-rgb), 0.896)
|
|
44
|
-
rgba(var(--body-bg-rgb), 0.951)
|
|
45
|
-
rgba(var(--body-bg-rgb), 0.987)
|
|
46
|
-
|
|
33
|
+
rgba(var(--body-bg-rgb), 0.013) 6.9%,
|
|
34
|
+
rgba(var(--body-bg-rgb), 0.049) 13.2%,
|
|
35
|
+
rgba(var(--body-bg-rgb), 0.104) 19.1%,
|
|
36
|
+
rgba(var(--body-bg-rgb), 0.175) 24.7%,
|
|
37
|
+
rgba(var(--body-bg-rgb), 0.259) 30%,
|
|
38
|
+
rgba(var(--body-bg-rgb), 0.352) 35%,
|
|
39
|
+
rgba(var(--body-bg-rgb), 0.45) 40%,
|
|
40
|
+
rgba(var(--body-bg-rgb), 0.55) 45%,
|
|
41
|
+
rgba(var(--body-bg-rgb), 0.648) 50%,
|
|
42
|
+
rgba(var(--body-bg-rgb), 0.741) 55%,
|
|
43
|
+
rgba(var(--body-bg-rgb), 0.825) 60.4%,
|
|
44
|
+
rgba(var(--body-bg-rgb), 0.896) 65.9%,
|
|
45
|
+
rgba(var(--body-bg-rgb), 0.951) 71.8%,
|
|
46
|
+
rgba(var(--body-bg-rgb), 0.987) 78.1%,
|
|
47
|
+
rgb(var(--body-bg-rgb)) 85%,
|
|
48
|
+
rgb(var(--body-bg-rgb)) 100%
|
|
47
49
|
);
|
|
48
50
|
}
|
|
49
51
|
|
package/site/styles/_pages.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.page {
|
|
2
2
|
flex: 1 0 auto;
|
|
3
|
+
|
|
3
4
|
@include media-breakpoint-up(md) {
|
|
4
5
|
padding-bottom: $grid-gutter-width;
|
|
5
6
|
}
|
|
@@ -12,38 +13,13 @@
|
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
.page-header {
|
|
16
|
+
padding-bottom: 30px;
|
|
15
17
|
padding-left: 20px;
|
|
16
18
|
padding-right: 20px;
|
|
17
19
|
@include media-breakpoint-up(lg) {
|
|
18
|
-
padding-bottom: 20px;
|
|
19
20
|
padding-left: 50px;
|
|
20
21
|
padding-right: 50px;
|
|
21
22
|
}
|
|
22
|
-
|
|
23
|
-
h1 {
|
|
24
|
-
font-size: 20px;
|
|
25
|
-
font-weight: $font-weight-bold;
|
|
26
|
-
margin-bottom: 0;
|
|
27
|
-
@include media-breakpoint-up(md) {
|
|
28
|
-
font-size: 28px;
|
|
29
|
-
}
|
|
30
|
-
@include media-breakpoint-up(xl) {
|
|
31
|
-
font-size: 38px;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
p {
|
|
36
|
-
font-size: 14px;
|
|
37
|
-
font-weight: normal;
|
|
38
|
-
padding-top: 5px;
|
|
39
|
-
@include media-breakpoint-up(md) {
|
|
40
|
-
font-size: 16px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
a {
|
|
44
|
-
@include a;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
23
|
}
|
|
48
24
|
|
|
49
25
|
.page-content {
|
|
@@ -76,6 +52,10 @@
|
|
|
76
52
|
@include media-breakpoint-up(lg) {
|
|
77
53
|
padding: var(--page-padding-top-lg) 0 0 0;
|
|
78
54
|
}
|
|
55
|
+
|
|
56
|
+
h1 {
|
|
57
|
+
@include heading-2-style;
|
|
58
|
+
}
|
|
79
59
|
}
|
|
80
60
|
|
|
81
61
|
.form-page {
|
|
@@ -85,11 +65,13 @@
|
|
|
85
65
|
.page-header {
|
|
86
66
|
h1,
|
|
87
67
|
p {
|
|
88
|
-
margin:
|
|
68
|
+
margin-left: auto;
|
|
69
|
+
margin-right: auto;
|
|
89
70
|
max-width: 400px;
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
71
|
+
text-align: center;
|
|
72
|
+
}
|
|
73
|
+
p {
|
|
74
|
+
@include heading-4-style;
|
|
93
75
|
}
|
|
94
76
|
}
|
|
95
77
|
|
|
@@ -107,18 +89,12 @@
|
|
|
107
89
|
padding: 20px 50px 0;
|
|
108
90
|
}
|
|
109
91
|
|
|
110
|
-
h4,
|
|
111
|
-
h5 {
|
|
112
|
-
font-size: 16px;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
92
|
p {
|
|
116
|
-
font-size: 14px;
|
|
117
93
|
word-wrap: break-word;
|
|
118
94
|
}
|
|
119
95
|
|
|
120
96
|
strong {
|
|
121
|
-
|
|
97
|
+
@include caption-1-style;
|
|
122
98
|
}
|
|
123
99
|
|
|
124
100
|
a:not(.signup-link) {
|
|
@@ -173,7 +149,6 @@
|
|
|
173
149
|
@extend .col-4;
|
|
174
150
|
@extend .col-md-3;
|
|
175
151
|
@extend .col-xl-2;
|
|
176
|
-
padding: 0 5px 10px;
|
|
177
152
|
}
|
|
178
153
|
}
|
|
179
154
|
|
|
@@ -191,6 +166,10 @@
|
|
|
191
166
|
h1 {
|
|
192
167
|
margin-bottom: $headings-margin-bottom;
|
|
193
168
|
}
|
|
169
|
+
|
|
170
|
+
p {
|
|
171
|
+
@include heading-4-style;
|
|
172
|
+
}
|
|
194
173
|
}
|
|
195
174
|
|
|
196
175
|
.s72-plans,
|
|
@@ -297,18 +276,11 @@
|
|
|
297
276
|
max-width: 660px;
|
|
298
277
|
|
|
299
278
|
h2 {
|
|
300
|
-
font-size: 24px;
|
|
301
279
|
text-align: center;
|
|
302
|
-
@include media-breakpoint-up(md) {
|
|
303
|
-
font-size: 2rem;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
p {
|
|
308
|
-
font-size: 12px;
|
|
309
|
-
@include media-breakpoint-up(md) {
|
|
310
|
-
font-size: 16px;
|
|
311
|
-
}
|
|
312
280
|
}
|
|
313
281
|
}
|
|
314
282
|
}
|
|
283
|
+
|
|
284
|
+
.acceptinvite-invalid-token {
|
|
285
|
+
@include heading-4-style;
|
|
286
|
+
}
|
package/site/styles/_plans.scss
CHANGED
package/site/styles/_search.scss
CHANGED
|
@@ -4,4 +4,17 @@
|
|
|
4
4
|
@include media-breakpoint-up(lg) {
|
|
5
5
|
display: block;
|
|
6
6
|
}
|
|
7
|
+
|
|
8
|
+
&.s72-tooltip-top .s72-tooltip-arrow::before {
|
|
9
|
+
border-top-color: var(--tooltip-arrow-color);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&.s72-tooltip-bottom .s72-tooltip-arrow::before {
|
|
13
|
+
border-bottom-color: var(--tooltip-arrow-color);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.s72-tooltip-inner {
|
|
17
|
+
background-color: var(--tooltip-bg);
|
|
18
|
+
color: var(--tooltip-color);
|
|
19
|
+
}
|
|
7
20
|
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
@mixin typography-style(
|
|
2
|
+
$font-size,
|
|
3
|
+
$letter-spacing: null,
|
|
4
|
+
$font-weight: null,
|
|
5
|
+
$margin-bottom: null,
|
|
6
|
+
$font-color: null,
|
|
7
|
+
$line-height: null
|
|
8
|
+
) {
|
|
9
|
+
color: $font-color;
|
|
10
|
+
font-size: $font-size;
|
|
11
|
+
font-weight: $font-weight;
|
|
12
|
+
letter-spacing: $letter-spacing;
|
|
13
|
+
line-height: $line-height;
|
|
14
|
+
margin-bottom: $margin-bottom;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@mixin heading-1-style() {
|
|
18
|
+
@include typography-style(32px, 0.4px, $font-weight-normal, 8px, var(--body-color));
|
|
19
|
+
@include media-breakpoint-up(xs) {
|
|
20
|
+
@include typography-style(45px);
|
|
21
|
+
}
|
|
22
|
+
small {
|
|
23
|
+
@include typography-style(24px);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@mixin heading-2-style() {
|
|
28
|
+
@include typography-style(29px, 0.6px, $font-weight-normal, 13px);
|
|
29
|
+
@include media-breakpoint-up(sm) {
|
|
30
|
+
@include typography-style(35px);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@mixin heading-3-style() {
|
|
35
|
+
@include typography-style(20px, 0, $font-weight-normal, 6px);
|
|
36
|
+
@include media-breakpoint-up(sm) {
|
|
37
|
+
@include typography-style(23px, 0.4px);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@mixin heading-4-style() {
|
|
42
|
+
@include typography-style(18px, null, $font-weight-light, 20px);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@mixin body-1-style() {
|
|
46
|
+
@include typography-style(16px, 0.5px, $font-weight-light, null, null, 23px);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@mixin body-2-style() {
|
|
50
|
+
@include typography-style(14px, 0.4px);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@mixin subtitle-1-style() {
|
|
54
|
+
@include typography-style(16px, 0.2px, $font-weight-light, 2px);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@mixin subtitle-2-style() {
|
|
58
|
+
@include typography-style(14px, 0.2px, $font-weight-normal, 12px);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@mixin caption-1-style() {
|
|
62
|
+
@include typography-style(16px, 0.5px, $font-weight-bold, 4px);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@mixin overline-style() {
|
|
66
|
+
@include typography-style(14px, 0.8px, $font-weight-light);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
h1 {
|
|
70
|
+
@include heading-1-style();
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
h2 {
|
|
74
|
+
@include heading-2-style();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
h3 {
|
|
78
|
+
@include heading-3-style();
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
h4 {
|
|
82
|
+
@include heading-4-style();
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
p {
|
|
86
|
+
@include body-1-style();
|
|
87
|
+
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--body-bg-accent-rgb: 25, 25, 25; // darken(body-bg, 10%) OR lighten(body-bg, 10%)
|
|
12
12
|
--link-color-hover-rgb: 217, 217, 217; // darken(body-color, 15%)
|
|
13
13
|
--input-focus-border-color-rgb: 131, 210, 216; // lighten(primary, 25%)
|
|
14
|
+
--main-content-icon-hover-rgb: 207, 207, 207; // white .8 opacity
|
|
14
15
|
|
|
15
16
|
--primary: rgb(var(--primary-rgb));
|
|
16
17
|
--secondary: rgb(var(--secondary-rgb));
|
|
@@ -20,6 +21,10 @@
|
|
|
20
21
|
--link-color: var(--body-color);
|
|
21
22
|
--link-color-hover: rgb(var(--link-color-hover-rgb));
|
|
22
23
|
--input-focus-border-color: rgb(var(--input-focus-border-color-rgb));
|
|
24
|
+
--main-content-icon-hover: rgb(var(--main-content-icon-hover-rgb));
|
|
25
|
+
--tooltip-color: var(--body-bg, #000);
|
|
26
|
+
--tooltip-bg: var(--primary, #00a3ff);
|
|
27
|
+
--tooltip-arrow-color: var(--tooltip-bg);
|
|
23
28
|
|
|
24
29
|
--input-height: 40px;
|
|
25
30
|
|
|
@@ -29,10 +34,15 @@
|
|
|
29
34
|
--navbar-brand-min-width-lg: 126px;
|
|
30
35
|
--navbar-brand-min-width-xl: 126px;
|
|
31
36
|
|
|
32
|
-
--carousel-height:
|
|
33
|
-
--carousel-height-sm:
|
|
34
|
-
--carousel-height-lg:
|
|
35
|
-
--carousel-bottom-gradient-height:
|
|
37
|
+
--carousel-height: 75vh;
|
|
38
|
+
--carousel-height-sm: 75vh;
|
|
39
|
+
--carousel-height-lg: 75vh;
|
|
40
|
+
--carousel-bottom-gradient-height: 200px; // Increase this to 300px for light theme.
|
|
41
|
+
--carousel-bottom-gradient-height-sm: 200px; // Increase this to 300px for light theme.
|
|
42
|
+
--carousel-bottom-gradient-height-lg: 200px; // Increase this to 600px for light theme.
|
|
43
|
+
--carousel-image-object-position: center;
|
|
44
|
+
--carousel-image-object-position-sm: center;
|
|
45
|
+
--carousel-image-object-position-lg: center;
|
|
36
46
|
|
|
37
47
|
--page-padding-top: 120px;
|
|
38
48
|
--page-padding-top-md: 120px;
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
|
|
26
26
|
.s72-userwishlist-buttons {
|
|
27
27
|
.s72-btn-wishlist {
|
|
28
|
-
@extend .btn;
|
|
29
|
-
padding-left: 0;
|
|
30
|
-
|
|
31
28
|
.s72-icon {
|
|
32
|
-
font-size:
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
font-size: 25px !important;
|
|
30
|
+
margin: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.s72-icon-loading,
|
|
34
|
+
.s72-icon-errored {
|
|
35
|
+
display: none;
|
|
35
36
|
}
|
|
36
37
|
}
|
|
37
38
|
}
|
|
38
39
|
|
|
39
|
-
.s72-userwishlist-buttons .s72-btn-wishlist
|
|
40
|
-
.meta-award-nomination {
|
|
40
|
+
.s72-userwishlist-buttons .s72-btn-wishlist {
|
|
41
41
|
font-size: 12px;
|
|
42
42
|
font-weight: $font-weight-bold;
|
|
43
43
|
|
|
@@ -49,12 +49,6 @@
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
.s72-userwishlist-buttons .s72-btn-wishlist {
|
|
53
|
-
margin-right: 0.5rem;
|
|
54
|
-
padding-bottom: 3px;
|
|
55
|
-
padding-top: 3px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
52
|
.poster .s72-userwishlist-buttons .s72-btn-wishlist {
|
|
59
53
|
margin: 0;
|
|
60
54
|
padding: 0;
|
package/site/styles/main.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{{
|
|
2
|
-
<a class="footer-brand-link" href="{{
|
|
3
|
-
<s72-image src="/images/common/logo.png" alt="{{
|
|
1
|
+
{{block footerBrand()}}
|
|
2
|
+
<a class="footer-brand-link" href="{{routeToPath("/")}}" aria-label="{{site.Config.GetSiteName()}}">
|
|
3
|
+
<s72-image class="footer-brand-image" src="/images/common/logo.png" alt="{{site.Config.GetSiteName()}}"></s72-image>
|
|
4
4
|
</a>
|
|
5
|
-
{{
|
|
5
|
+
{{end}}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
<header class="navigation" data-toggle="affix">
|
|
7
7
|
{{yield headerBanner()}}
|
|
8
8
|
<div class="navbar-brand-container-tablet">
|
|
9
|
-
<a class="navbar-brand" href="{{
|
|
9
|
+
<a class="navbar-brand" href="{{routeToPath("/")}}">{{site.Config.GetSiteName()}}</a>
|
|
10
10
|
</div>
|
|
11
11
|
<div class="navbar" aria-label="{{i18n("wcag_aria_label_nav_main")}}">
|
|
12
12
|
<div class="navbar-brand-container">
|
|
13
|
-
<a class="navbar-brand" href="{{
|
|
13
|
+
<a class="navbar-brand" href="{{routeToPath("/")}}">{{site.Config.GetSiteName()}}</a>
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
16
|
{{if config("search_disabled") != "true"}}
|