@appartmint/mint 0.15.7 → 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 CHANGED
@@ -579,7 +579,110 @@ app-footer::before {
579
579
  display: flex;
580
580
  flex-grow: 1;
581
581
  height: 100%;
582
- background: css-var(trans);
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,6 +1364,125 @@ 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
  }
@@ -1520,6 +1746,9 @@ textarea {
1520
1746
  .mint-pad-t6 {
1521
1747
  padding-top: 6rem;
1522
1748
  }
1749
+ .mint-pad-t50 {
1750
+ padding-top: 50vh;
1751
+ }
1523
1752
  .mint-pad-b {
1524
1753
  padding-bottom: 1rem;
1525
1754
  }
@@ -1975,6 +2204,9 @@ textarea {
1975
2204
  .mint-margin-t6 {
1976
2205
  margin-top: 6rem;
1977
2206
  }
2207
+ .mint-margin-t50 {
2208
+ margin-top: 50vh;
2209
+ }
1978
2210
  .mint-margin-b {
1979
2211
  margin-bottom: 1rem;
1980
2212
  }
@@ -2266,6 +2498,90 @@ textarea {
2266
2498
  }
2267
2499
  }
2268
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
+
2269
2585
  .mint-max-xs {
2270
2586
  width: 100%;
2271
2587
  max-width: 480px;
@@ -2317,35 +2633,6 @@ textarea {
2317
2633
  margin-right: auto;
2318
2634
  }
2319
2635
 
2320
- section {
2321
- width: 100%;
2322
- }
2323
- section.mint-smaller {
2324
- margin-left: auto;
2325
- margin-right: auto;
2326
- max-width: 480px;
2327
- }
2328
- section.mint-small {
2329
- margin-left: auto;
2330
- margin-right: auto;
2331
- max-width: 768px;
2332
- }
2333
- section.mint-default {
2334
- margin-left: auto;
2335
- margin-right: auto;
2336
- max-width: 1024px;
2337
- }
2338
- section.mint-big {
2339
- margin-left: auto;
2340
- margin-right: auto;
2341
- max-width: 1200px;
2342
- }
2343
- section.mint-bigger {
2344
- margin-left: auto;
2345
- margin-right: auto;
2346
- max-width: 1440px;
2347
- }
2348
-
2349
2636
  .mint-center {
2350
2637
  align-items: center;
2351
2638
  justify-content: center;
@@ -2357,125 +2644,6 @@ section.mint-bigger {
2357
2644
  text-align: center;
2358
2645
  }
2359
2646
 
2360
- .mint-grid {
2361
- display: grid;
2362
- grid-template-columns: 1fr;
2363
- gap: 2rem;
2364
- margin-top: 2rem;
2365
- margin-bottom: 2rem;
2366
- }
2367
- @media (min-width: 768px) {
2368
- .mint-grid.mint-2 {
2369
- grid-template-columns: repeat(2, 1fr);
2370
- }
2371
- .mint-grid.mint-2 > :last-child:nth-child(odd) .mint-card {
2372
- grid-column: span 2;
2373
- width: 50%;
2374
- margin-left: auto;
2375
- margin-right: auto;
2376
- }
2377
- }
2378
- @media (min-width: 768px) {
2379
- .mint-grid.mint-3 {
2380
- grid-template-columns: repeat(2, 1fr);
2381
- }
2382
- .mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
2383
- grid-column: span 2;
2384
- width: 50%;
2385
- margin-left: auto;
2386
- margin-right: auto;
2387
- }
2388
- }
2389
- @media (min-width: 1200px) {
2390
- .mint-grid.mint-3 {
2391
- grid-template-columns: repeat(3, 1fr);
2392
- }
2393
- .mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
2394
- grid-column: span 1;
2395
- width: 100%;
2396
- }
2397
- .mint-grid.mint-3 > :last-child:nth-child(3n+1) .mint-card {
2398
- grid-column: 2;
2399
- }
2400
- .mint-grid.mint-3 > :last-child:nth-child(3n+2) .mint-card {
2401
- grid-column: 3;
2402
- }
2403
- .mint-grid.mint-3 > :nth-last-child(2):nth-child(3n+1) .mint-card {
2404
- grid-column: 1;
2405
- }
2406
- }
2407
- @media (min-width: 768px) {
2408
- .mint-grid.mint-4 {
2409
- grid-template-columns: repeat(2, 1fr);
2410
- }
2411
- .mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
2412
- grid-column: span 2;
2413
- width: 50%;
2414
- margin-left: auto;
2415
- margin-right: auto;
2416
- }
2417
- }
2418
- @media (min-width: 1200px) {
2419
- .mint-grid.mint-4 {
2420
- grid-template-columns: repeat(3, 1fr);
2421
- }
2422
- .mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
2423
- grid-column: span 1;
2424
- width: 100%;
2425
- }
2426
- .mint-grid.mint-4 > :last-child:nth-child(3n+1) .mint-card {
2427
- grid-column: 2;
2428
- }
2429
- .mint-grid.mint-4 > :last-child:nth-child(3n+2) .mint-card {
2430
- grid-column: 3;
2431
- }
2432
- .mint-grid.mint-4 > :nth-last-child(2):nth-child(3n+1) .mint-card {
2433
- grid-column: 1;
2434
- }
2435
- }
2436
- @media (min-width: 1440px) {
2437
- .mint-grid.mint-4 {
2438
- grid-template-columns: repeat(4, 1fr);
2439
- }
2440
- .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 {
2441
- grid-column: span 1;
2442
- width: 100%;
2443
- }
2444
- .mint-grid.mint-4 > :last-child:nth-child(4n+1) .mint-card {
2445
- grid-column: 2/span 2;
2446
- width: 50%;
2447
- margin-left: auto;
2448
- margin-right: auto;
2449
- }
2450
- .mint-grid.mint-4 > :last-child:nth-child(4n+2) .mint-card {
2451
- grid-column: 3/span 2;
2452
- width: 50%;
2453
- margin-left: auto;
2454
- margin-right: auto;
2455
- }
2456
- .mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+1) .mint-card {
2457
- grid-column: 1/span 2;
2458
- width: 50%;
2459
- margin-left: auto;
2460
- margin-right: auto;
2461
- }
2462
- .mint-grid.mint-4 > :last-child:nth-child(4n+3) .mint-card {
2463
- grid-column: 4;
2464
- }
2465
- .mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+2) .mint-card {
2466
- grid-column: 2/span 2;
2467
- width: 50%;
2468
- margin-left: auto;
2469
- margin-right: auto;
2470
- }
2471
- .mint-grid.mint-4 > :nth-last-child(3):nth-child(4n+1) .mint-card {
2472
- grid-column: 1;
2473
- }
2474
- }
2475
- .mint-grid .mint-portrait {
2476
- grid-row: span 2;
2477
- }
2478
-
2479
2647
  .mint-fit {
2480
2648
  width: fit-content;
2481
2649
  height: fit-content;