@appartmint/mint 0.15.6 → 0.15.8
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/mint.css +360 -151
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/_footer.scss +126 -0
- package/src/scss/imports/components/_index.scss +1 -0
- package/src/scss/imports/components/_recaptcha.scss +17 -0
- package/src/scss/imports/global/_grid.scss +143 -0
- package/src/scss/imports/global/_index.scss +1 -0
- package/src/scss/imports/global/_inputs.scss +52 -5
- package/src/scss/imports/global/_structure.scss +5 -173
- package/src/scss/imports/util/_util.scss +4 -0
- package/src/scss/imports/util/_vars.scss +12 -0
package/dist/css/mint.css
CHANGED
|
@@ -579,7 +579,110 @@ app-footer::before {
|
|
|
579
579
|
display: flex;
|
|
580
580
|
flex-grow: 1;
|
|
581
581
|
height: 100%;
|
|
582
|
-
background:
|
|
582
|
+
background: var(--mint-trans);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.mint-footer {
|
|
586
|
+
display: flex;
|
|
587
|
+
flex-direction: column;
|
|
588
|
+
max-width: 100%;
|
|
589
|
+
background: var(--mint-back);
|
|
590
|
+
transition: transform 300ms;
|
|
591
|
+
z-index: 999;
|
|
592
|
+
overflow: hidden;
|
|
593
|
+
}
|
|
594
|
+
.mint-footer.mint-hide {
|
|
595
|
+
transform: translateY(100%);
|
|
596
|
+
}
|
|
597
|
+
.mint-footer * {
|
|
598
|
+
max-width: 100%;
|
|
599
|
+
}
|
|
600
|
+
.mint-footer p {
|
|
601
|
+
margin: 0;
|
|
602
|
+
}
|
|
603
|
+
.mint-footer-content {
|
|
604
|
+
display: flex;
|
|
605
|
+
flex-direction: column;
|
|
606
|
+
flex-wrap: wrap;
|
|
607
|
+
align-items: center;
|
|
608
|
+
justify-content: space-between;
|
|
609
|
+
}
|
|
610
|
+
@media (min-width: 768px) {
|
|
611
|
+
.mint-footer-content {
|
|
612
|
+
flex-direction: row;
|
|
613
|
+
align-items: flex-start;
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
.mint-footer-content > p {
|
|
617
|
+
margin: 0 auto;
|
|
618
|
+
text-align: center;
|
|
619
|
+
}
|
|
620
|
+
.mint-footer-content > p a {
|
|
621
|
+
display: block;
|
|
622
|
+
}
|
|
623
|
+
.mint-footer-content [label=Footer] {
|
|
624
|
+
width: 100%;
|
|
625
|
+
margin: auto;
|
|
626
|
+
}
|
|
627
|
+
@media (min-width: 768px) {
|
|
628
|
+
.mint-footer-content [label=Footer] {
|
|
629
|
+
width: auto;
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
.mint-footer-content [label=Footer] > ul {
|
|
633
|
+
flex-direction: column;
|
|
634
|
+
flex-wrap: wrap;
|
|
635
|
+
justify-content: space-around;
|
|
636
|
+
text-align: center;
|
|
637
|
+
}
|
|
638
|
+
@media (min-width: 480px) {
|
|
639
|
+
.mint-footer-content [label=Footer] > ul {
|
|
640
|
+
flex-direction: row;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
.mint-footer-content [label=Footer] > ul > ul li:last-child .mint-pill {
|
|
644
|
+
margin-bottom: 0;
|
|
645
|
+
}
|
|
646
|
+
.mint-footer-content [label=Footer] .mint-pill {
|
|
647
|
+
margin-bottom: 0.5rem;
|
|
648
|
+
}
|
|
649
|
+
.mint-footer-heel {
|
|
650
|
+
display: flex;
|
|
651
|
+
flex-direction: column;
|
|
652
|
+
align-items: center;
|
|
653
|
+
justify-content: space-between;
|
|
654
|
+
padding: 0.4rem 1rem;
|
|
655
|
+
color: var(--mint-back);
|
|
656
|
+
background: var(--mint-brand-6);
|
|
657
|
+
text-align: center;
|
|
658
|
+
}
|
|
659
|
+
@media (min-width: 768px) {
|
|
660
|
+
.mint-footer-heel {
|
|
661
|
+
flex-direction: row;
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
.mint-footer-message {
|
|
665
|
+
display: flex;
|
|
666
|
+
align-items: center;
|
|
667
|
+
justify-content: center;
|
|
668
|
+
flex-wrap: wrap;
|
|
669
|
+
}
|
|
670
|
+
@media (min-width: 480px) {
|
|
671
|
+
.mint-footer-message {
|
|
672
|
+
flex-wrap: nowrap;
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
.mint-footer-message > .mint-pill {
|
|
676
|
+
margin: 0 0.25rem;
|
|
677
|
+
}
|
|
678
|
+
.mint-footer-message > * {
|
|
679
|
+
margin: 0 0.5rem;
|
|
680
|
+
}
|
|
681
|
+
.mint-footer-message > *:first-child {
|
|
682
|
+
margin-left: 0;
|
|
683
|
+
}
|
|
684
|
+
.mint-footer-message > *:last-child {
|
|
685
|
+
margin-right: 0;
|
|
583
686
|
}
|
|
584
687
|
|
|
585
688
|
:root {
|
|
@@ -1004,6 +1107,10 @@ app-footer::before {
|
|
|
1004
1107
|
width: 100%;
|
|
1005
1108
|
}
|
|
1006
1109
|
|
|
1110
|
+
.grecaptcha-badge {
|
|
1111
|
+
visibility: hidden;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1007
1114
|
@keyframes instafade {
|
|
1008
1115
|
0% {
|
|
1009
1116
|
color: var(--mint-instagram-0);
|
|
@@ -1257,18 +1364,161 @@ iframe {
|
|
|
1257
1364
|
padding: 0;
|
|
1258
1365
|
}
|
|
1259
1366
|
|
|
1367
|
+
.mint-grid {
|
|
1368
|
+
display: grid;
|
|
1369
|
+
grid-template-columns: 1fr;
|
|
1370
|
+
gap: 2rem;
|
|
1371
|
+
margin-top: 2rem;
|
|
1372
|
+
margin-bottom: 2rem;
|
|
1373
|
+
}
|
|
1374
|
+
@media (min-width: 768px) {
|
|
1375
|
+
.mint-grid.mint-2 {
|
|
1376
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1377
|
+
}
|
|
1378
|
+
.mint-grid.mint-2 > :last-child:nth-child(odd) .mint-card {
|
|
1379
|
+
grid-column: span 2;
|
|
1380
|
+
width: 50%;
|
|
1381
|
+
margin-left: auto;
|
|
1382
|
+
margin-right: auto;
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
@media (min-width: 768px) {
|
|
1386
|
+
.mint-grid.mint-3 {
|
|
1387
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1388
|
+
}
|
|
1389
|
+
.mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
|
|
1390
|
+
grid-column: span 2;
|
|
1391
|
+
width: 50%;
|
|
1392
|
+
margin-left: auto;
|
|
1393
|
+
margin-right: auto;
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
@media (min-width: 1200px) {
|
|
1397
|
+
.mint-grid.mint-3 {
|
|
1398
|
+
grid-template-columns: repeat(3, 1fr);
|
|
1399
|
+
}
|
|
1400
|
+
.mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
|
|
1401
|
+
grid-column: span 1;
|
|
1402
|
+
width: 100%;
|
|
1403
|
+
}
|
|
1404
|
+
.mint-grid.mint-3 > :last-child:nth-child(3n+1) .mint-card {
|
|
1405
|
+
grid-column: 2;
|
|
1406
|
+
}
|
|
1407
|
+
.mint-grid.mint-3 > :last-child:nth-child(3n+2) .mint-card {
|
|
1408
|
+
grid-column: 3;
|
|
1409
|
+
}
|
|
1410
|
+
.mint-grid.mint-3 > :nth-last-child(2):nth-child(3n+1) .mint-card {
|
|
1411
|
+
grid-column: 1;
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
@media (min-width: 768px) {
|
|
1415
|
+
.mint-grid.mint-4 {
|
|
1416
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1417
|
+
}
|
|
1418
|
+
.mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
|
|
1419
|
+
grid-column: span 2;
|
|
1420
|
+
width: 50%;
|
|
1421
|
+
margin-left: auto;
|
|
1422
|
+
margin-right: auto;
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
@media (min-width: 1200px) {
|
|
1426
|
+
.mint-grid.mint-4 {
|
|
1427
|
+
grid-template-columns: repeat(3, 1fr);
|
|
1428
|
+
}
|
|
1429
|
+
.mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
|
|
1430
|
+
grid-column: span 1;
|
|
1431
|
+
width: 100%;
|
|
1432
|
+
}
|
|
1433
|
+
.mint-grid.mint-4 > :last-child:nth-child(3n+1) .mint-card {
|
|
1434
|
+
grid-column: 2;
|
|
1435
|
+
}
|
|
1436
|
+
.mint-grid.mint-4 > :last-child:nth-child(3n+2) .mint-card {
|
|
1437
|
+
grid-column: 3;
|
|
1438
|
+
}
|
|
1439
|
+
.mint-grid.mint-4 > :nth-last-child(2):nth-child(3n+1) .mint-card {
|
|
1440
|
+
grid-column: 1;
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
@media (min-width: 1440px) {
|
|
1444
|
+
.mint-grid.mint-4 {
|
|
1445
|
+
grid-template-columns: repeat(4, 1fr);
|
|
1446
|
+
}
|
|
1447
|
+
.mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card, .mint-grid.mint-4 > :last-child:nth-child(3n+1) .mint-card, .mint-grid.mint-4 > :last-child:nth-child(3n+2) .mint-card, .mint-grid.mint-4 > :nth-last-child(2):nth-child(3n+1) .mint-card {
|
|
1448
|
+
grid-column: span 1;
|
|
1449
|
+
width: 100%;
|
|
1450
|
+
}
|
|
1451
|
+
.mint-grid.mint-4 > :last-child:nth-child(4n+1) .mint-card {
|
|
1452
|
+
grid-column: 2/span 2;
|
|
1453
|
+
width: 50%;
|
|
1454
|
+
margin-left: auto;
|
|
1455
|
+
margin-right: auto;
|
|
1456
|
+
}
|
|
1457
|
+
.mint-grid.mint-4 > :last-child:nth-child(4n+2) .mint-card {
|
|
1458
|
+
grid-column: 3/span 2;
|
|
1459
|
+
width: 50%;
|
|
1460
|
+
margin-left: auto;
|
|
1461
|
+
margin-right: auto;
|
|
1462
|
+
}
|
|
1463
|
+
.mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+1) .mint-card {
|
|
1464
|
+
grid-column: 1/span 2;
|
|
1465
|
+
width: 50%;
|
|
1466
|
+
margin-left: auto;
|
|
1467
|
+
margin-right: auto;
|
|
1468
|
+
}
|
|
1469
|
+
.mint-grid.mint-4 > :last-child:nth-child(4n+3) .mint-card {
|
|
1470
|
+
grid-column: 4;
|
|
1471
|
+
}
|
|
1472
|
+
.mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+2) .mint-card {
|
|
1473
|
+
grid-column: 2/span 2;
|
|
1474
|
+
width: 50%;
|
|
1475
|
+
margin-left: auto;
|
|
1476
|
+
margin-right: auto;
|
|
1477
|
+
}
|
|
1478
|
+
.mint-grid.mint-4 > :nth-last-child(3):nth-child(4n+1) .mint-card {
|
|
1479
|
+
grid-column: 1;
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
.mint-grid .mint-portrait {
|
|
1483
|
+
grid-row: span 2;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1260
1486
|
i.fa-envelope {
|
|
1261
1487
|
transform: translateY(5%);
|
|
1262
1488
|
}
|
|
1263
1489
|
|
|
1490
|
+
input,
|
|
1491
|
+
textarea,
|
|
1492
|
+
select {
|
|
1493
|
+
width: 100%;
|
|
1494
|
+
padding: 0.5rem;
|
|
1495
|
+
border: 2px solid #ccc;
|
|
1496
|
+
border-radius: 1rem;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
@media (min-width: 480px) {
|
|
1500
|
+
select {
|
|
1501
|
+
width: auto;
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
textarea {
|
|
1506
|
+
resize: vertical;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1264
1509
|
.mint-toggle {
|
|
1510
|
+
display: flex;
|
|
1511
|
+
align-items: center;
|
|
1512
|
+
gap: 1rem;
|
|
1513
|
+
}
|
|
1514
|
+
.mint-toggle div {
|
|
1265
1515
|
display: flex;
|
|
1266
1516
|
flex-direction: column;
|
|
1267
1517
|
align-items: center;
|
|
1268
1518
|
gap: 0.5rem;
|
|
1269
1519
|
}
|
|
1270
1520
|
@media (min-width: 480px) {
|
|
1271
|
-
.mint-toggle {
|
|
1521
|
+
.mint-toggle div {
|
|
1272
1522
|
flex-direction: row;
|
|
1273
1523
|
}
|
|
1274
1524
|
}
|
|
@@ -1307,12 +1557,29 @@ i.fa-envelope {
|
|
|
1307
1557
|
filter: grayscale(1);
|
|
1308
1558
|
transition: filter 300ms, background-color 300ms, left 300ms;
|
|
1309
1559
|
}
|
|
1560
|
+
.mint-check + span {
|
|
1561
|
+
width: 1.5rem;
|
|
1562
|
+
text-align: center;
|
|
1563
|
+
}
|
|
1310
1564
|
|
|
1311
1565
|
.mint-dropdown {
|
|
1312
1566
|
display: flex;
|
|
1313
1567
|
align-items: center;
|
|
1314
1568
|
flex-wrap: wrap;
|
|
1315
|
-
|
|
1569
|
+
}
|
|
1570
|
+
@media (min-width: 480px) {
|
|
1571
|
+
.mint-dropdown {
|
|
1572
|
+
gap: 1rem;
|
|
1573
|
+
}
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.mint-error {
|
|
1577
|
+
line-height: 0;
|
|
1578
|
+
filter: opacity(0);
|
|
1579
|
+
transition: filter 0.3s;
|
|
1580
|
+
}
|
|
1581
|
+
.mint-error.mint-show {
|
|
1582
|
+
filter: opacity(1);
|
|
1316
1583
|
}
|
|
1317
1584
|
|
|
1318
1585
|
.mint-pad-auto {
|
|
@@ -1479,6 +1746,9 @@ i.fa-envelope {
|
|
|
1479
1746
|
.mint-pad-t6 {
|
|
1480
1747
|
padding-top: 6rem;
|
|
1481
1748
|
}
|
|
1749
|
+
.mint-pad-t50 {
|
|
1750
|
+
padding-top: 50vh;
|
|
1751
|
+
}
|
|
1482
1752
|
.mint-pad-b {
|
|
1483
1753
|
padding-bottom: 1rem;
|
|
1484
1754
|
}
|
|
@@ -1934,6 +2204,9 @@ i.fa-envelope {
|
|
|
1934
2204
|
.mint-margin-t6 {
|
|
1935
2205
|
margin-top: 6rem;
|
|
1936
2206
|
}
|
|
2207
|
+
.mint-margin-t50 {
|
|
2208
|
+
margin-top: 50vh;
|
|
2209
|
+
}
|
|
1937
2210
|
.mint-margin-b {
|
|
1938
2211
|
margin-bottom: 1rem;
|
|
1939
2212
|
}
|
|
@@ -2225,6 +2498,90 @@ i.fa-envelope {
|
|
|
2225
2498
|
}
|
|
2226
2499
|
}
|
|
2227
2500
|
|
|
2501
|
+
.mint-hide {
|
|
2502
|
+
display: initial;
|
|
2503
|
+
}
|
|
2504
|
+
.mint-hide-xs {
|
|
2505
|
+
display: none;
|
|
2506
|
+
}
|
|
2507
|
+
@media (min-width: 480px) {
|
|
2508
|
+
.mint-hide-xs {
|
|
2509
|
+
display: initial;
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
.mint-hide-to-xs {
|
|
2513
|
+
display: initial;
|
|
2514
|
+
}
|
|
2515
|
+
@media (min-width: 480px) {
|
|
2516
|
+
.mint-hide-to-xs {
|
|
2517
|
+
display: none;
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
.mint-hide-sm {
|
|
2521
|
+
display: none;
|
|
2522
|
+
}
|
|
2523
|
+
@media (min-width: 768px) {
|
|
2524
|
+
.mint-hide-sm {
|
|
2525
|
+
display: initial;
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
.mint-hide-to-sm {
|
|
2529
|
+
display: initial;
|
|
2530
|
+
}
|
|
2531
|
+
@media (min-width: 768px) {
|
|
2532
|
+
.mint-hide-to-sm {
|
|
2533
|
+
display: none;
|
|
2534
|
+
}
|
|
2535
|
+
}
|
|
2536
|
+
.mint-hide-md {
|
|
2537
|
+
display: none;
|
|
2538
|
+
}
|
|
2539
|
+
@media (min-width: 1024px) {
|
|
2540
|
+
.mint-hide-md {
|
|
2541
|
+
display: initial;
|
|
2542
|
+
}
|
|
2543
|
+
}
|
|
2544
|
+
.mint-hide-to-md {
|
|
2545
|
+
display: initial;
|
|
2546
|
+
}
|
|
2547
|
+
@media (min-width: 1024px) {
|
|
2548
|
+
.mint-hide-to-md {
|
|
2549
|
+
display: none;
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
.mint-hide-lg {
|
|
2553
|
+
display: none;
|
|
2554
|
+
}
|
|
2555
|
+
@media (min-width: 1200px) {
|
|
2556
|
+
.mint-hide-lg {
|
|
2557
|
+
display: initial;
|
|
2558
|
+
}
|
|
2559
|
+
}
|
|
2560
|
+
.mint-hide-to-lg {
|
|
2561
|
+
display: initial;
|
|
2562
|
+
}
|
|
2563
|
+
@media (min-width: 1200px) {
|
|
2564
|
+
.mint-hide-to-lg {
|
|
2565
|
+
display: none;
|
|
2566
|
+
}
|
|
2567
|
+
}
|
|
2568
|
+
.mint-hide-xl {
|
|
2569
|
+
display: none;
|
|
2570
|
+
}
|
|
2571
|
+
@media (min-width: 1440px) {
|
|
2572
|
+
.mint-hide-xl {
|
|
2573
|
+
display: initial;
|
|
2574
|
+
}
|
|
2575
|
+
}
|
|
2576
|
+
.mint-hide-to-xl {
|
|
2577
|
+
display: initial;
|
|
2578
|
+
}
|
|
2579
|
+
@media (min-width: 1440px) {
|
|
2580
|
+
.mint-hide-to-xl {
|
|
2581
|
+
display: none;
|
|
2582
|
+
}
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2228
2585
|
.mint-max-xs {
|
|
2229
2586
|
width: 100%;
|
|
2230
2587
|
max-width: 480px;
|
|
@@ -2276,35 +2633,6 @@ i.fa-envelope {
|
|
|
2276
2633
|
margin-right: auto;
|
|
2277
2634
|
}
|
|
2278
2635
|
|
|
2279
|
-
section {
|
|
2280
|
-
width: 100%;
|
|
2281
|
-
}
|
|
2282
|
-
section.mint-smaller {
|
|
2283
|
-
margin-left: auto;
|
|
2284
|
-
margin-right: auto;
|
|
2285
|
-
max-width: 480px;
|
|
2286
|
-
}
|
|
2287
|
-
section.mint-small {
|
|
2288
|
-
margin-left: auto;
|
|
2289
|
-
margin-right: auto;
|
|
2290
|
-
max-width: 768px;
|
|
2291
|
-
}
|
|
2292
|
-
section.mint-default {
|
|
2293
|
-
margin-left: auto;
|
|
2294
|
-
margin-right: auto;
|
|
2295
|
-
max-width: 1024px;
|
|
2296
|
-
}
|
|
2297
|
-
section.mint-big {
|
|
2298
|
-
margin-left: auto;
|
|
2299
|
-
margin-right: auto;
|
|
2300
|
-
max-width: 1200px;
|
|
2301
|
-
}
|
|
2302
|
-
section.mint-bigger {
|
|
2303
|
-
margin-left: auto;
|
|
2304
|
-
margin-right: auto;
|
|
2305
|
-
max-width: 1440px;
|
|
2306
|
-
}
|
|
2307
|
-
|
|
2308
2636
|
.mint-center {
|
|
2309
2637
|
align-items: center;
|
|
2310
2638
|
justify-content: center;
|
|
@@ -2316,125 +2644,6 @@ section.mint-bigger {
|
|
|
2316
2644
|
text-align: center;
|
|
2317
2645
|
}
|
|
2318
2646
|
|
|
2319
|
-
.mint-grid {
|
|
2320
|
-
display: grid;
|
|
2321
|
-
grid-template-columns: 1fr;
|
|
2322
|
-
gap: 2rem;
|
|
2323
|
-
margin-top: 2rem;
|
|
2324
|
-
margin-bottom: 2rem;
|
|
2325
|
-
}
|
|
2326
|
-
@media (min-width: 768px) {
|
|
2327
|
-
.mint-grid.mint-2 {
|
|
2328
|
-
grid-template-columns: repeat(2, 1fr);
|
|
2329
|
-
}
|
|
2330
|
-
.mint-grid.mint-2 > :last-child:nth-child(odd) .mint-card {
|
|
2331
|
-
grid-column: span 2;
|
|
2332
|
-
width: 50%;
|
|
2333
|
-
margin-left: auto;
|
|
2334
|
-
margin-right: auto;
|
|
2335
|
-
}
|
|
2336
|
-
}
|
|
2337
|
-
@media (min-width: 768px) {
|
|
2338
|
-
.mint-grid.mint-3 {
|
|
2339
|
-
grid-template-columns: repeat(2, 1fr);
|
|
2340
|
-
}
|
|
2341
|
-
.mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
|
|
2342
|
-
grid-column: span 2;
|
|
2343
|
-
width: 50%;
|
|
2344
|
-
margin-left: auto;
|
|
2345
|
-
margin-right: auto;
|
|
2346
|
-
}
|
|
2347
|
-
}
|
|
2348
|
-
@media (min-width: 1200px) {
|
|
2349
|
-
.mint-grid.mint-3 {
|
|
2350
|
-
grid-template-columns: repeat(3, 1fr);
|
|
2351
|
-
}
|
|
2352
|
-
.mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
|
|
2353
|
-
grid-column: span 1;
|
|
2354
|
-
width: 100%;
|
|
2355
|
-
}
|
|
2356
|
-
.mint-grid.mint-3 > :last-child:nth-child(3n+1) .mint-card {
|
|
2357
|
-
grid-column: 2;
|
|
2358
|
-
}
|
|
2359
|
-
.mint-grid.mint-3 > :last-child:nth-child(3n+2) .mint-card {
|
|
2360
|
-
grid-column: 3;
|
|
2361
|
-
}
|
|
2362
|
-
.mint-grid.mint-3 > :nth-last-child(2):nth-child(3n+1) .mint-card {
|
|
2363
|
-
grid-column: 1;
|
|
2364
|
-
}
|
|
2365
|
-
}
|
|
2366
|
-
@media (min-width: 768px) {
|
|
2367
|
-
.mint-grid.mint-4 {
|
|
2368
|
-
grid-template-columns: repeat(2, 1fr);
|
|
2369
|
-
}
|
|
2370
|
-
.mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
|
|
2371
|
-
grid-column: span 2;
|
|
2372
|
-
width: 50%;
|
|
2373
|
-
margin-left: auto;
|
|
2374
|
-
margin-right: auto;
|
|
2375
|
-
}
|
|
2376
|
-
}
|
|
2377
|
-
@media (min-width: 1200px) {
|
|
2378
|
-
.mint-grid.mint-4 {
|
|
2379
|
-
grid-template-columns: repeat(3, 1fr);
|
|
2380
|
-
}
|
|
2381
|
-
.mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
|
|
2382
|
-
grid-column: span 1;
|
|
2383
|
-
width: 100%;
|
|
2384
|
-
}
|
|
2385
|
-
.mint-grid.mint-4 > :last-child:nth-child(3n+1) .mint-card {
|
|
2386
|
-
grid-column: 2;
|
|
2387
|
-
}
|
|
2388
|
-
.mint-grid.mint-4 > :last-child:nth-child(3n+2) .mint-card {
|
|
2389
|
-
grid-column: 3;
|
|
2390
|
-
}
|
|
2391
|
-
.mint-grid.mint-4 > :nth-last-child(2):nth-child(3n+1) .mint-card {
|
|
2392
|
-
grid-column: 1;
|
|
2393
|
-
}
|
|
2394
|
-
}
|
|
2395
|
-
@media (min-width: 1440px) {
|
|
2396
|
-
.mint-grid.mint-4 {
|
|
2397
|
-
grid-template-columns: repeat(4, 1fr);
|
|
2398
|
-
}
|
|
2399
|
-
.mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card, .mint-grid.mint-4 > :last-child:nth-child(3n+1) .mint-card, .mint-grid.mint-4 > :last-child:nth-child(3n+2) .mint-card, .mint-grid.mint-4 > :nth-last-child(2):nth-child(3n+1) .mint-card {
|
|
2400
|
-
grid-column: span 1;
|
|
2401
|
-
width: 100%;
|
|
2402
|
-
}
|
|
2403
|
-
.mint-grid.mint-4 > :last-child:nth-child(4n+1) .mint-card {
|
|
2404
|
-
grid-column: 2/span 2;
|
|
2405
|
-
width: 50%;
|
|
2406
|
-
margin-left: auto;
|
|
2407
|
-
margin-right: auto;
|
|
2408
|
-
}
|
|
2409
|
-
.mint-grid.mint-4 > :last-child:nth-child(4n+2) .mint-card {
|
|
2410
|
-
grid-column: 3/span 2;
|
|
2411
|
-
width: 50%;
|
|
2412
|
-
margin-left: auto;
|
|
2413
|
-
margin-right: auto;
|
|
2414
|
-
}
|
|
2415
|
-
.mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+1) .mint-card {
|
|
2416
|
-
grid-column: 1/span 2;
|
|
2417
|
-
width: 50%;
|
|
2418
|
-
margin-left: auto;
|
|
2419
|
-
margin-right: auto;
|
|
2420
|
-
}
|
|
2421
|
-
.mint-grid.mint-4 > :last-child:nth-child(4n+3) .mint-card {
|
|
2422
|
-
grid-column: 4;
|
|
2423
|
-
}
|
|
2424
|
-
.mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+2) .mint-card {
|
|
2425
|
-
grid-column: 2/span 2;
|
|
2426
|
-
width: 50%;
|
|
2427
|
-
margin-left: auto;
|
|
2428
|
-
margin-right: auto;
|
|
2429
|
-
}
|
|
2430
|
-
.mint-grid.mint-4 > :nth-last-child(3):nth-child(4n+1) .mint-card {
|
|
2431
|
-
grid-column: 1;
|
|
2432
|
-
}
|
|
2433
|
-
}
|
|
2434
|
-
.mint-grid .mint-portrait {
|
|
2435
|
-
grid-row: span 2;
|
|
2436
|
-
}
|
|
2437
|
-
|
|
2438
2647
|
.mint-fit {
|
|
2439
2648
|
width: fit-content;
|
|
2440
2649
|
height: fit-content;
|