@scrippsproduct/entertainment-sites-css 1.0.4 → 1.1.1-7.alpha.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 +24 -13
- package/dist/css/base.css.map +1 -1
- package/dist/css/base.min.css +1 -1
- package/dist/css/find-us.css +7 -8
- package/dist/css/find-us.css.map +1 -1
- package/dist/css/find-us.min.css +1 -1
- package/dist/css/header.css +41 -45
- package/dist/css/header.css.map +1 -1
- package/dist/css/header.min.css +1 -1
- package/dist/css/home.css +22 -4
- package/dist/css/home.css.map +1 -1
- package/dist/css/home.min.css +1 -1
- package/dist/css/index.css +141 -139
- package/dist/css/index.css.map +1 -1
- package/dist/css/index.min.css +1 -1
- package/dist/css/privacy-center.css +1 -1
- package/dist/css/privacy-center.css.map +1 -1
- package/dist/css/privacy-center.min.css +1 -1
- package/dist/css/schedule.css +42 -18
- package/dist/css/schedule.css.map +1 -1
- package/dist/css/schedule.min.css +1 -1
- package/dist/css/show-details.css +4 -0
- package/dist/css/show-details.css.map +1 -1
- package/dist/css/show-details.min.css +1 -1
- package/package.json +5 -2
- package/src/base.scss +24 -14
- package/src/find-us.scss +8 -9
- package/src/header.scss +46 -58
- package/src/home.scss +27 -4
- package/src/index.scss +16 -16
- package/src/privacy-center.scss +1 -1
- package/src/schedule.scss +45 -18
- package/src/show-details.scss +6 -0
package/src/base.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'reset';
|
|
2
2
|
|
|
3
3
|
html {
|
|
4
4
|
font-family: var(--main-font-family);
|
|
@@ -83,6 +83,18 @@ site-wrapper {
|
|
|
83
83
|
animation-timing-function: ease-in;
|
|
84
84
|
animation-fill-mode: forwards;
|
|
85
85
|
opacity: 0;
|
|
86
|
+
|
|
87
|
+
&:has(hr.header-divider) {
|
|
88
|
+
grid-template-rows: auto auto 1fr auto;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@media screen and (max-width: 60rem) {
|
|
92
|
+
padding-block-start: 6.5rem;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.main-content:empty {
|
|
97
|
+
min-height: 100dvh;
|
|
86
98
|
}
|
|
87
99
|
|
|
88
100
|
@keyframes pageFadeIn {
|
|
@@ -115,8 +127,9 @@ content-constrainer {
|
|
|
115
127
|
hr {
|
|
116
128
|
width: min(calc(100% - 13.125rem), 125rem);
|
|
117
129
|
margin: auto;
|
|
118
|
-
border:
|
|
119
|
-
border-
|
|
130
|
+
border-color: var(--theme-color-500);
|
|
131
|
+
border-style: solid;
|
|
132
|
+
border-width: 0 0 1px;
|
|
120
133
|
}
|
|
121
134
|
|
|
122
135
|
error-handler {
|
|
@@ -160,8 +173,8 @@ error-handler {
|
|
|
160
173
|
|
|
161
174
|
.content-constrainer--lead-container {
|
|
162
175
|
border-bottom: none;
|
|
163
|
-
padding-top:
|
|
164
|
-
padding-block-start:
|
|
176
|
+
padding-top: 0;
|
|
177
|
+
padding-block-start: 0;
|
|
165
178
|
}
|
|
166
179
|
|
|
167
180
|
@media screen and (max-width: 60rem) {
|
|
@@ -175,16 +188,15 @@ error-handler {
|
|
|
175
188
|
margin-block-end: 2rem;
|
|
176
189
|
}
|
|
177
190
|
|
|
178
|
-
.main-content > .content-constrainer--no-padding:first-child {
|
|
179
|
-
padding-top: 0;
|
|
180
|
-
margin-top: 2rem;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
191
|
.main-content {
|
|
184
192
|
margin-top: 0;
|
|
185
193
|
|
|
186
194
|
&.info-page {
|
|
187
|
-
margin-top:
|
|
195
|
+
margin-top: 2rem;
|
|
196
|
+
|
|
197
|
+
@media screen and (max-width: 60rem) {
|
|
198
|
+
margin-top: 0;
|
|
199
|
+
}
|
|
188
200
|
}
|
|
189
201
|
}
|
|
190
202
|
|
|
@@ -200,9 +212,7 @@ error-handler {
|
|
|
200
212
|
text-transform: uppercase;
|
|
201
213
|
text-align: center;
|
|
202
214
|
text-wrap: balance;
|
|
203
|
-
|
|
204
|
-
padding-top: 2.5rem;
|
|
205
|
-
margin-top: 0.5rem;
|
|
215
|
+
margin-block: 0 2rem;
|
|
206
216
|
}
|
|
207
217
|
// 500px
|
|
208
218
|
@media screen and (max-width: 31.15rem) {
|
package/src/find-us.scss
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
.find-us-page {
|
|
2
|
-
.page-content-header {
|
|
3
|
-
margin: 0;
|
|
4
|
-
padding-block-start: 2.4rem;
|
|
5
|
-
text-wrap: balance;
|
|
6
|
-
line-height: 1;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
2
|
content-constarainer {
|
|
10
3
|
margin-block-start: 2rem;
|
|
11
4
|
padding-block-end: 9rem;
|
|
@@ -233,12 +226,19 @@ promotion-block {
|
|
|
233
226
|
|
|
234
227
|
.results-table__header-row { display: none;}
|
|
235
228
|
|
|
229
|
+
.search-results-header~div:not(.ad-wrapper) {
|
|
230
|
+
border-bottom: none;
|
|
231
|
+
}
|
|
232
|
+
|
|
236
233
|
.results-table__row {
|
|
237
234
|
flex-direction: column;
|
|
238
235
|
justify-content: flex-start;
|
|
239
236
|
padding: 0.7em 0;
|
|
240
|
-
border-bottom: 1px dotted;
|
|
241
237
|
text-align: left;
|
|
238
|
+
border-radius: 4px;
|
|
239
|
+
border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
|
|
240
|
+
margin-block-end: 1.25rem;
|
|
241
|
+
background-color: #f2f2f2;
|
|
242
242
|
|
|
243
243
|
&:nth-of-type(2) {
|
|
244
244
|
padding-top: 0.8rem;
|
|
@@ -272,7 +272,6 @@ promotion-block {
|
|
|
272
272
|
.find-us-page .page-content-header {
|
|
273
273
|
line-height: 1.1;
|
|
274
274
|
margin-bottom: 0.5rem;
|
|
275
|
-
padding-top: 3rem;
|
|
276
275
|
}
|
|
277
276
|
}
|
|
278
277
|
// 600px
|
package/src/header.scss
CHANGED
|
@@ -10,6 +10,7 @@ header {
|
|
|
10
10
|
header-menu-wrapper {
|
|
11
11
|
display: flex;
|
|
12
12
|
justify-content: flex-end;
|
|
13
|
+
align-items: flex-end;
|
|
13
14
|
margin-left: auto;
|
|
14
15
|
}
|
|
15
16
|
|
|
@@ -86,73 +87,68 @@ header logo-navigation {
|
|
|
86
87
|
display: none;
|
|
87
88
|
}
|
|
88
89
|
|
|
90
|
+
.header-divider {
|
|
91
|
+
margin-block: 2rem 2.5rem;
|
|
92
|
+
transition: border-color 0.325s ease-out;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.sroll-sentinel {
|
|
96
|
+
display: none;
|
|
97
|
+
}
|
|
98
|
+
|
|
89
99
|
@media screen and (max-width: 60rem) {
|
|
100
|
+
.scroll-sentinel {
|
|
101
|
+
position: absolute;
|
|
102
|
+
top: 10px; // Equivalent to your scrollY > 10 check
|
|
103
|
+
height: 1px;
|
|
104
|
+
width: 1px;
|
|
105
|
+
pointer-events: none;
|
|
106
|
+
visibility: hidden;
|
|
107
|
+
}
|
|
90
108
|
|
|
91
|
-
header {
|
|
92
|
-
|
|
109
|
+
site-wrapper:has(.mobile-nav--shadow) .header-divider {
|
|
110
|
+
border-color: transparent;
|
|
93
111
|
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
display: none;
|
|
112
|
+
|
|
113
|
+
.header-divider {
|
|
114
|
+
margin: 0 auto 2.5rem;
|
|
98
115
|
}
|
|
99
116
|
|
|
100
|
-
|
|
101
|
-
z-index: 50;
|
|
102
|
-
display: block;
|
|
117
|
+
header {
|
|
103
118
|
position: fixed;
|
|
119
|
+
top: 0;
|
|
120
|
+
left: 0;
|
|
104
121
|
width: 100%;
|
|
122
|
+
z-index: 30;
|
|
123
|
+
padding-top: 0;
|
|
124
|
+
|
|
125
|
+
> .desktop-nav {
|
|
126
|
+
display: none;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.mobile-nav {
|
|
131
|
+
z-index: 1;
|
|
132
|
+
display: block;
|
|
133
|
+
position: sticky;
|
|
105
134
|
top: 0;
|
|
106
135
|
left: 0;
|
|
107
136
|
width: 100%;
|
|
108
|
-
height:
|
|
137
|
+
height: 6.5rem;
|
|
138
|
+
transition: background-image 0.325s ease-out;
|
|
139
|
+
background-image: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0));
|
|
109
140
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
position: absolute;
|
|
113
|
-
content: "";
|
|
114
|
-
top: 0;
|
|
115
|
-
right: 0;
|
|
116
|
-
bottom: 0;
|
|
117
|
-
left: 0;
|
|
118
|
-
background: linear-gradient(180deg,rgba(0,0,0,.9) 0,rgba(0,0,0,0.3));
|
|
119
|
-
z-index: -1;
|
|
120
|
-
transition: opacity 0.2s linear;
|
|
121
|
-
opacity: 0;
|
|
141
|
+
&.mobile-nav--shadow {
|
|
142
|
+
background-image: linear-gradient(180deg,rgba(0,0,0,0.9) 0,rgba(0,0,0,0.5));
|
|
122
143
|
}
|
|
123
144
|
}
|
|
124
145
|
|
|
125
|
-
.mobile-nav
|
|
126
|
-
|
|
146
|
+
html.scrolled .mobile-nav {
|
|
147
|
+
background-image: linear-gradient(180deg,rgba(0,0,0,0.9) 0,rgba(0,0,0,0.5));
|
|
127
148
|
}
|
|
128
149
|
|
|
129
150
|
.drawer-navigation__nav-bar {
|
|
130
151
|
background: transparent;
|
|
131
|
-
|
|
132
|
-
// Gradient transition hack for nav-bar
|
|
133
|
-
&:before {
|
|
134
|
-
position: absolute;
|
|
135
|
-
content: "";
|
|
136
|
-
top: 0;
|
|
137
|
-
right: 0;
|
|
138
|
-
bottom: 0;
|
|
139
|
-
left: 0;
|
|
140
|
-
background: var(--theme-color-100);
|
|
141
|
-
z-index: -1;
|
|
142
|
-
transition: opacity 0.2s linear;
|
|
143
|
-
opacity: 0;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
// Make the gradient appear immediately in the navbar when it gets opened
|
|
148
|
-
.drawer-navigation__nav-bar--expanded {
|
|
149
|
-
background: var(--theme-color-100);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
// transition the nav bar gradient out gracefully when the nav menu closes
|
|
153
|
-
.drawer-navigation__nav-bar--expanded::before,
|
|
154
|
-
.drawer-navigation__nav-bar--closing::before {
|
|
155
|
-
opacity: 1;
|
|
156
152
|
}
|
|
157
153
|
|
|
158
154
|
.drawer-navigation__primary-navigation {
|
|
@@ -160,20 +156,12 @@ header logo-navigation {
|
|
|
160
156
|
}
|
|
161
157
|
|
|
162
158
|
.mobile-nav .main-navigation {
|
|
163
|
-
margin: 0
|
|
159
|
+
margin: 0 0 2rem;
|
|
164
160
|
}
|
|
165
161
|
|
|
166
162
|
.mobile-nav .main-navigation__nav-item {
|
|
167
163
|
margin-bottom: 1rem;
|
|
168
164
|
}
|
|
169
|
-
|
|
170
|
-
.drawer-navigation__nav-bar .image-replacement-anchor {
|
|
171
|
-
margin-left: 1rem;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.drawer-navigation__menu-toggle {
|
|
175
|
-
padding: 1em;
|
|
176
|
-
}
|
|
177
165
|
|
|
178
166
|
.drawer-navigation__separator {
|
|
179
167
|
margin: 1.5rem auto;
|
package/src/home.scss
CHANGED
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
img {
|
|
93
|
-
transition:
|
|
93
|
+
transition: transform 0.525s cubic-bezier(0.707, 1.081, 0.910, 0.998), filter 0.325s cubic-bezier(0.707, 1.081, 0.910, 0.998);
|
|
94
94
|
transform-origin: bottom;
|
|
95
95
|
}
|
|
96
96
|
|
|
@@ -102,7 +102,16 @@
|
|
|
102
102
|
.image-card-slide:hover {
|
|
103
103
|
a picture > img,
|
|
104
104
|
[data-cursor="pointer"] picture > img {
|
|
105
|
-
transform: scale(1.
|
|
105
|
+
transform: scale(1.01);
|
|
106
|
+
filter: brightness(1.05) contrast(1.05);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.show-slide,
|
|
111
|
+
.image-card-slide {
|
|
112
|
+
a:focus picture > img,
|
|
113
|
+
[data-cursor="pointer"] a:focus picture > img {
|
|
114
|
+
transform: scale(1.01);
|
|
106
115
|
filter: brightness(1.05) contrast(1.05);
|
|
107
116
|
}
|
|
108
117
|
}
|
|
@@ -135,6 +144,10 @@
|
|
|
135
144
|
align-items: center;
|
|
136
145
|
grid-template-columns: 1fr 1fr;
|
|
137
146
|
padding-block: 5rem;
|
|
147
|
+
|
|
148
|
+
@media screen and (max-width: 43.75rem) {
|
|
149
|
+
padding-block: 2rem 5rem;
|
|
150
|
+
}
|
|
138
151
|
}
|
|
139
152
|
|
|
140
153
|
.program-airdate {
|
|
@@ -534,6 +547,10 @@ featured-list {
|
|
|
534
547
|
filter: unset;
|
|
535
548
|
}
|
|
536
549
|
}
|
|
550
|
+
|
|
551
|
+
#carousel-promotions-row {
|
|
552
|
+
--_control-btns-offset-x: -2rem !important;
|
|
553
|
+
}
|
|
537
554
|
}
|
|
538
555
|
// 1170px
|
|
539
556
|
@media screen and (max-width: 73.125rem) {
|
|
@@ -597,7 +614,7 @@ featured-list {
|
|
|
597
614
|
--_slide-aspect-ratio: 1/1.1 !important;
|
|
598
615
|
|
|
599
616
|
cta-block {
|
|
600
|
-
padding-left:
|
|
617
|
+
padding-left: 0.5rem;
|
|
601
618
|
|
|
602
619
|
> div {
|
|
603
620
|
font-size: 1.5em;
|
|
@@ -655,7 +672,7 @@ featured-list {
|
|
|
655
672
|
@media screen and (max-width: 60rem) {
|
|
656
673
|
.on-now-section > content-constrainer {
|
|
657
674
|
grid-template-columns: 1fr;
|
|
658
|
-
gap:
|
|
675
|
+
gap: 0;
|
|
659
676
|
}
|
|
660
677
|
|
|
661
678
|
.program-on-now__image-wrapper {
|
|
@@ -693,6 +710,12 @@ featured-list {
|
|
|
693
710
|
.brand-promotion__item:last-child {
|
|
694
711
|
margin-block-end: 2rem;
|
|
695
712
|
}
|
|
713
|
+
|
|
714
|
+
.brand-promotion__item {
|
|
715
|
+
cta-block {
|
|
716
|
+
padding-left: 0rem;
|
|
717
|
+
}
|
|
718
|
+
}
|
|
696
719
|
}
|
|
697
720
|
// 700px
|
|
698
721
|
@media screen and (max-width: 43.75rem) {
|
package/src/index.scss
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@
|
|
10
|
-
@
|
|
11
|
-
@
|
|
12
|
-
@
|
|
13
|
-
@
|
|
14
|
-
@
|
|
15
|
-
@
|
|
16
|
-
@
|
|
1
|
+
@use "_reset";
|
|
2
|
+
@use "base";
|
|
3
|
+
@use "episode-guide";
|
|
4
|
+
@use "find-us";
|
|
5
|
+
@use "footer";
|
|
6
|
+
@use "header";
|
|
7
|
+
@use "home";
|
|
8
|
+
@use "page-not-found";
|
|
9
|
+
@use "privacy-center";
|
|
10
|
+
@use "privacy-policy";
|
|
11
|
+
@use "schedule";
|
|
12
|
+
@use "settings";
|
|
13
|
+
@use "show-details";
|
|
14
|
+
@use "shows";
|
|
15
|
+
@use "special-lander";
|
|
16
|
+
@use "sweeps";
|
|
17
17
|
|
package/src/privacy-center.scss
CHANGED
package/src/schedule.scss
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
sticky-content-wrapper {
|
|
2
2
|
display: block;
|
|
3
3
|
position: sticky;
|
|
4
|
-
top: -
|
|
4
|
+
top: -1px;
|
|
5
5
|
z-index: 10;
|
|
6
|
+
}
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
@media screen and (max-width: 60rem) {
|
|
9
|
+
sticky-content-wrapper {
|
|
10
|
+
top: 6.3rem;
|
|
9
11
|
}
|
|
10
12
|
}
|
|
11
13
|
|
|
14
|
+
sticky-content-wrapper[data-pinned-state=pinned] {
|
|
15
|
+
background-image: radial-gradient(ellipse at top left,var(--theme-color-200) 0,var(--theme-color-200) 50%,var(--theme-color-100) 90%);
|
|
16
|
+
}
|
|
17
|
+
|
|
12
18
|
.schedule-list__airdate {
|
|
13
19
|
font-size: 2.25rem;
|
|
14
20
|
font-weight: 500;
|
|
@@ -52,7 +58,6 @@ sticky-content-wrapper {
|
|
|
52
58
|
font-size: 1.125rem;
|
|
53
59
|
|
|
54
60
|
> div {
|
|
55
|
-
margin: 0.5rem 0 1rem;
|
|
56
61
|
|
|
57
62
|
&:first-of-type:not(:last-of-type) {
|
|
58
63
|
font-size: 1.372rem;
|
|
@@ -67,6 +72,12 @@ sticky-content-wrapper {
|
|
|
67
72
|
max-inline-size: 80ch;
|
|
68
73
|
margin-top: 1.5rem;
|
|
69
74
|
}
|
|
75
|
+
|
|
76
|
+
&:first-of-type {
|
|
77
|
+
@media screen and (max-width: 50rem){
|
|
78
|
+
margin-block-start: 0;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
70
81
|
}
|
|
71
82
|
|
|
72
83
|
> .string-list {
|
|
@@ -94,40 +105,47 @@ sticky-content-wrapper {
|
|
|
94
105
|
font-size: 1.125rem;
|
|
95
106
|
margin-bottom: 0.75rem;
|
|
96
107
|
margin-block-end: 0.75rem;
|
|
108
|
+
word-wrap: normal;
|
|
109
|
+
text-wrap: nowrap;
|
|
110
|
+
white-space: nowrap;
|
|
97
111
|
}
|
|
98
112
|
|
|
99
113
|
date-navigation {
|
|
100
|
-
padding-
|
|
101
|
-
transition: border-top 0.325s ease-in-out;
|
|
102
|
-
}
|
|
114
|
+
padding-block-start: 1rem;
|
|
103
115
|
|
|
104
|
-
|
|
105
|
-
|
|
116
|
+
@media screen and (max-width: 60rem) {
|
|
117
|
+
padding-block-start: 0;
|
|
118
|
+
}
|
|
106
119
|
}
|
|
107
120
|
|
|
108
121
|
.date-navigation__control {
|
|
109
122
|
background: transparent;
|
|
110
123
|
scale: 1.5;
|
|
111
|
-
translate: 0
|
|
124
|
+
translate: 0 1rem;
|
|
112
125
|
color: var(--mono-color-100);
|
|
113
126
|
}
|
|
114
127
|
|
|
115
128
|
.date-navigation__control--next {
|
|
116
|
-
inset-inline-end: -
|
|
129
|
+
inset-inline-end: -2rem;
|
|
117
130
|
}
|
|
118
131
|
|
|
119
132
|
.date-navigation__control--previous {
|
|
120
|
-
inset-inline-start: -
|
|
133
|
+
inset-inline-start: -2rem;
|
|
121
134
|
}
|
|
122
135
|
|
|
123
136
|
.date-navigation__item {
|
|
137
|
+
--flex-basis: 14.285714%;
|
|
124
138
|
border-right: 1px solid rgba(255,255,255, 0.4);
|
|
125
|
-
flex-basis:
|
|
139
|
+
flex-basis: var(--flex-basis);
|
|
126
140
|
text-align: center;
|
|
127
141
|
|
|
128
142
|
&:last-child {
|
|
129
143
|
border-width: 0;
|
|
130
144
|
}
|
|
145
|
+
|
|
146
|
+
@media screen and (max-width: 37.5rem) {
|
|
147
|
+
--flex-basis: 25%;
|
|
148
|
+
}
|
|
131
149
|
}
|
|
132
150
|
|
|
133
151
|
.date-navigation__list {
|
|
@@ -218,7 +236,7 @@ loading-wrapper {
|
|
|
218
236
|
}
|
|
219
237
|
|
|
220
238
|
.date-navigation__control--next {
|
|
221
|
-
inset-inline-end: -1.
|
|
239
|
+
inset-inline-end: -1.2rem;
|
|
222
240
|
}
|
|
223
241
|
|
|
224
242
|
.schedule-list__item {
|
|
@@ -256,8 +274,8 @@ loading-wrapper {
|
|
|
256
274
|
}
|
|
257
275
|
// 960px
|
|
258
276
|
@media screen and (max-width: 60rem) {
|
|
259
|
-
|
|
260
|
-
|
|
277
|
+
.date-navigation__control {
|
|
278
|
+
translate: 0 0.6rem;
|
|
261
279
|
}
|
|
262
280
|
}
|
|
263
281
|
// 800px
|
|
@@ -277,16 +295,25 @@ loading-wrapper {
|
|
|
277
295
|
@media screen and (max-width: 46.875rem) {
|
|
278
296
|
.date-navigation__control {
|
|
279
297
|
scale: 0.7;
|
|
280
|
-
translate: 0
|
|
298
|
+
translate: 0 -1rem;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.date-navigation__control--previous {
|
|
302
|
+
inset-inline-start: -1.6rem;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.date-navigation__control--next {
|
|
306
|
+
inset-inline-end: -1.5rem;
|
|
281
307
|
}
|
|
282
308
|
}
|
|
283
309
|
// 500px
|
|
284
|
-
@media screen and (max-width: 31.
|
|
310
|
+
@media screen and (max-width: 31.25rem) {
|
|
285
311
|
.date-navigation__weekday {
|
|
286
312
|
font-size: 1rem;
|
|
287
313
|
}
|
|
288
314
|
|
|
289
315
|
.date-navigation__date {
|
|
290
316
|
font-size: 0.8rem;
|
|
317
|
+
white-space: nowrap;
|
|
291
318
|
}
|
|
292
319
|
}
|