layout-style-css 2.0.0 → 2.1.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/CHANGELOG.md +79 -50
- package/CONTRIBUTING.md +43 -43
- package/LICENSE +21 -21
- package/README.md +19 -14
- package/SECURITY.md +39 -39
- package/demo/assets/apple-touch-icon.svg +7 -7
- package/demo/assets/favicon.svg +7 -7
- package/demo/browserconfig.xml +9 -9
- package/demo/demo.js +128 -43
- package/demo/index.html +20 -18
- package/demo/robots.txt +4 -4
- package/demo/site.webmanifest +23 -23
- package/demo/sitemap.xml +9 -9
- package/dist/integrations/ui-style-kit.css +162 -162
- package/dist/layout-style-css.css +147 -104
- package/dist/layout-style-css.min.css +1 -1
- package/dist/legacy.css +137 -102
- package/dist/personalities/bauhaus.css +10 -7
- package/dist/personalities/bento.css +15 -12
- package/dist/personalities/brutalism.css +8 -5
- package/dist/personalities/cyberpunk.css +8 -5
- package/dist/personalities/f-pattern.css +14 -11
- package/dist/personalities/maximalist.css +17 -14
- package/dist/personalities/minimal-saas.css +8 -6
- package/dist/personalities/mondrian.css +10 -7
- package/dist/personalities/neumorphism.css +2 -2
- package/dist/personalities/retro-glass.css +10 -7
- package/dist/personalities/retrofuturism.css +8 -5
- package/dist/personalities/split-screen.css +1 -1
- package/dist/personalities/synthwave.css +2 -2
- package/dist/personalities/tactile.css +1 -1
- package/dist/personalities/y2k.css +8 -5
- package/dist/personalities/z-pattern.css +15 -12
- package/dist/recipes.css +10 -2
- package/docs/wiki/Demo-And-GitHub-Pages.md +1 -1
- package/docs/wiki/Getting-Started.md +1 -1
- package/docs/wiki/Home.md +4 -4
- package/docs/wiki/Installation-And-CDN.md +8 -9
- package/docs/wiki/Layout-Recipes.md +1 -1
- package/docs/wiki/Layout-Styles.md +1 -1
- package/docs/wiki/Migrating-To-2.0.md +7 -7
- package/docs/wiki/Release-And-Publishing.md +10 -8
- package/docs/wiki/UI-Style-Kit-Compatibility.md +8 -9
- package/package.json +78 -78
- package/styles/integrations/ui-style-kit.css +162 -162
- package/styles/personalities/bauhaus.css +10 -7
- package/styles/personalities/bento.css +15 -12
- package/styles/personalities/brutalism.css +8 -5
- package/styles/personalities/cyberpunk.css +8 -5
- package/styles/personalities/f-pattern.css +14 -11
- package/styles/personalities/maximalist.css +17 -14
- package/styles/personalities/minimal-saas.css +8 -6
- package/styles/personalities/mondrian.css +10 -7
- package/styles/personalities/neumorphism.css +2 -2
- package/styles/personalities/retro-glass.css +10 -7
- package/styles/personalities/retrofuturism.css +8 -5
- package/styles/personalities/split-screen.css +1 -1
- package/styles/personalities/synthwave.css +2 -2
- package/styles/personalities/tactile.css +1 -1
- package/styles/personalities/y2k.css +8 -5
- package/styles/personalities/z-pattern.css +15 -12
- package/styles/recipes.css +10 -2
package/dist/legacy.css
CHANGED
|
@@ -158,8 +158,14 @@
|
|
|
158
158
|
min-inline-size: 0;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
|
-
|
|
162
|
-
|
|
161
|
+
@container (min-width: 48rem) {
|
|
162
|
+
:where(.ly-root[data-layout="minimal-saas"], .ly-root[layout-style="minimal-saas"], .ly-root.ly-layout-minimal-saas, .ly-root.ly-style-minimal-saas) .ly-grid > :nth-child(4n + 1) {
|
|
163
|
+
grid-column: span 2;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
168
|
+
@container (min-width: 64rem) {
|
|
163
169
|
:where(.ly-root[data-layout="minimal-saas"], .ly-root[layout-style="minimal-saas"], .ly-root.ly-layout-minimal-saas, .ly-root.ly-style-minimal-saas)
|
|
164
170
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
165
171
|
grid-template-areas:
|
|
@@ -172,10 +178,6 @@
|
|
|
172
178
|
minmax(0, 1fr)
|
|
173
179
|
minmax(min(100%, 16rem), 0.28fr);
|
|
174
180
|
}
|
|
175
|
-
|
|
176
|
-
:where(.ly-root[data-layout="minimal-saas"], .ly-root[layout-style="minimal-saas"], .ly-root.ly-layout-minimal-saas, .ly-root.ly-style-minimal-saas) .ly-grid > :nth-child(4n + 1) {
|
|
177
|
-
grid-column: span 2;
|
|
178
|
-
}
|
|
179
181
|
}
|
|
180
182
|
|
|
181
183
|
/* V1 personality aliases for bento; generated from the canonical v2 source. */
|
|
@@ -190,7 +192,21 @@
|
|
|
190
192
|
min-inline-size: 0;
|
|
191
193
|
}
|
|
192
194
|
|
|
193
|
-
@container
|
|
195
|
+
@container (min-width: 48rem) {
|
|
196
|
+
:where(.ly-root[data-layout="bento"], .ly-root[layout-style="bento"], .ly-root.ly-layout-bento, .ly-root.ly-style-bento) .ly-grid > :nth-child(6n + 1) {
|
|
197
|
+
grid-column: span 2;
|
|
198
|
+
grid-row: span 2;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
:where(.ly-root[data-layout="bento"], .ly-root[layout-style="bento"], .ly-root.ly-layout-bento, .ly-root.ly-style-bento)
|
|
202
|
+
:where(.ly-card-grid, [data-ly-recipe="card-grid"])
|
|
203
|
+
> :nth-child(6n + 1) {
|
|
204
|
+
grid-column: span 2;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
209
|
+
@container (min-width: 64rem) {
|
|
194
210
|
:where(.ly-root[data-layout="bento"], .ly-root[layout-style="bento"], .ly-root.ly-layout-bento, .ly-root.ly-style-bento)
|
|
195
211
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
196
212
|
grid-template-areas:
|
|
@@ -204,17 +220,6 @@
|
|
|
204
220
|
minmax(0, 1fr)
|
|
205
221
|
minmax(0, 1fr);
|
|
206
222
|
}
|
|
207
|
-
|
|
208
|
-
:where(.ly-root[data-layout="bento"], .ly-root[layout-style="bento"], .ly-root.ly-layout-bento, .ly-root.ly-style-bento) .ly-grid > :nth-child(6n + 1) {
|
|
209
|
-
grid-column: span 2;
|
|
210
|
-
grid-row: span 2;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
:where(.ly-root[data-layout="bento"], .ly-root[layout-style="bento"], .ly-root.ly-layout-bento, .ly-root.ly-style-bento)
|
|
214
|
-
:where(.ly-card-grid, [data-ly-recipe="card-grid"])
|
|
215
|
-
> :nth-child(6n + 1) {
|
|
216
|
-
grid-column: span 2;
|
|
217
|
-
}
|
|
218
223
|
}
|
|
219
224
|
|
|
220
225
|
/* V1 personality aliases for maximalist; generated from the canonical v2 source. */
|
|
@@ -229,14 +234,29 @@
|
|
|
229
234
|
min-inline-size: 0;
|
|
230
235
|
}
|
|
231
236
|
|
|
232
|
-
@container
|
|
237
|
+
@container (min-width: 48rem) {
|
|
233
238
|
:where(.ly-root[data-layout="maximalist"], .ly-root[layout-style="maximalist"], .ly-root.ly-layout-maximalist, .ly-root.ly-style-maximalist)
|
|
234
239
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
235
240
|
grid-template-columns: minmax(min(100%, 18rem), 0.3fr) minmax(0, 1fr);
|
|
236
241
|
}
|
|
237
242
|
}
|
|
238
243
|
|
|
239
|
-
@container
|
|
244
|
+
@container (min-width: 56rem) {
|
|
245
|
+
:where(.ly-root[data-layout="maximalist"], .ly-root[layout-style="maximalist"], .ly-root.ly-layout-maximalist, .ly-root.ly-style-maximalist) .ly-grid > :nth-child(7n + 1) {
|
|
246
|
+
grid-column: span 3;
|
|
247
|
+
grid-row: span 2;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
:where(.ly-root[data-layout="maximalist"], .ly-root[layout-style="maximalist"], .ly-root.ly-layout-maximalist, .ly-root.ly-style-maximalist)
|
|
251
|
+
:where(.ly-gallery, [data-ly-recipe="gallery"])
|
|
252
|
+
> :nth-child(5n + 1) {
|
|
253
|
+
grid-column: span 2;
|
|
254
|
+
grid-row: span 2;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
/* The four-track shell waits for a locally feasible allocation. */
|
|
259
|
+
@container (min-width: 64rem) {
|
|
240
260
|
:where(.ly-root[data-layout="maximalist"], .ly-root[layout-style="maximalist"], .ly-root.ly-layout-maximalist, .ly-root.ly-style-maximalist)
|
|
241
261
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
242
262
|
grid-template-areas:
|
|
@@ -250,18 +270,6 @@
|
|
|
250
270
|
minmax(min(100%, 15rem), 0.32fr)
|
|
251
271
|
minmax(min(100%, 18rem), 0.38fr);
|
|
252
272
|
}
|
|
253
|
-
|
|
254
|
-
:where(.ly-root[data-layout="maximalist"], .ly-root[layout-style="maximalist"], .ly-root.ly-layout-maximalist, .ly-root.ly-style-maximalist) .ly-grid > :nth-child(7n + 1) {
|
|
255
|
-
grid-column: span 3;
|
|
256
|
-
grid-row: span 2;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
:where(.ly-root[data-layout="maximalist"], .ly-root[layout-style="maximalist"], .ly-root.ly-layout-maximalist, .ly-root.ly-style-maximalist)
|
|
260
|
-
:where(.ly-gallery, [data-ly-recipe="gallery"])
|
|
261
|
-
> :nth-child(5n + 1) {
|
|
262
|
-
grid-column: span 2;
|
|
263
|
-
grid-row: span 2;
|
|
264
|
-
}
|
|
265
273
|
}
|
|
266
274
|
|
|
267
275
|
/* V1 personality aliases for bauhaus; generated from the canonical v2 source. */
|
|
@@ -278,14 +286,22 @@
|
|
|
278
286
|
}
|
|
279
287
|
|
|
280
288
|
/* Cap the fallback rail until the wider personality template is eligible. */
|
|
281
|
-
@container
|
|
289
|
+
@container (min-width: 48rem) {
|
|
282
290
|
:where(.ly-root[data-layout="bauhaus"], .ly-root[layout-style="bauhaus"], .ly-root.ly-layout-bauhaus, .ly-root.ly-style-bauhaus)
|
|
283
291
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
284
292
|
grid-template-columns: minmax(min(100%, 14rem), 0.3fr) minmax(0, 1fr);
|
|
285
293
|
}
|
|
286
294
|
}
|
|
287
295
|
|
|
288
|
-
@container
|
|
296
|
+
@container (min-width: 52rem) {
|
|
297
|
+
:where(.ly-root[data-layout="bauhaus"], .ly-root[layout-style="bauhaus"], .ly-root.ly-layout-bauhaus, .ly-root.ly-style-bauhaus) .ly-grid > :nth-child(3n + 1) {
|
|
298
|
+
grid-column: span 2;
|
|
299
|
+
grid-row: span 2;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/* The four-track shell waits for a locally feasible allocation. */
|
|
304
|
+
@container (min-width: 64rem) {
|
|
289
305
|
:where(.ly-root[data-layout="bauhaus"], .ly-root[layout-style="bauhaus"], .ly-root.ly-layout-bauhaus, .ly-root.ly-style-bauhaus)
|
|
290
306
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
291
307
|
grid-template-areas:
|
|
@@ -299,11 +315,6 @@
|
|
|
299
315
|
minmax(0, 1.3fr)
|
|
300
316
|
minmax(min(100%, 18rem), 0.3fr);
|
|
301
317
|
}
|
|
302
|
-
|
|
303
|
-
:where(.ly-root[data-layout="bauhaus"], .ly-root[layout-style="bauhaus"], .ly-root.ly-layout-bauhaus, .ly-root.ly-style-bauhaus) .ly-grid > :nth-child(3n + 1) {
|
|
304
|
-
grid-column: span 2;
|
|
305
|
-
grid-row: span 2;
|
|
306
|
-
}
|
|
307
318
|
}
|
|
308
319
|
|
|
309
320
|
/* V1 personality aliases for tactile; generated from the canonical v2 source. */
|
|
@@ -319,7 +330,7 @@
|
|
|
319
330
|
min-inline-size: 0;
|
|
320
331
|
}
|
|
321
332
|
|
|
322
|
-
@container
|
|
333
|
+
@container (min-width: 48rem) {
|
|
323
334
|
:where(.ly-root[data-layout="tactile"], .ly-root[layout-style="tactile"], .ly-root.ly-layout-tactile, .ly-root.ly-style-tactile)
|
|
324
335
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
325
336
|
grid-template-areas:
|
|
@@ -354,14 +365,14 @@
|
|
|
354
365
|
min-inline-size: 0;
|
|
355
366
|
}
|
|
356
367
|
|
|
357
|
-
@container
|
|
368
|
+
@container (min-width: 48rem) {
|
|
358
369
|
:where(.ly-root[data-layout="neumorphism"], .ly-root[layout-style="neumorphism"], .ly-root.ly-layout-neumorphism, .ly-root.ly-style-neumorphism)
|
|
359
370
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
360
371
|
grid-template-columns: minmax(min(100%, 17rem), 0.3fr) minmax(0, 1fr);
|
|
361
372
|
}
|
|
362
373
|
}
|
|
363
374
|
|
|
364
|
-
@container
|
|
375
|
+
@container (min-width: 52rem) {
|
|
365
376
|
:where(.ly-root[data-layout="neumorphism"], .ly-root[layout-style="neumorphism"], .ly-root.ly-layout-neumorphism, .ly-root.ly-style-neumorphism)
|
|
366
377
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
367
378
|
grid-template-areas:
|
|
@@ -396,7 +407,14 @@
|
|
|
396
407
|
min-inline-size: 0;
|
|
397
408
|
}
|
|
398
409
|
|
|
399
|
-
@container
|
|
410
|
+
@container (min-width: 48rem) {
|
|
411
|
+
:where(.ly-root[data-layout="retrofuturism"], .ly-root[layout-style="retrofuturism"], .ly-root.ly-layout-retrofuturism, .ly-root.ly-style-retrofuturism) .ly-grid > :nth-child(6n + 1) {
|
|
412
|
+
grid-column: span 2;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
417
|
+
@container (min-width: 64rem) {
|
|
400
418
|
:where(.ly-root[data-layout="retrofuturism"], .ly-root[layout-style="retrofuturism"], .ly-root.ly-layout-retrofuturism, .ly-root.ly-style-retrofuturism)
|
|
401
419
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
402
420
|
grid-template-areas:
|
|
@@ -409,10 +427,6 @@
|
|
|
409
427
|
minmax(0, 1fr)
|
|
410
428
|
minmax(min(100%, 17rem), 0.3fr);
|
|
411
429
|
}
|
|
412
|
-
|
|
413
|
-
:where(.ly-root[data-layout="retrofuturism"], .ly-root[layout-style="retrofuturism"], .ly-root.ly-layout-retrofuturism, .ly-root.ly-style-retrofuturism) .ly-grid > :nth-child(6n + 1) {
|
|
414
|
-
grid-column: span 2;
|
|
415
|
-
}
|
|
416
430
|
}
|
|
417
431
|
|
|
418
432
|
/* V1 personality aliases for brutalism; generated from the canonical v2 source. */
|
|
@@ -428,7 +442,14 @@
|
|
|
428
442
|
min-inline-size: 0;
|
|
429
443
|
}
|
|
430
444
|
|
|
431
|
-
@container
|
|
445
|
+
@container (min-width: 48rem) {
|
|
446
|
+
:where(.ly-root[data-layout="brutalism"], .ly-root[layout-style="brutalism"], .ly-root.ly-layout-brutalism, .ly-root.ly-style-brutalism) .ly-grid > :nth-child(3n) {
|
|
447
|
+
grid-column: span 2;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
452
|
+
@container (min-width: 64rem) {
|
|
432
453
|
:where(.ly-root[data-layout="brutalism"], .ly-root[layout-style="brutalism"], .ly-root.ly-layout-brutalism, .ly-root.ly-style-brutalism)
|
|
433
454
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
434
455
|
grid-template-areas:
|
|
@@ -441,10 +462,6 @@
|
|
|
441
462
|
minmax(min(100%, 16rem), 0.7fr)
|
|
442
463
|
minmax(min(100%, 18rem), 0.34fr);
|
|
443
464
|
}
|
|
444
|
-
|
|
445
|
-
:where(.ly-root[data-layout="brutalism"], .ly-root[layout-style="brutalism"], .ly-root.ly-layout-brutalism, .ly-root.ly-style-brutalism) .ly-grid > :nth-child(3n) {
|
|
446
|
-
grid-column: span 2;
|
|
447
|
-
}
|
|
448
465
|
}
|
|
449
466
|
|
|
450
467
|
/* V1 personality aliases for cyberpunk; generated from the canonical v2 source. */
|
|
@@ -460,7 +477,14 @@
|
|
|
460
477
|
min-inline-size: 0;
|
|
461
478
|
}
|
|
462
479
|
|
|
463
|
-
@container
|
|
480
|
+
@container (min-width: 44rem) {
|
|
481
|
+
:where(.ly-root[data-layout="cyberpunk"], .ly-root[layout-style="cyberpunk"], .ly-root.ly-layout-cyberpunk, .ly-root.ly-style-cyberpunk) .ly-grid > :nth-child(4n + 2) {
|
|
482
|
+
grid-column: span 3;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
487
|
+
@container (min-width: 64rem) {
|
|
464
488
|
:where(.ly-root[data-layout="cyberpunk"], .ly-root[layout-style="cyberpunk"], .ly-root.ly-layout-cyberpunk, .ly-root.ly-style-cyberpunk)
|
|
465
489
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
466
490
|
grid-template-areas:
|
|
@@ -473,10 +497,6 @@
|
|
|
473
497
|
minmax(0, 1fr)
|
|
474
498
|
minmax(min(100%, 19rem), 0.32fr);
|
|
475
499
|
}
|
|
476
|
-
|
|
477
|
-
:where(.ly-root[data-layout="cyberpunk"], .ly-root[layout-style="cyberpunk"], .ly-root.ly-layout-cyberpunk, .ly-root.ly-style-cyberpunk) .ly-grid > :nth-child(4n + 2) {
|
|
478
|
-
grid-column: span 3;
|
|
479
|
-
}
|
|
480
500
|
}
|
|
481
501
|
|
|
482
502
|
/* V1 personality aliases for y2k; generated from the canonical v2 source. */
|
|
@@ -492,7 +512,14 @@
|
|
|
492
512
|
min-inline-size: 0;
|
|
493
513
|
}
|
|
494
514
|
|
|
495
|
-
@container
|
|
515
|
+
@container (min-width: 48rem) {
|
|
516
|
+
:where(.ly-root[data-layout="y2k"], .ly-root[layout-style="y2k"], .ly-root.ly-layout-y2k, .ly-root.ly-style-y2k) .ly-grid > :nth-child(5n + 1) {
|
|
517
|
+
grid-column: span 3;
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
522
|
+
@container (min-width: 64rem) {
|
|
496
523
|
:where(.ly-root[data-layout="y2k"], .ly-root[layout-style="y2k"], .ly-root.ly-layout-y2k, .ly-root.ly-style-y2k)
|
|
497
524
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
498
525
|
grid-template-areas:
|
|
@@ -505,10 +532,6 @@
|
|
|
505
532
|
minmax(0, 1fr)
|
|
506
533
|
minmax(min(100%, 16rem), 0.28fr);
|
|
507
534
|
}
|
|
508
|
-
|
|
509
|
-
:where(.ly-root[data-layout="y2k"], .ly-root[layout-style="y2k"], .ly-root.ly-layout-y2k, .ly-root.ly-style-y2k) .ly-grid > :nth-child(5n + 1) {
|
|
510
|
-
grid-column: span 3;
|
|
511
|
-
}
|
|
512
535
|
}
|
|
513
536
|
|
|
514
537
|
/* V1 personality aliases for retro-glass; generated from the canonical v2 source. */
|
|
@@ -524,14 +547,22 @@
|
|
|
524
547
|
min-inline-size: 0;
|
|
525
548
|
}
|
|
526
549
|
|
|
527
|
-
@container
|
|
550
|
+
@container (min-width: 48rem) {
|
|
528
551
|
:where(.ly-root[data-layout="retro-glass"], .ly-root[layout-style="retro-glass"], .ly-root.ly-layout-retro-glass, .ly-root.ly-style-retro-glass)
|
|
529
552
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
530
553
|
grid-template-columns: minmax(min(100%, 18rem), 0.3fr) minmax(0, 1fr);
|
|
531
554
|
}
|
|
532
555
|
}
|
|
533
556
|
|
|
534
|
-
@container
|
|
557
|
+
@container (min-width: 56rem) {
|
|
558
|
+
:where(.ly-root[data-layout="retro-glass"], .ly-root[layout-style="retro-glass"], .ly-root.ly-layout-retro-glass, .ly-root.ly-style-retro-glass) .ly-grid > :nth-child(4n) {
|
|
559
|
+
grid-column: span 2;
|
|
560
|
+
grid-row: span 2;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
565
|
+
@container (min-width: 64rem) {
|
|
535
566
|
:where(.ly-root[data-layout="retro-glass"], .ly-root[layout-style="retro-glass"], .ly-root.ly-layout-retro-glass, .ly-root.ly-style-retro-glass)
|
|
536
567
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
537
568
|
grid-template-areas:
|
|
@@ -544,11 +575,6 @@
|
|
|
544
575
|
minmax(0, 0.75fr)
|
|
545
576
|
minmax(min(100%, 18rem), 0.32fr);
|
|
546
577
|
}
|
|
547
|
-
|
|
548
|
-
:where(.ly-root[data-layout="retro-glass"], .ly-root[layout-style="retro-glass"], .ly-root.ly-layout-retro-glass, .ly-root.ly-style-retro-glass) .ly-grid > :nth-child(4n) {
|
|
549
|
-
grid-column: span 2;
|
|
550
|
-
grid-row: span 2;
|
|
551
|
-
}
|
|
552
578
|
}
|
|
553
579
|
|
|
554
580
|
/* V1 personality aliases for f-pattern; generated from the canonical v2 source. */
|
|
@@ -564,14 +590,26 @@
|
|
|
564
590
|
min-inline-size: 0;
|
|
565
591
|
}
|
|
566
592
|
|
|
567
|
-
@container
|
|
593
|
+
@container (min-width: 48rem) {
|
|
568
594
|
:where(.ly-root[data-layout="f-pattern"], .ly-root[layout-style="f-pattern"], .ly-root.ly-layout-f-pattern, .ly-root.ly-style-f-pattern)
|
|
569
595
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
570
596
|
grid-template-columns: minmax(min(100%, 16rem), 0.3fr) minmax(0, 1fr);
|
|
571
597
|
}
|
|
572
598
|
}
|
|
573
599
|
|
|
574
|
-
@container
|
|
600
|
+
@container (min-width: 56rem) {
|
|
601
|
+
:where(.ly-root[data-layout="f-pattern"], .ly-root[layout-style="f-pattern"], .ly-root.ly-layout-f-pattern, .ly-root.ly-style-f-pattern) .ly-grid > :nth-child(3n + 1) {
|
|
602
|
+
grid-column: span 2;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
:where(.ly-root[data-layout="f-pattern"], .ly-root[layout-style="f-pattern"], .ly-root.ly-layout-f-pattern, .ly-root.ly-style-f-pattern)
|
|
606
|
+
:where(.ly-split-hero, [data-ly-recipe="split-hero"]) {
|
|
607
|
+
grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
612
|
+
@container (min-width: 64rem) {
|
|
575
613
|
:where(.ly-root[data-layout="f-pattern"], .ly-root[layout-style="f-pattern"], .ly-root.ly-layout-f-pattern, .ly-root.ly-style-f-pattern)
|
|
576
614
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
577
615
|
grid-template-areas:
|
|
@@ -584,15 +622,6 @@
|
|
|
584
622
|
minmax(0, 1.35fr)
|
|
585
623
|
minmax(min(100%, 18rem), 0.65fr);
|
|
586
624
|
}
|
|
587
|
-
|
|
588
|
-
:where(.ly-root[data-layout="f-pattern"], .ly-root[layout-style="f-pattern"], .ly-root.ly-layout-f-pattern, .ly-root.ly-style-f-pattern) .ly-grid > :nth-child(3n + 1) {
|
|
589
|
-
grid-column: span 2;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
:where(.ly-root[data-layout="f-pattern"], .ly-root[layout-style="f-pattern"], .ly-root.ly-layout-f-pattern, .ly-root.ly-style-f-pattern)
|
|
593
|
-
:where(.ly-split-hero, [data-ly-recipe="split-hero"]) {
|
|
594
|
-
grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
|
|
595
|
-
}
|
|
596
625
|
}
|
|
597
626
|
|
|
598
627
|
/* V1 personality aliases for z-pattern; generated from the canonical v2 source. */
|
|
@@ -608,14 +637,27 @@
|
|
|
608
637
|
min-inline-size: 0;
|
|
609
638
|
}
|
|
610
639
|
|
|
611
|
-
@container
|
|
640
|
+
@container (min-width: 48rem) {
|
|
612
641
|
:where(.ly-root[data-layout="z-pattern"], .ly-root[layout-style="z-pattern"], .ly-root.ly-layout-z-pattern, .ly-root.ly-style-z-pattern)
|
|
613
642
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
614
643
|
grid-template-columns: minmax(min(100%, 17rem), 0.3fr) minmax(0, 1fr);
|
|
615
644
|
}
|
|
616
645
|
}
|
|
617
646
|
|
|
618
|
-
@container
|
|
647
|
+
@container (min-width: 60rem) {
|
|
648
|
+
:where(.ly-root[data-layout="z-pattern"], .ly-root[layout-style="z-pattern"], .ly-root.ly-layout-z-pattern, .ly-root.ly-style-z-pattern) .ly-grid > :nth-child(4n + 2) {
|
|
649
|
+
grid-column: span 2;
|
|
650
|
+
align-self: end;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
:where(.ly-root[data-layout="z-pattern"], .ly-root[layout-style="z-pattern"], .ly-root.ly-layout-z-pattern, .ly-root.ly-style-z-pattern)
|
|
654
|
+
:where(.ly-split-hero, [data-ly-recipe="split-hero"]) {
|
|
655
|
+
grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr);
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
660
|
+
@container (min-width: 64rem) {
|
|
619
661
|
:where(.ly-root[data-layout="z-pattern"], .ly-root[layout-style="z-pattern"], .ly-root.ly-layout-z-pattern, .ly-root.ly-style-z-pattern)
|
|
620
662
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
621
663
|
grid-template-areas:
|
|
@@ -628,16 +670,6 @@
|
|
|
628
670
|
minmax(min(100%, 19rem), 0.55fr)
|
|
629
671
|
minmax(min(100%, 17rem), 0.3fr);
|
|
630
672
|
}
|
|
631
|
-
|
|
632
|
-
:where(.ly-root[data-layout="z-pattern"], .ly-root[layout-style="z-pattern"], .ly-root.ly-layout-z-pattern, .ly-root.ly-style-z-pattern) .ly-grid > :nth-child(4n + 2) {
|
|
633
|
-
grid-column: span 2;
|
|
634
|
-
align-self: end;
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
:where(.ly-root[data-layout="z-pattern"], .ly-root[layout-style="z-pattern"], .ly-root.ly-layout-z-pattern, .ly-root.ly-style-z-pattern)
|
|
638
|
-
:where(.ly-split-hero, [data-ly-recipe="split-hero"]) {
|
|
639
|
-
grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr);
|
|
640
|
-
}
|
|
641
673
|
}
|
|
642
674
|
|
|
643
675
|
/* V1 personality aliases for split-screen; generated from the canonical v2 source. */
|
|
@@ -653,7 +685,7 @@
|
|
|
653
685
|
min-inline-size: 0;
|
|
654
686
|
}
|
|
655
687
|
|
|
656
|
-
@container
|
|
688
|
+
@container (min-width: 48rem) {
|
|
657
689
|
:where(.ly-root[data-layout="split-screen"], .ly-root[layout-style="split-screen"], .ly-root.ly-layout-split-screen, .ly-root.ly-style-split-screen)
|
|
658
690
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
659
691
|
grid-template-areas:
|
|
@@ -690,14 +722,22 @@
|
|
|
690
722
|
min-inline-size: 0;
|
|
691
723
|
}
|
|
692
724
|
|
|
693
|
-
@container
|
|
725
|
+
@container (min-width: 48rem) {
|
|
694
726
|
:where(.ly-root[data-layout="mondrian"], .ly-root[layout-style="mondrian"], .ly-root.ly-layout-mondrian, .ly-root.ly-style-mondrian)
|
|
695
727
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
696
728
|
grid-template-columns: minmax(min(100%, 13rem), 0.3fr) minmax(0, 1fr);
|
|
697
729
|
}
|
|
698
730
|
}
|
|
699
731
|
|
|
700
|
-
@container
|
|
732
|
+
@container (min-width: 52rem) {
|
|
733
|
+
:where(.ly-root[data-layout="mondrian"], .ly-root[layout-style="mondrian"], .ly-root.ly-layout-mondrian, .ly-root.ly-style-mondrian) .ly-grid > :nth-child(5n + 1) {
|
|
734
|
+
grid-column: span 2;
|
|
735
|
+
grid-row: span 2;
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
740
|
+
@container (min-width: 64rem) {
|
|
701
741
|
:where(.ly-root[data-layout="mondrian"], .ly-root[layout-style="mondrian"], .ly-root.ly-layout-mondrian, .ly-root.ly-style-mondrian)
|
|
702
742
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
703
743
|
grid-template-areas:
|
|
@@ -710,11 +750,6 @@
|
|
|
710
750
|
minmax(0, 1.45fr)
|
|
711
751
|
minmax(min(100%, 18rem), 0.55fr);
|
|
712
752
|
}
|
|
713
|
-
|
|
714
|
-
:where(.ly-root[data-layout="mondrian"], .ly-root[layout-style="mondrian"], .ly-root.ly-layout-mondrian, .ly-root.ly-style-mondrian) .ly-grid > :nth-child(5n + 1) {
|
|
715
|
-
grid-column: span 2;
|
|
716
|
-
grid-row: span 2;
|
|
717
|
-
}
|
|
718
753
|
}
|
|
719
754
|
|
|
720
755
|
/* V1 personality aliases for synthwave; generated from the canonical v2 source. */
|
|
@@ -731,14 +766,14 @@
|
|
|
731
766
|
min-inline-size: 0;
|
|
732
767
|
}
|
|
733
768
|
|
|
734
|
-
@container
|
|
769
|
+
@container (min-width: 48rem) {
|
|
735
770
|
:where(.ly-root[data-layout="synthwave"], .ly-root[layout-style="synthwave"], .ly-root.ly-layout-synthwave, .ly-root.ly-style-synthwave)
|
|
736
771
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
737
772
|
grid-template-columns: minmax(min(100%, 16rem), 0.3fr) minmax(0, 1fr);
|
|
738
773
|
}
|
|
739
774
|
}
|
|
740
775
|
|
|
741
|
-
@container
|
|
776
|
+
@container (min-width: 64rem) {
|
|
742
777
|
:where(.ly-root[data-layout="synthwave"], .ly-root[layout-style="synthwave"], .ly-root.ly-layout-synthwave, .ly-root.ly-style-synthwave)
|
|
743
778
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
744
779
|
grid-template-areas:
|
|
@@ -16,14 +16,22 @@
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
/* Cap the fallback rail until the wider personality template is eligible. */
|
|
19
|
-
@container
|
|
19
|
+
@container (min-width: 48rem) {
|
|
20
20
|
:where(.ly-root[data-ly-layout="bauhaus"])
|
|
21
21
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
22
22
|
grid-template-columns: minmax(min(100%, 14rem), 0.3fr) minmax(0, 1fr);
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
@container
|
|
26
|
+
@container (min-width: 52rem) {
|
|
27
|
+
:where(.ly-root[data-ly-layout="bauhaus"]) .ly-grid > :nth-child(3n + 1) {
|
|
28
|
+
grid-column: span 2;
|
|
29
|
+
grid-row: span 2;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* The four-track shell waits for a locally feasible allocation. */
|
|
34
|
+
@container (min-width: 64rem) {
|
|
27
35
|
:where(.ly-root[data-ly-layout="bauhaus"])
|
|
28
36
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
29
37
|
grid-template-areas:
|
|
@@ -37,10 +45,5 @@
|
|
|
37
45
|
minmax(0, 1.3fr)
|
|
38
46
|
minmax(min(100%, 18rem), 0.3fr);
|
|
39
47
|
}
|
|
40
|
-
|
|
41
|
-
:where(.ly-root[data-ly-layout="bauhaus"]) .ly-grid > :nth-child(3n + 1) {
|
|
42
|
-
grid-column: span 2;
|
|
43
|
-
grid-row: span 2;
|
|
44
|
-
}
|
|
45
48
|
}
|
|
46
49
|
}
|
|
@@ -14,7 +14,21 @@
|
|
|
14
14
|
min-inline-size: 0;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
@container
|
|
17
|
+
@container (min-width: 48rem) {
|
|
18
|
+
:where(.ly-root[data-ly-layout="bento"]) .ly-grid > :nth-child(6n + 1) {
|
|
19
|
+
grid-column: span 2;
|
|
20
|
+
grid-row: span 2;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:where(.ly-root[data-ly-layout="bento"])
|
|
24
|
+
:where(.ly-card-grid, [data-ly-recipe="card-grid"])
|
|
25
|
+
> :nth-child(6n + 1) {
|
|
26
|
+
grid-column: span 2;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
31
|
+
@container (min-width: 64rem) {
|
|
18
32
|
:where(.ly-root[data-ly-layout="bento"])
|
|
19
33
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
20
34
|
grid-template-areas:
|
|
@@ -28,16 +42,5 @@
|
|
|
28
42
|
minmax(0, 1fr)
|
|
29
43
|
minmax(0, 1fr);
|
|
30
44
|
}
|
|
31
|
-
|
|
32
|
-
:where(.ly-root[data-ly-layout="bento"]) .ly-grid > :nth-child(6n + 1) {
|
|
33
|
-
grid-column: span 2;
|
|
34
|
-
grid-row: span 2;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
:where(.ly-root[data-ly-layout="bento"])
|
|
38
|
-
:where(.ly-card-grid, [data-ly-recipe="card-grid"])
|
|
39
|
-
> :nth-child(6n + 1) {
|
|
40
|
-
grid-column: span 2;
|
|
41
|
-
}
|
|
42
45
|
}
|
|
43
46
|
}
|
|
@@ -15,7 +15,14 @@
|
|
|
15
15
|
min-inline-size: 0;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
@container
|
|
18
|
+
@container (min-width: 48rem) {
|
|
19
|
+
:where(.ly-root[data-ly-layout="brutalism"]) .ly-grid > :nth-child(3n) {
|
|
20
|
+
grid-column: span 2;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
25
|
+
@container (min-width: 64rem) {
|
|
19
26
|
:where(.ly-root[data-ly-layout="brutalism"])
|
|
20
27
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
21
28
|
grid-template-areas:
|
|
@@ -28,9 +35,5 @@
|
|
|
28
35
|
minmax(min(100%, 16rem), 0.7fr)
|
|
29
36
|
minmax(min(100%, 18rem), 0.34fr);
|
|
30
37
|
}
|
|
31
|
-
|
|
32
|
-
:where(.ly-root[data-ly-layout="brutalism"]) .ly-grid > :nth-child(3n) {
|
|
33
|
-
grid-column: span 2;
|
|
34
|
-
}
|
|
35
38
|
}
|
|
36
39
|
}
|
|
@@ -15,7 +15,14 @@
|
|
|
15
15
|
min-inline-size: 0;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
@container
|
|
18
|
+
@container (min-width: 44rem) {
|
|
19
|
+
:where(.ly-root[data-ly-layout="cyberpunk"]) .ly-grid > :nth-child(4n + 2) {
|
|
20
|
+
grid-column: span 3;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
25
|
+
@container (min-width: 64rem) {
|
|
19
26
|
:where(.ly-root[data-ly-layout="cyberpunk"])
|
|
20
27
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
21
28
|
grid-template-areas:
|
|
@@ -28,9 +35,5 @@
|
|
|
28
35
|
minmax(0, 1fr)
|
|
29
36
|
minmax(min(100%, 19rem), 0.32fr);
|
|
30
37
|
}
|
|
31
|
-
|
|
32
|
-
:where(.ly-root[data-ly-layout="cyberpunk"]) .ly-grid > :nth-child(4n + 2) {
|
|
33
|
-
grid-column: span 3;
|
|
34
|
-
}
|
|
35
38
|
}
|
|
36
39
|
}
|
|
@@ -15,14 +15,26 @@
|
|
|
15
15
|
min-inline-size: 0;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
@container
|
|
18
|
+
@container (min-width: 48rem) {
|
|
19
19
|
:where(.ly-root[data-ly-layout="f-pattern"])
|
|
20
20
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
21
21
|
grid-template-columns: minmax(min(100%, 16rem), 0.3fr) minmax(0, 1fr);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
@container
|
|
25
|
+
@container (min-width: 56rem) {
|
|
26
|
+
:where(.ly-root[data-ly-layout="f-pattern"]) .ly-grid > :nth-child(3n + 1) {
|
|
27
|
+
grid-column: span 2;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
:where(.ly-root[data-ly-layout="f-pattern"])
|
|
31
|
+
:where(.ly-split-hero, [data-ly-recipe="split-hero"]) {
|
|
32
|
+
grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/* The three-track shell waits for a locally feasible allocation. */
|
|
37
|
+
@container (min-width: 64rem) {
|
|
26
38
|
:where(.ly-root[data-ly-layout="f-pattern"])
|
|
27
39
|
:where(.ly-app-shell, [data-ly-recipe="app-shell"]) {
|
|
28
40
|
grid-template-areas:
|
|
@@ -35,14 +47,5 @@
|
|
|
35
47
|
minmax(0, 1.35fr)
|
|
36
48
|
minmax(min(100%, 18rem), 0.65fr);
|
|
37
49
|
}
|
|
38
|
-
|
|
39
|
-
:where(.ly-root[data-ly-layout="f-pattern"]) .ly-grid > :nth-child(3n + 1) {
|
|
40
|
-
grid-column: span 2;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
:where(.ly-root[data-ly-layout="f-pattern"])
|
|
44
|
-
:where(.ly-split-hero, [data-ly-recipe="split-hero"]) {
|
|
45
|
-
grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
|
|
46
|
-
}
|
|
47
50
|
}
|
|
48
51
|
}
|