prismic-slicemachine-to-hydrogen-jrhcn 0.1.610 → 0.1.612
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles.css +121 -66
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles.css +121 -66
- package/dist/prismicio-types.d.ts +113 -40
- package/package.json +1 -1
package/dist/cjs/styles.css
CHANGED
|
@@ -6373,6 +6373,61 @@ it is unclear if all swatches from previous site are actively used
|
|
|
6373
6373
|
background-image: radial-gradient(circle farthest-corner at 8% 97%, rgb(233, 237, 152), rgb(245, 221, 129));
|
|
6374
6374
|
}
|
|
6375
6375
|
|
|
6376
|
+
.accordion {
|
|
6377
|
+
max-width: 1150px;
|
|
6378
|
+
margin: 0 auto;
|
|
6379
|
+
padding: 40px;
|
|
6380
|
+
}
|
|
6381
|
+
@media screen and (max-width: 760px) {
|
|
6382
|
+
.accordion {
|
|
6383
|
+
padding: 18px;
|
|
6384
|
+
}
|
|
6385
|
+
}
|
|
6386
|
+
.accordion .accordionTitle h2 {
|
|
6387
|
+
margin: 0;
|
|
6388
|
+
}
|
|
6389
|
+
.accordion .accordionItem {
|
|
6390
|
+
position: relative;
|
|
6391
|
+
}
|
|
6392
|
+
.accordion .accordionItem + .accordionItem {
|
|
6393
|
+
border-top: 1px solid #9b9b9b;
|
|
6394
|
+
}
|
|
6395
|
+
.accordion .accordionItem button.accordionItemTitle {
|
|
6396
|
+
font-family: "Galaxie Polaris Bold", sans-serif;
|
|
6397
|
+
font-weight: normal;
|
|
6398
|
+
letter-spacing: 0;
|
|
6399
|
+
text-transform: none;
|
|
6400
|
+
font-size: 1rem;
|
|
6401
|
+
background: transparent url("https://img.roka.com/hydrogen/public/img/symbol-plus-black.svg") right center no-repeat;
|
|
6402
|
+
border: none;
|
|
6403
|
+
cursor: pointer;
|
|
6404
|
+
padding: 20px 40px 20px 0;
|
|
6405
|
+
text-align: left;
|
|
6406
|
+
width: 100%;
|
|
6407
|
+
z-index: 1;
|
|
6408
|
+
}
|
|
6409
|
+
@media screen and (max-width: 760px) {
|
|
6410
|
+
.accordion .accordionItem button.accordionItemTitle {
|
|
6411
|
+
font-size: 1rem;
|
|
6412
|
+
}
|
|
6413
|
+
}
|
|
6414
|
+
.accordion .accordionItem button.accordionItemTitle.active {
|
|
6415
|
+
background: transparent url("https://img.roka.com/hydrogen/public/img/symbol-minus-black.svg") right center no-repeat;
|
|
6416
|
+
}
|
|
6417
|
+
.accordion .accordionItem .accordionItemContent {
|
|
6418
|
+
max-height: 0;
|
|
6419
|
+
max-width: 760px;
|
|
6420
|
+
opacity: 0;
|
|
6421
|
+
transition: all 0.333s ease-out;
|
|
6422
|
+
overflow: hidden;
|
|
6423
|
+
}
|
|
6424
|
+
.accordion .accordionItem .accordionItemContent > :first-child {
|
|
6425
|
+
margin: 0;
|
|
6426
|
+
}
|
|
6427
|
+
.accordion .accordionItem .accordionItemContent > :last-child {
|
|
6428
|
+
margin-bottom: 20px;
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6376
6431
|
.banner {
|
|
6377
6432
|
align-items: center;
|
|
6378
6433
|
display: flex;
|
|
@@ -15035,6 +15090,72 @@ input#yoga:checked + label:before {
|
|
|
15035
15090
|
}
|
|
15036
15091
|
}
|
|
15037
15092
|
/* Slide styles end */
|
|
15093
|
+
:root {
|
|
15094
|
+
/*
|
|
15095
|
+
--swiper-scrollbar-border-radius: 10px;
|
|
15096
|
+
--swiper-scrollbar-top: auto;
|
|
15097
|
+
--swiper-scrollbar-bottom: 4px;
|
|
15098
|
+
--swiper-scrollbar-left: auto;
|
|
15099
|
+
--swiper-scrollbar-right: 4px;
|
|
15100
|
+
--swiper-scrollbar-sides-offset: 1%;
|
|
15101
|
+
--swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
|
|
15102
|
+
--swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
|
|
15103
|
+
--swiper-scrollbar-size: 4px;
|
|
15104
|
+
*/
|
|
15105
|
+
}
|
|
15106
|
+
|
|
15107
|
+
.swiper-scrollbar {
|
|
15108
|
+
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15109
|
+
position: relative;
|
|
15110
|
+
touch-action: none;
|
|
15111
|
+
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
|
|
15112
|
+
}
|
|
15113
|
+
|
|
15114
|
+
.swiper-scrollbar-disabled > .swiper-scrollbar,
|
|
15115
|
+
.swiper-scrollbar.swiper-scrollbar-disabled {
|
|
15116
|
+
display: none !important;
|
|
15117
|
+
}
|
|
15118
|
+
|
|
15119
|
+
.swiper-horizontal > .swiper-scrollbar,
|
|
15120
|
+
.swiper-scrollbar.swiper-scrollbar-horizontal {
|
|
15121
|
+
position: absolute;
|
|
15122
|
+
left: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15123
|
+
bottom: var(--swiper-scrollbar-bottom, 4px);
|
|
15124
|
+
top: var(--swiper-scrollbar-top, auto);
|
|
15125
|
+
z-index: 50;
|
|
15126
|
+
height: var(--swiper-scrollbar-size, 4px);
|
|
15127
|
+
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15128
|
+
}
|
|
15129
|
+
|
|
15130
|
+
.swiper-vertical > .swiper-scrollbar,
|
|
15131
|
+
.swiper-scrollbar.swiper-scrollbar-vertical {
|
|
15132
|
+
position: absolute;
|
|
15133
|
+
left: var(--swiper-scrollbar-left, auto);
|
|
15134
|
+
right: var(--swiper-scrollbar-right, 4px);
|
|
15135
|
+
top: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15136
|
+
z-index: 50;
|
|
15137
|
+
width: var(--swiper-scrollbar-size, 4px);
|
|
15138
|
+
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15139
|
+
}
|
|
15140
|
+
|
|
15141
|
+
.swiper-scrollbar-drag {
|
|
15142
|
+
height: 100%;
|
|
15143
|
+
width: 100%;
|
|
15144
|
+
position: relative;
|
|
15145
|
+
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
|
|
15146
|
+
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15147
|
+
left: 0;
|
|
15148
|
+
top: 0;
|
|
15149
|
+
}
|
|
15150
|
+
|
|
15151
|
+
.swiper-scrollbar-cursor-drag {
|
|
15152
|
+
cursor: move;
|
|
15153
|
+
}
|
|
15154
|
+
|
|
15155
|
+
.swiper-scrollbar-lock {
|
|
15156
|
+
display: none;
|
|
15157
|
+
}
|
|
15158
|
+
|
|
15038
15159
|
:root {
|
|
15039
15160
|
--swiper-navigation-size: 44px;
|
|
15040
15161
|
/*
|
|
@@ -15135,72 +15256,6 @@ input#yoga:checked + label:before {
|
|
|
15135
15256
|
}
|
|
15136
15257
|
|
|
15137
15258
|
/* Navigation font end */
|
|
15138
|
-
:root {
|
|
15139
|
-
/*
|
|
15140
|
-
--swiper-scrollbar-border-radius: 10px;
|
|
15141
|
-
--swiper-scrollbar-top: auto;
|
|
15142
|
-
--swiper-scrollbar-bottom: 4px;
|
|
15143
|
-
--swiper-scrollbar-left: auto;
|
|
15144
|
-
--swiper-scrollbar-right: 4px;
|
|
15145
|
-
--swiper-scrollbar-sides-offset: 1%;
|
|
15146
|
-
--swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
|
|
15147
|
-
--swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
|
|
15148
|
-
--swiper-scrollbar-size: 4px;
|
|
15149
|
-
*/
|
|
15150
|
-
}
|
|
15151
|
-
|
|
15152
|
-
.swiper-scrollbar {
|
|
15153
|
-
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15154
|
-
position: relative;
|
|
15155
|
-
touch-action: none;
|
|
15156
|
-
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
|
|
15157
|
-
}
|
|
15158
|
-
|
|
15159
|
-
.swiper-scrollbar-disabled > .swiper-scrollbar,
|
|
15160
|
-
.swiper-scrollbar.swiper-scrollbar-disabled {
|
|
15161
|
-
display: none !important;
|
|
15162
|
-
}
|
|
15163
|
-
|
|
15164
|
-
.swiper-horizontal > .swiper-scrollbar,
|
|
15165
|
-
.swiper-scrollbar.swiper-scrollbar-horizontal {
|
|
15166
|
-
position: absolute;
|
|
15167
|
-
left: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15168
|
-
bottom: var(--swiper-scrollbar-bottom, 4px);
|
|
15169
|
-
top: var(--swiper-scrollbar-top, auto);
|
|
15170
|
-
z-index: 50;
|
|
15171
|
-
height: var(--swiper-scrollbar-size, 4px);
|
|
15172
|
-
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15173
|
-
}
|
|
15174
|
-
|
|
15175
|
-
.swiper-vertical > .swiper-scrollbar,
|
|
15176
|
-
.swiper-scrollbar.swiper-scrollbar-vertical {
|
|
15177
|
-
position: absolute;
|
|
15178
|
-
left: var(--swiper-scrollbar-left, auto);
|
|
15179
|
-
right: var(--swiper-scrollbar-right, 4px);
|
|
15180
|
-
top: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15181
|
-
z-index: 50;
|
|
15182
|
-
width: var(--swiper-scrollbar-size, 4px);
|
|
15183
|
-
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15184
|
-
}
|
|
15185
|
-
|
|
15186
|
-
.swiper-scrollbar-drag {
|
|
15187
|
-
height: 100%;
|
|
15188
|
-
width: 100%;
|
|
15189
|
-
position: relative;
|
|
15190
|
-
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
|
|
15191
|
-
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15192
|
-
left: 0;
|
|
15193
|
-
top: 0;
|
|
15194
|
-
}
|
|
15195
|
-
|
|
15196
|
-
.swiper-scrollbar-cursor-drag {
|
|
15197
|
-
cursor: move;
|
|
15198
|
-
}
|
|
15199
|
-
|
|
15200
|
-
.swiper-scrollbar-lock {
|
|
15201
|
-
display: none;
|
|
15202
|
-
}
|
|
15203
|
-
|
|
15204
15259
|
:root {
|
|
15205
15260
|
/*
|
|
15206
15261
|
--swiper-pagination-color: var(--swiper-theme-color);
|