@appartmint/mint 0.15.7 → 0.15.9

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
@@ -11,6 +11,25 @@
11
11
  transform: none !important;
12
12
  }
13
13
 
14
+ .mint-background {
15
+ position: fixed;
16
+ left: 0;
17
+ top: 0;
18
+ width: 100vw;
19
+ height: 100vh;
20
+ object-fit: cover;
21
+ background-size: cover;
22
+ background-position: center;
23
+ background-repeat: no-repeat;
24
+ z-index: 0;
25
+ filter: opacity(0) blur(10vw);
26
+ transition: filter 1000ms ease-out;
27
+ }
28
+ .mint-background.active {
29
+ opacity: 1;
30
+ filter: opacity(1) blur(0.15vw);
31
+ }
32
+
14
33
  .mint-btn, .mint-select,
15
34
  .mint-btn-group,
16
35
  .mint-btn-icon,
@@ -579,7 +598,110 @@ app-footer::before {
579
598
  display: flex;
580
599
  flex-grow: 1;
581
600
  height: 100%;
582
- background: css-var(trans);
601
+ background: var(--mint-trans);
602
+ }
603
+
604
+ .mint-footer {
605
+ display: flex;
606
+ flex-direction: column;
607
+ max-width: 100%;
608
+ background: var(--mint-back);
609
+ transition: transform 300ms;
610
+ z-index: 999;
611
+ overflow: hidden;
612
+ }
613
+ .mint-footer.mint-hide {
614
+ transform: translateY(100%);
615
+ }
616
+ .mint-footer * {
617
+ max-width: 100%;
618
+ }
619
+ .mint-footer p {
620
+ margin: 0;
621
+ }
622
+ .mint-footer-content {
623
+ display: flex;
624
+ flex-direction: column;
625
+ flex-wrap: wrap;
626
+ align-items: center;
627
+ justify-content: space-between;
628
+ }
629
+ @media (min-width: 768px) {
630
+ .mint-footer-content {
631
+ flex-direction: row;
632
+ align-items: flex-start;
633
+ }
634
+ }
635
+ .mint-footer-content > p {
636
+ margin: 0 auto;
637
+ text-align: center;
638
+ }
639
+ .mint-footer-content > p a {
640
+ display: block;
641
+ }
642
+ .mint-footer-content [label=Footer] {
643
+ width: 100%;
644
+ margin: auto;
645
+ }
646
+ @media (min-width: 768px) {
647
+ .mint-footer-content [label=Footer] {
648
+ width: auto;
649
+ }
650
+ }
651
+ .mint-footer-content [label=Footer] > ul {
652
+ flex-direction: column;
653
+ flex-wrap: wrap;
654
+ justify-content: space-around;
655
+ text-align: center;
656
+ }
657
+ @media (min-width: 480px) {
658
+ .mint-footer-content [label=Footer] > ul {
659
+ flex-direction: row;
660
+ }
661
+ }
662
+ .mint-footer-content [label=Footer] > ul > ul li:last-child .mint-pill {
663
+ margin-bottom: 0;
664
+ }
665
+ .mint-footer-content [label=Footer] .mint-pill {
666
+ margin-bottom: 0.5rem;
667
+ }
668
+ .mint-footer-heel {
669
+ display: flex;
670
+ flex-direction: column;
671
+ align-items: center;
672
+ justify-content: space-between;
673
+ padding: 0.4rem 1rem;
674
+ color: var(--mint-back);
675
+ background: var(--mint-brand-6);
676
+ text-align: center;
677
+ }
678
+ @media (min-width: 768px) {
679
+ .mint-footer-heel {
680
+ flex-direction: row;
681
+ }
682
+ }
683
+ .mint-footer-message {
684
+ display: flex;
685
+ align-items: center;
686
+ justify-content: center;
687
+ flex-wrap: wrap;
688
+ }
689
+ @media (min-width: 480px) {
690
+ .mint-footer-message {
691
+ flex-wrap: nowrap;
692
+ }
693
+ }
694
+ .mint-footer-message > .mint-pill {
695
+ margin: 0 0.25rem;
696
+ }
697
+ .mint-footer-message > * {
698
+ margin: 0 0.5rem;
699
+ }
700
+ .mint-footer-message > *:first-child {
701
+ margin-left: 0;
702
+ }
703
+ .mint-footer-message > *:last-child {
704
+ margin-right: 0;
583
705
  }
584
706
 
585
707
  :root {
@@ -1004,6 +1126,10 @@ app-footer::before {
1004
1126
  width: 100%;
1005
1127
  }
1006
1128
 
1129
+ .grecaptcha-badge {
1130
+ visibility: hidden;
1131
+ }
1132
+
1007
1133
  @keyframes instafade {
1008
1134
  0% {
1009
1135
  color: var(--mint-instagram-0);
@@ -1257,6 +1383,125 @@ iframe {
1257
1383
  padding: 0;
1258
1384
  }
1259
1385
 
1386
+ .mint-grid {
1387
+ display: grid;
1388
+ grid-template-columns: 1fr;
1389
+ gap: 2rem;
1390
+ margin-top: 2rem;
1391
+ margin-bottom: 2rem;
1392
+ }
1393
+ @media (min-width: 768px) {
1394
+ .mint-grid.mint-2 {
1395
+ grid-template-columns: repeat(2, 1fr);
1396
+ }
1397
+ .mint-grid.mint-2 > :last-child:nth-child(odd) .mint-card {
1398
+ grid-column: span 2;
1399
+ width: 50%;
1400
+ margin-left: auto;
1401
+ margin-right: auto;
1402
+ }
1403
+ }
1404
+ @media (min-width: 768px) {
1405
+ .mint-grid.mint-3 {
1406
+ grid-template-columns: repeat(2, 1fr);
1407
+ }
1408
+ .mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
1409
+ grid-column: span 2;
1410
+ width: 50%;
1411
+ margin-left: auto;
1412
+ margin-right: auto;
1413
+ }
1414
+ }
1415
+ @media (min-width: 1200px) {
1416
+ .mint-grid.mint-3 {
1417
+ grid-template-columns: repeat(3, 1fr);
1418
+ }
1419
+ .mint-grid.mint-3 > :last-child:nth-child(odd) .mint-card {
1420
+ grid-column: span 1;
1421
+ width: 100%;
1422
+ }
1423
+ .mint-grid.mint-3 > :last-child:nth-child(3n+1) .mint-card {
1424
+ grid-column: 2;
1425
+ }
1426
+ .mint-grid.mint-3 > :last-child:nth-child(3n+2) .mint-card {
1427
+ grid-column: 3;
1428
+ }
1429
+ .mint-grid.mint-3 > :nth-last-child(2):nth-child(3n+1) .mint-card {
1430
+ grid-column: 1;
1431
+ }
1432
+ }
1433
+ @media (min-width: 768px) {
1434
+ .mint-grid.mint-4 {
1435
+ grid-template-columns: repeat(2, 1fr);
1436
+ }
1437
+ .mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
1438
+ grid-column: span 2;
1439
+ width: 50%;
1440
+ margin-left: auto;
1441
+ margin-right: auto;
1442
+ }
1443
+ }
1444
+ @media (min-width: 1200px) {
1445
+ .mint-grid.mint-4 {
1446
+ grid-template-columns: repeat(3, 1fr);
1447
+ }
1448
+ .mint-grid.mint-4 > :last-child:nth-child(odd) .mint-card {
1449
+ grid-column: span 1;
1450
+ width: 100%;
1451
+ }
1452
+ .mint-grid.mint-4 > :last-child:nth-child(3n+1) .mint-card {
1453
+ grid-column: 2;
1454
+ }
1455
+ .mint-grid.mint-4 > :last-child:nth-child(3n+2) .mint-card {
1456
+ grid-column: 3;
1457
+ }
1458
+ .mint-grid.mint-4 > :nth-last-child(2):nth-child(3n+1) .mint-card {
1459
+ grid-column: 1;
1460
+ }
1461
+ }
1462
+ @media (min-width: 1440px) {
1463
+ .mint-grid.mint-4 {
1464
+ grid-template-columns: repeat(4, 1fr);
1465
+ }
1466
+ .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 {
1467
+ grid-column: span 1;
1468
+ width: 100%;
1469
+ }
1470
+ .mint-grid.mint-4 > :last-child:nth-child(4n+1) .mint-card {
1471
+ grid-column: 2/span 2;
1472
+ width: 50%;
1473
+ margin-left: auto;
1474
+ margin-right: auto;
1475
+ }
1476
+ .mint-grid.mint-4 > :last-child:nth-child(4n+2) .mint-card {
1477
+ grid-column: 3/span 2;
1478
+ width: 50%;
1479
+ margin-left: auto;
1480
+ margin-right: auto;
1481
+ }
1482
+ .mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+1) .mint-card {
1483
+ grid-column: 1/span 2;
1484
+ width: 50%;
1485
+ margin-left: auto;
1486
+ margin-right: auto;
1487
+ }
1488
+ .mint-grid.mint-4 > :last-child:nth-child(4n+3) .mint-card {
1489
+ grid-column: 4;
1490
+ }
1491
+ .mint-grid.mint-4 > :nth-last-child(2):nth-child(4n+2) .mint-card {
1492
+ grid-column: 2/span 2;
1493
+ width: 50%;
1494
+ margin-left: auto;
1495
+ margin-right: auto;
1496
+ }
1497
+ .mint-grid.mint-4 > :nth-last-child(3):nth-child(4n+1) .mint-card {
1498
+ grid-column: 1;
1499
+ }
1500
+ }
1501
+ .mint-grid .mint-portrait {
1502
+ grid-row: span 2;
1503
+ }
1504
+
1260
1505
  i.fa-envelope {
1261
1506
  transform: translateY(5%);
1262
1507
  }
@@ -1520,6 +1765,9 @@ textarea {
1520
1765
  .mint-pad-t6 {
1521
1766
  padding-top: 6rem;
1522
1767
  }
1768
+ .mint-pad-t50 {
1769
+ padding-top: 50vh;
1770
+ }
1523
1771
  .mint-pad-b {
1524
1772
  padding-bottom: 1rem;
1525
1773
  }
@@ -1975,6 +2223,9 @@ textarea {
1975
2223
  .mint-margin-t6 {
1976
2224
  margin-top: 6rem;
1977
2225
  }
2226
+ .mint-margin-t50 {
2227
+ margin-top: 50vh;
2228
+ }
1978
2229
  .mint-margin-b {
1979
2230
  margin-bottom: 1rem;
1980
2231
  }
@@ -2266,6 +2517,90 @@ textarea {
2266
2517
  }
2267
2518
  }
2268
2519
 
2520
+ .mint-hide {
2521
+ display: initial;
2522
+ }
2523
+ .mint-hide-xs {
2524
+ display: none;
2525
+ }
2526
+ @media (min-width: 480px) {
2527
+ .mint-hide-xs {
2528
+ display: initial;
2529
+ }
2530
+ }
2531
+ .mint-hide-to-xs {
2532
+ display: initial;
2533
+ }
2534
+ @media (min-width: 480px) {
2535
+ .mint-hide-to-xs {
2536
+ display: none;
2537
+ }
2538
+ }
2539
+ .mint-hide-sm {
2540
+ display: none;
2541
+ }
2542
+ @media (min-width: 768px) {
2543
+ .mint-hide-sm {
2544
+ display: initial;
2545
+ }
2546
+ }
2547
+ .mint-hide-to-sm {
2548
+ display: initial;
2549
+ }
2550
+ @media (min-width: 768px) {
2551
+ .mint-hide-to-sm {
2552
+ display: none;
2553
+ }
2554
+ }
2555
+ .mint-hide-md {
2556
+ display: none;
2557
+ }
2558
+ @media (min-width: 1024px) {
2559
+ .mint-hide-md {
2560
+ display: initial;
2561
+ }
2562
+ }
2563
+ .mint-hide-to-md {
2564
+ display: initial;
2565
+ }
2566
+ @media (min-width: 1024px) {
2567
+ .mint-hide-to-md {
2568
+ display: none;
2569
+ }
2570
+ }
2571
+ .mint-hide-lg {
2572
+ display: none;
2573
+ }
2574
+ @media (min-width: 1200px) {
2575
+ .mint-hide-lg {
2576
+ display: initial;
2577
+ }
2578
+ }
2579
+ .mint-hide-to-lg {
2580
+ display: initial;
2581
+ }
2582
+ @media (min-width: 1200px) {
2583
+ .mint-hide-to-lg {
2584
+ display: none;
2585
+ }
2586
+ }
2587
+ .mint-hide-xl {
2588
+ display: none;
2589
+ }
2590
+ @media (min-width: 1440px) {
2591
+ .mint-hide-xl {
2592
+ display: initial;
2593
+ }
2594
+ }
2595
+ .mint-hide-to-xl {
2596
+ display: initial;
2597
+ }
2598
+ @media (min-width: 1440px) {
2599
+ .mint-hide-to-xl {
2600
+ display: none;
2601
+ }
2602
+ }
2603
+
2269
2604
  .mint-max-xs {
2270
2605
  width: 100%;
2271
2606
  max-width: 480px;
@@ -2317,35 +2652,6 @@ textarea {
2317
2652
  margin-right: auto;
2318
2653
  }
2319
2654
 
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
2655
  .mint-center {
2350
2656
  align-items: center;
2351
2657
  justify-content: center;
@@ -2357,125 +2663,6 @@ section.mint-bigger {
2357
2663
  text-align: center;
2358
2664
  }
2359
2665
 
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
2666
  .mint-fit {
2480
2667
  width: fit-content;
2481
2668
  height: fit-content;