@innovastudio/contentbuilder 1.5.198 → 1.5.200
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.
|
@@ -126,6 +126,10 @@
|
|
|
126
126
|
box-sizing: border-box;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
.row {
|
|
130
|
+
position: relative;
|
|
131
|
+
}
|
|
132
|
+
|
|
129
133
|
.column {
|
|
130
134
|
position: relative;
|
|
131
135
|
box-sizing: border-box;
|
|
@@ -210,6 +214,13 @@
|
|
|
210
214
|
float: right;
|
|
211
215
|
}
|
|
212
216
|
}
|
|
217
|
+
/* nested */
|
|
218
|
+
.column .row {
|
|
219
|
+
gap: 2rem;
|
|
220
|
+
margin: 0 -1rem;
|
|
221
|
+
/* Compensate for parent column padding */
|
|
222
|
+
}
|
|
223
|
+
|
|
213
224
|
.is-row-overlay {
|
|
214
225
|
position: absolute;
|
|
215
226
|
top: 0;
|
|
@@ -230,7 +241,17 @@
|
|
|
230
241
|
flex-shrink: initial;
|
|
231
242
|
}
|
|
232
243
|
|
|
244
|
+
@media (max-width: 970px) {
|
|
245
|
+
.is-container .row {
|
|
246
|
+
flex-wrap: wrap;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
233
249
|
/* Responsive Utility */
|
|
250
|
+
@media (max-width: 970px) {
|
|
251
|
+
.row[style*=gap] {
|
|
252
|
+
gap: 0 !important;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
234
255
|
@media all and (max-width: 760px) {
|
|
235
256
|
.is-container .flow-reverse {
|
|
236
257
|
display: flex;
|
|
@@ -1386,11 +1407,14 @@
|
|
|
1386
1407
|
/* -------- UTILITY -------- */
|
|
1387
1408
|
.is-container {
|
|
1388
1409
|
/* reset */
|
|
1389
|
-
/*
|
|
1410
|
+
/* Border Width */
|
|
1411
|
+
/* Individual sides */
|
|
1412
|
+
/* Border Style */
|
|
1413
|
+
/* Border Colors */
|
|
1414
|
+
/* Hover Border Colors */
|
|
1415
|
+
/* Border Radius */
|
|
1390
1416
|
/* Text Formatting */
|
|
1391
|
-
/* colors */
|
|
1392
1417
|
/* text colors */
|
|
1393
|
-
/* width */
|
|
1394
1418
|
/* space between */
|
|
1395
1419
|
/* Overide Bootstrap */
|
|
1396
1420
|
}
|
|
@@ -1401,23 +1425,68 @@
|
|
|
1401
1425
|
border-style: solid;
|
|
1402
1426
|
border-color: #e5e7eb;
|
|
1403
1427
|
}
|
|
1404
|
-
.is-container .border-solid {
|
|
1405
|
-
border-style: solid;
|
|
1406
|
-
}
|
|
1407
|
-
.is-container .border-none {
|
|
1408
|
-
border-style: none;
|
|
1409
|
-
}
|
|
1410
1428
|
.is-container .border {
|
|
1411
1429
|
border-width: 1px;
|
|
1412
1430
|
}
|
|
1413
1431
|
.is-container .border-0 {
|
|
1414
|
-
border-width:
|
|
1432
|
+
border-width: 0;
|
|
1415
1433
|
}
|
|
1416
1434
|
.is-container .border-2 {
|
|
1417
1435
|
border-width: 2px;
|
|
1418
1436
|
}
|
|
1419
|
-
.is-container .border-
|
|
1420
|
-
border-
|
|
1437
|
+
.is-container .border-4 {
|
|
1438
|
+
border-width: 4px;
|
|
1439
|
+
}
|
|
1440
|
+
.is-container .border-8 {
|
|
1441
|
+
border-width: 8px;
|
|
1442
|
+
}
|
|
1443
|
+
.is-container .border-t {
|
|
1444
|
+
border-top-width: 1px;
|
|
1445
|
+
}
|
|
1446
|
+
.is-container .border-r {
|
|
1447
|
+
border-right-width: 1px;
|
|
1448
|
+
}
|
|
1449
|
+
.is-container .border-b {
|
|
1450
|
+
border-bottom-width: 1px;
|
|
1451
|
+
}
|
|
1452
|
+
.is-container .border-l {
|
|
1453
|
+
border-left-width: 1px;
|
|
1454
|
+
}
|
|
1455
|
+
.is-container .border-t-0 {
|
|
1456
|
+
border-top-width: 0;
|
|
1457
|
+
}
|
|
1458
|
+
.is-container .border-r-0 {
|
|
1459
|
+
border-right-width: 0;
|
|
1460
|
+
}
|
|
1461
|
+
.is-container .border-b-0 {
|
|
1462
|
+
border-bottom-width: 0;
|
|
1463
|
+
}
|
|
1464
|
+
.is-container .border-l-0 {
|
|
1465
|
+
border-left-width: 0;
|
|
1466
|
+
}
|
|
1467
|
+
.is-container .border-t-2 {
|
|
1468
|
+
border-top-width: 2px;
|
|
1469
|
+
}
|
|
1470
|
+
.is-container .border-r-2 {
|
|
1471
|
+
border-right-width: 2px;
|
|
1472
|
+
}
|
|
1473
|
+
.is-container .border-b-2 {
|
|
1474
|
+
border-bottom-width: 2px;
|
|
1475
|
+
}
|
|
1476
|
+
.is-container .border-l-2 {
|
|
1477
|
+
border-left-width: 2px;
|
|
1478
|
+
}
|
|
1479
|
+
.is-container .border-solid {
|
|
1480
|
+
border-style: solid;
|
|
1481
|
+
}
|
|
1482
|
+
.is-container .border-dashed {
|
|
1483
|
+
border-style: dashed;
|
|
1484
|
+
}
|
|
1485
|
+
.is-container .border-dotted {
|
|
1486
|
+
border-style: dotted;
|
|
1487
|
+
}
|
|
1488
|
+
.is-container .border-none {
|
|
1489
|
+
border-style: none;
|
|
1421
1490
|
}
|
|
1422
1491
|
.is-container .border-transparent {
|
|
1423
1492
|
border-color: transparent;
|
|
@@ -1425,12 +1494,84 @@
|
|
|
1425
1494
|
.is-container .border-current {
|
|
1426
1495
|
border-color: currentColor;
|
|
1427
1496
|
}
|
|
1497
|
+
.is-container .border-white {
|
|
1498
|
+
border-color: #ffffff;
|
|
1499
|
+
}
|
|
1500
|
+
.is-container .border-black {
|
|
1501
|
+
border-color: #000000;
|
|
1502
|
+
}
|
|
1503
|
+
.is-container .border-gray-50 {
|
|
1504
|
+
border-color: #f9fafb;
|
|
1505
|
+
}
|
|
1506
|
+
.is-container .border-gray-100 {
|
|
1507
|
+
border-color: #f3f4f6;
|
|
1508
|
+
}
|
|
1509
|
+
.is-container .border-gray-200 {
|
|
1510
|
+
border-color: #e5e7eb;
|
|
1511
|
+
}
|
|
1512
|
+
.is-container .border-gray-300 {
|
|
1513
|
+
border-color: #d1d5db;
|
|
1514
|
+
}
|
|
1515
|
+
.is-container .border-gray-400 {
|
|
1516
|
+
border-color: #9ca3af;
|
|
1517
|
+
}
|
|
1518
|
+
.is-container .border-gray-500 {
|
|
1519
|
+
border-color: #6b7280;
|
|
1520
|
+
}
|
|
1521
|
+
.is-container .border-gray-600 {
|
|
1522
|
+
border-color: #4b5563;
|
|
1523
|
+
}
|
|
1524
|
+
.is-container .border-gray-700 {
|
|
1525
|
+
border-color: #374151;
|
|
1526
|
+
}
|
|
1527
|
+
.is-container .border-gray-800 {
|
|
1528
|
+
border-color: #1f2937;
|
|
1529
|
+
}
|
|
1530
|
+
.is-container .border-gray-900 {
|
|
1531
|
+
border-color: #111827;
|
|
1532
|
+
}
|
|
1428
1533
|
.is-container .hover\:border-transparent:hover {
|
|
1429
1534
|
border-color: transparent !important;
|
|
1430
1535
|
}
|
|
1431
1536
|
.is-container .hover\:border-current:hover {
|
|
1432
1537
|
border-color: currentColor !important;
|
|
1433
1538
|
}
|
|
1539
|
+
.is-container .hover\:border-white:hover {
|
|
1540
|
+
border-color: #ffffff;
|
|
1541
|
+
}
|
|
1542
|
+
.is-container .hover\:border-black:hover {
|
|
1543
|
+
border-color: #000000;
|
|
1544
|
+
}
|
|
1545
|
+
.is-container .hover\:border-gray-50:hover {
|
|
1546
|
+
border-color: #f9fafb;
|
|
1547
|
+
}
|
|
1548
|
+
.is-container .hover\:border-gray-100:hover {
|
|
1549
|
+
border-color: #f3f4f6;
|
|
1550
|
+
}
|
|
1551
|
+
.is-container .hover\:border-gray-200:hover {
|
|
1552
|
+
border-color: #e5e7eb;
|
|
1553
|
+
}
|
|
1554
|
+
.is-container .hover\:border-gray-300:hover {
|
|
1555
|
+
border-color: #d1d5db;
|
|
1556
|
+
}
|
|
1557
|
+
.is-container .hover\:border-gray-400:hover {
|
|
1558
|
+
border-color: #9ca3af;
|
|
1559
|
+
}
|
|
1560
|
+
.is-container .hover\:border-gray-500:hover {
|
|
1561
|
+
border-color: #6b7280;
|
|
1562
|
+
}
|
|
1563
|
+
.is-container .hover\:border-gray-600:hover {
|
|
1564
|
+
border-color: #4b5563;
|
|
1565
|
+
}
|
|
1566
|
+
.is-container .hover\:border-gray-700:hover {
|
|
1567
|
+
border-color: #374151;
|
|
1568
|
+
}
|
|
1569
|
+
.is-container .hover\:border-gray-800:hover {
|
|
1570
|
+
border-color: #1f2937;
|
|
1571
|
+
}
|
|
1572
|
+
.is-container .hover\:border-gray-900:hover {
|
|
1573
|
+
border-color: #111827;
|
|
1574
|
+
}
|
|
1434
1575
|
.is-container .rounded-none {
|
|
1435
1576
|
border-radius: 0px;
|
|
1436
1577
|
}
|
|
@@ -1521,6 +1662,21 @@
|
|
|
1521
1662
|
.is-container .normal-case {
|
|
1522
1663
|
text-transform: none !important;
|
|
1523
1664
|
}
|
|
1665
|
+
.is-container .underline-offset-0 {
|
|
1666
|
+
text-underline-offset: 0px;
|
|
1667
|
+
}
|
|
1668
|
+
.is-container .underline-offset-1 {
|
|
1669
|
+
text-underline-offset: 1px;
|
|
1670
|
+
}
|
|
1671
|
+
.is-container .underline-offset-2 {
|
|
1672
|
+
text-underline-offset: 2px;
|
|
1673
|
+
}
|
|
1674
|
+
.is-container .underline-offset-4 {
|
|
1675
|
+
text-underline-offset: 4px;
|
|
1676
|
+
}
|
|
1677
|
+
.is-container .underline-offset-8 {
|
|
1678
|
+
text-underline-offset: 8px;
|
|
1679
|
+
}
|
|
1524
1680
|
.is-container .text-left {
|
|
1525
1681
|
text-align: left;
|
|
1526
1682
|
}
|
|
@@ -1709,100 +1865,6 @@
|
|
|
1709
1865
|
.is-container .leading-30 {
|
|
1710
1866
|
line-height: 3 !important;
|
|
1711
1867
|
}
|
|
1712
|
-
.is-container .bg-transparent {
|
|
1713
|
-
background-color: transparent;
|
|
1714
|
-
}
|
|
1715
|
-
.is-container .bg-current {
|
|
1716
|
-
background-color: currentColor;
|
|
1717
|
-
}
|
|
1718
|
-
.is-container .bg-black {
|
|
1719
|
-
--tw-bg-opacity: 1;
|
|
1720
|
-
background-color: rgb(0 0 0/var(--tw-bg-opacity));
|
|
1721
|
-
}
|
|
1722
|
-
.is-container .bg-white {
|
|
1723
|
-
--tw-bg-opacity: 1;
|
|
1724
|
-
background-color: rgb(255 255 255/var(--tw-bg-opacity));
|
|
1725
|
-
}
|
|
1726
|
-
.is-container .bg-gray-50 {
|
|
1727
|
-
--tw-bg-opacity: 1;
|
|
1728
|
-
background-color: rgb(249 250 251/var(--tw-bg-opacity));
|
|
1729
|
-
}
|
|
1730
|
-
.is-container .bg-gray-100 {
|
|
1731
|
-
--tw-bg-opacity: 1;
|
|
1732
|
-
background-color: rgb(243 244 246/var(--tw-bg-opacity));
|
|
1733
|
-
}
|
|
1734
|
-
.is-container .bg-gray-200 {
|
|
1735
|
-
--tw-bg-opacity: 1;
|
|
1736
|
-
background-color: rgb(229 231 235/var(--tw-bg-opacity));
|
|
1737
|
-
}
|
|
1738
|
-
.is-container .bg-gray-300 {
|
|
1739
|
-
--tw-bg-opacity: 1;
|
|
1740
|
-
background-color: rgb(209 213 219/var(--tw-bg-opacity));
|
|
1741
|
-
}
|
|
1742
|
-
.is-container .bg-gray-400 {
|
|
1743
|
-
--tw-bg-opacity: 1;
|
|
1744
|
-
background-color: rgb(156 163 175/var(--tw-bg-opacity));
|
|
1745
|
-
}
|
|
1746
|
-
.is-container .bg-gray-500 {
|
|
1747
|
-
--tw-bg-opacity: 1;
|
|
1748
|
-
background-color: rgb(107 114 128/var(--tw-bg-opacity));
|
|
1749
|
-
}
|
|
1750
|
-
.is-container .bg-gray-600 {
|
|
1751
|
-
--tw-bg-opacity: 1;
|
|
1752
|
-
background-color: rgb(75 85 99/var(--tw-bg-opacity));
|
|
1753
|
-
}
|
|
1754
|
-
.is-container .bg-gray-700 {
|
|
1755
|
-
--tw-bg-opacity: 1;
|
|
1756
|
-
background-color: rgb(55 65 81/var(--tw-bg-opacity));
|
|
1757
|
-
}
|
|
1758
|
-
.is-container .bg-gray-800 {
|
|
1759
|
-
--tw-bg-opacity: 1;
|
|
1760
|
-
background-color: rgb(31 41 55/var(--tw-bg-opacity));
|
|
1761
|
-
}
|
|
1762
|
-
.is-container .bg-gray-900 {
|
|
1763
|
-
--tw-bg-opacity: 1;
|
|
1764
|
-
background-color: rgb(17 24 39/var(--tw-bg-opacity));
|
|
1765
|
-
}
|
|
1766
|
-
.is-container .hover\:bg-gray-50:hover {
|
|
1767
|
-
--tw-bg-opacity: 1;
|
|
1768
|
-
background-color: rgb(249 250 251/var(--tw-bg-opacity));
|
|
1769
|
-
}
|
|
1770
|
-
.is-container .hover\:bg-gray-100:hover {
|
|
1771
|
-
--tw-bg-opacity: 1;
|
|
1772
|
-
background-color: rgb(243 244 246/var(--tw-bg-opacity));
|
|
1773
|
-
}
|
|
1774
|
-
.is-container .hover\:bg-gray-200:hover {
|
|
1775
|
-
--tw-bg-opacity: 1;
|
|
1776
|
-
background-color: rgb(229 231 235/var(--tw-bg-opacity));
|
|
1777
|
-
}
|
|
1778
|
-
.is-container .hover\:bg-gray-300:hover {
|
|
1779
|
-
--tw-bg-opacity: 1;
|
|
1780
|
-
background-color: rgb(209 213 219/var(--tw-bg-opacity));
|
|
1781
|
-
}
|
|
1782
|
-
.is-container .hover\:bg-gray-400:hover {
|
|
1783
|
-
--tw-bg-opacity: 1;
|
|
1784
|
-
background-color: rgb(156 163 175/var(--tw-bg-opacity));
|
|
1785
|
-
}
|
|
1786
|
-
.is-container .hover\:bg-gray-500:hover {
|
|
1787
|
-
--tw-bg-opacity: 1;
|
|
1788
|
-
background-color: rgb(107 114 128/var(--tw-bg-opacity));
|
|
1789
|
-
}
|
|
1790
|
-
.is-container .hover\:bg-gray-600:hover {
|
|
1791
|
-
--tw-bg-opacity: 1;
|
|
1792
|
-
background-color: rgb(75 85 99/var(--tw-bg-opacity));
|
|
1793
|
-
}
|
|
1794
|
-
.is-container .hover\:bg-gray-700:hover {
|
|
1795
|
-
--tw-bg-opacity: 1;
|
|
1796
|
-
background-color: rgb(55 65 81/var(--tw-bg-opacity));
|
|
1797
|
-
}
|
|
1798
|
-
.is-container .hover\:bg-gray-800:hover {
|
|
1799
|
-
--tw-bg-opacity: 1;
|
|
1800
|
-
background-color: rgb(31 41 55/var(--tw-bg-opacity));
|
|
1801
|
-
}
|
|
1802
|
-
.is-container .hover\:bg-gray-900:hover {
|
|
1803
|
-
--tw-bg-opacity: 1;
|
|
1804
|
-
background-color: rgb(17 24 39/var(--tw-bg-opacity));
|
|
1805
|
-
}
|
|
1806
1868
|
.is-container .text-transparent {
|
|
1807
1869
|
color: transparent;
|
|
1808
1870
|
}
|
|
@@ -1810,242 +1872,100 @@
|
|
|
1810
1872
|
color: currentColor;
|
|
1811
1873
|
}
|
|
1812
1874
|
.is-container .text-black {
|
|
1813
|
-
|
|
1814
|
-
color: rgb(0 0 0/var(--tw-text-opacity));
|
|
1875
|
+
color: black;
|
|
1815
1876
|
}
|
|
1816
1877
|
.is-container .text-white {
|
|
1817
|
-
|
|
1818
|
-
color: rgb(255 255 255/var(--tw-text-opacity));
|
|
1878
|
+
color: white;
|
|
1819
1879
|
}
|
|
1820
1880
|
.is-container .text-gray-50 {
|
|
1821
|
-
|
|
1822
|
-
color: rgb(249 250 251/var(--tw-text-opacity));
|
|
1881
|
+
color: #f9fafb;
|
|
1823
1882
|
}
|
|
1824
1883
|
.is-container .text-gray-100 {
|
|
1825
|
-
|
|
1826
|
-
color: rgb(243 244 246/var(--tw-text-opacity));
|
|
1884
|
+
color: #f3f4f6;
|
|
1827
1885
|
}
|
|
1828
1886
|
.is-container .text-gray-200 {
|
|
1829
|
-
|
|
1830
|
-
color: rgb(229 231 235/var(--tw-text-opacity));
|
|
1887
|
+
color: #e5e7eb;
|
|
1831
1888
|
}
|
|
1832
1889
|
.is-container .text-gray-300 {
|
|
1833
|
-
|
|
1834
|
-
color: rgb(209 213 219/var(--tw-text-opacity));
|
|
1890
|
+
color: #d1d5db;
|
|
1835
1891
|
}
|
|
1836
1892
|
.is-container .text-gray-400 {
|
|
1837
|
-
|
|
1838
|
-
color: rgb(156 163 175/var(--tw-text-opacity));
|
|
1893
|
+
color: #9ca3af;
|
|
1839
1894
|
}
|
|
1840
1895
|
.is-container .text-gray-500 {
|
|
1841
|
-
|
|
1842
|
-
color: rgb(107 114 128/var(--tw-text-opacity));
|
|
1896
|
+
color: #6b7280;
|
|
1843
1897
|
}
|
|
1844
1898
|
.is-container .text-gray-600 {
|
|
1845
|
-
|
|
1846
|
-
color: rgb(75 85 99/var(--tw-text-opacity));
|
|
1899
|
+
color: #4b5563;
|
|
1847
1900
|
}
|
|
1848
1901
|
.is-container .text-gray-700 {
|
|
1849
|
-
|
|
1850
|
-
color: rgb(55 65 81/var(--tw-text-opacity));
|
|
1902
|
+
color: #374151;
|
|
1851
1903
|
}
|
|
1852
1904
|
.is-container .text-gray-800 {
|
|
1853
|
-
|
|
1854
|
-
color: rgb(31 41 55/var(--tw-text-opacity));
|
|
1905
|
+
color: #1f2937;
|
|
1855
1906
|
}
|
|
1856
1907
|
.is-container .text-gray-900 {
|
|
1857
|
-
|
|
1858
|
-
color: rgb(17 24 39/var(--tw-text-opacity));
|
|
1859
|
-
}
|
|
1860
|
-
.is-container .hover\:text-white:hover {
|
|
1861
|
-
--tw-text-opacity: 1;
|
|
1862
|
-
color: rgb(255 255 255/var(--tw-text-opacity)) !important;
|
|
1863
|
-
}
|
|
1864
|
-
.is-container .hover\:text-black:hover {
|
|
1865
|
-
--tw-text-opacity: 1;
|
|
1866
|
-
color: rgb(0 0 0/var(--tw-text-opacity)) !important;
|
|
1867
|
-
}
|
|
1868
|
-
.is-container .hover\:text-current:hover {
|
|
1869
|
-
color: currentColor !important;
|
|
1870
|
-
}
|
|
1871
|
-
.is-container .w-full {
|
|
1872
|
-
width: 100%;
|
|
1873
|
-
}
|
|
1874
|
-
.is-container .w-screen {
|
|
1875
|
-
width: 100vw;
|
|
1876
|
-
}
|
|
1877
|
-
.is-container .w-1\/2 {
|
|
1878
|
-
width: 50%;
|
|
1879
|
-
}
|
|
1880
|
-
.is-container .w-1\/3 {
|
|
1881
|
-
width: 33.333333%;
|
|
1882
|
-
}
|
|
1883
|
-
.is-container .w-2\/3 {
|
|
1884
|
-
width: 66.666667%;
|
|
1885
|
-
}
|
|
1886
|
-
.is-container .w-1\/4 {
|
|
1887
|
-
width: 25%;
|
|
1888
|
-
}
|
|
1889
|
-
.is-container .w-2\/4 {
|
|
1890
|
-
width: 50%;
|
|
1891
|
-
}
|
|
1892
|
-
.is-container .w-3\/4 {
|
|
1893
|
-
width: 75%;
|
|
1894
|
-
}
|
|
1895
|
-
.is-container .w-1\/5 {
|
|
1896
|
-
width: 20%;
|
|
1897
|
-
}
|
|
1898
|
-
.is-container .w-2\/5 {
|
|
1899
|
-
width: 40%;
|
|
1900
|
-
}
|
|
1901
|
-
.is-container .w-3\/5 {
|
|
1902
|
-
width: 60%;
|
|
1903
|
-
}
|
|
1904
|
-
.is-container .w-4\/5 {
|
|
1905
|
-
width: 80%;
|
|
1908
|
+
color: #111827;
|
|
1906
1909
|
}
|
|
1907
|
-
.is-container .
|
|
1908
|
-
|
|
1909
|
-
}
|
|
1910
|
-
.is-container .w-2\/6 {
|
|
1911
|
-
width: 33.333333%;
|
|
1912
|
-
}
|
|
1913
|
-
.is-container .w-3\/6 {
|
|
1914
|
-
width: 50%;
|
|
1915
|
-
}
|
|
1916
|
-
.is-container .w-4\/6 {
|
|
1917
|
-
width: 66.666667%;
|
|
1918
|
-
}
|
|
1919
|
-
.is-container .w-5\/6 {
|
|
1920
|
-
width: 83.333333%;
|
|
1921
|
-
}
|
|
1922
|
-
.is-container .w-1\/12 {
|
|
1923
|
-
width: 8.333333%;
|
|
1924
|
-
}
|
|
1925
|
-
.is-container .w-2\/12 {
|
|
1926
|
-
width: 16.666667%;
|
|
1927
|
-
}
|
|
1928
|
-
.is-container .w-3\/12 {
|
|
1929
|
-
width: 25%;
|
|
1930
|
-
}
|
|
1931
|
-
.is-container .w-4\/12 {
|
|
1932
|
-
width: 33.333333%;
|
|
1933
|
-
}
|
|
1934
|
-
.is-container .w-5\/12 {
|
|
1935
|
-
width: 41.666667%;
|
|
1936
|
-
}
|
|
1937
|
-
.is-container .w-6\/12 {
|
|
1938
|
-
width: 50%;
|
|
1939
|
-
}
|
|
1940
|
-
.is-container .w-7\/12 {
|
|
1941
|
-
width: 58.333333%;
|
|
1942
|
-
}
|
|
1943
|
-
.is-container .w-8\/12 {
|
|
1944
|
-
width: 66.666667%;
|
|
1945
|
-
}
|
|
1946
|
-
.is-container .w-9\/12 {
|
|
1947
|
-
width: 75%;
|
|
1948
|
-
}
|
|
1949
|
-
.is-container .w-10\/12 {
|
|
1950
|
-
width: 83.333333%;
|
|
1951
|
-
}
|
|
1952
|
-
.is-container .w-11\/12 {
|
|
1953
|
-
width: 91.666667%;
|
|
1910
|
+
.is-container .text-gray-950 {
|
|
1911
|
+
color: #030712;
|
|
1954
1912
|
}
|
|
1955
1913
|
.is-container .space-x-0 > :not([hidden]) ~ :not([hidden]) {
|
|
1956
|
-
|
|
1957
|
-
margin-right: calc(0px * var(--tw-space-x-reverse));
|
|
1958
|
-
margin-left: calc(0px * (1 - var(--tw-space-x-reverse)));
|
|
1914
|
+
margin-left: 0rem;
|
|
1959
1915
|
}
|
|
1960
1916
|
.is-container .space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1961
|
-
|
|
1962
|
-
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1963
|
-
margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
|
|
1917
|
+
margin-left: 0.25rem;
|
|
1964
1918
|
}
|
|
1965
1919
|
.is-container .space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1966
|
-
|
|
1967
|
-
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1968
|
-
margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
|
|
1920
|
+
margin-left: 0.5rem;
|
|
1969
1921
|
}
|
|
1970
1922
|
.is-container .space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
1971
|
-
|
|
1972
|
-
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
1973
|
-
margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
|
|
1923
|
+
margin-left: 0.75rem;
|
|
1974
1924
|
}
|
|
1975
1925
|
.is-container .space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1976
|
-
|
|
1977
|
-
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1978
|
-
margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
|
|
1926
|
+
margin-left: 1rem;
|
|
1979
1927
|
}
|
|
1980
1928
|
.is-container .space-x-5 > :not([hidden]) ~ :not([hidden]) {
|
|
1981
|
-
|
|
1982
|
-
margin-right: calc(1.25rem * var(--tw-space-x-reverse));
|
|
1983
|
-
margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
|
|
1929
|
+
margin-left: 1.25rem;
|
|
1984
1930
|
}
|
|
1985
1931
|
.is-container .space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
|
1986
|
-
|
|
1987
|
-
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
|
1988
|
-
margin-left: calc(1.5rem * (1 - var(--tw-space-x-reverse)));
|
|
1932
|
+
margin-left: 1.5rem;
|
|
1989
1933
|
}
|
|
1990
1934
|
.is-container .space-x-7 > :not([hidden]) ~ :not([hidden]) {
|
|
1991
|
-
|
|
1992
|
-
margin-right: calc(1.75rem * var(--tw-space-x-reverse));
|
|
1993
|
-
margin-left: calc(1.75rem * (1 - var(--tw-space-x-reverse)));
|
|
1935
|
+
margin-left: 1.75rem;
|
|
1994
1936
|
}
|
|
1995
1937
|
.is-container .space-x-8 > :not([hidden]) ~ :not([hidden]) {
|
|
1996
|
-
|
|
1997
|
-
margin-right: calc(2rem * var(--tw-space-x-reverse));
|
|
1998
|
-
margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
|
|
1938
|
+
margin-left: 2rem;
|
|
1999
1939
|
}
|
|
2000
1940
|
.is-container .space-x-10 > :not([hidden]) ~ :not([hidden]) {
|
|
2001
|
-
|
|
2002
|
-
margin-right: calc(2.5rem * var(--tw-space-x-reverse));
|
|
2003
|
-
margin-left: calc(2.5rem * (1 - var(--tw-space-x-reverse)));
|
|
1941
|
+
margin-left: 2.5rem;
|
|
2004
1942
|
}
|
|
2005
1943
|
.is-container .space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
|
2006
|
-
|
|
2007
|
-
margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
|
|
2008
|
-
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
1944
|
+
margin-top: 0rem;
|
|
2009
1945
|
}
|
|
2010
1946
|
.is-container .space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
2011
|
-
|
|
2012
|
-
margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
|
|
2013
|
-
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1947
|
+
margin-top: 0.25rem;
|
|
2014
1948
|
}
|
|
2015
1949
|
.is-container .space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
2016
|
-
|
|
2017
|
-
margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
|
|
2018
|
-
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1950
|
+
margin-top: 0.5rem;
|
|
2019
1951
|
}
|
|
2020
1952
|
.is-container .space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
|
2021
|
-
|
|
2022
|
-
margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
|
|
2023
|
-
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
1953
|
+
margin-top: 0.75rem;
|
|
2024
1954
|
}
|
|
2025
1955
|
.is-container .space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
2026
|
-
|
|
2027
|
-
margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
|
|
2028
|
-
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1956
|
+
margin-top: 1rem;
|
|
2029
1957
|
}
|
|
2030
1958
|
.is-container .space-y-5 > :not([hidden]) ~ :not([hidden]) {
|
|
2031
|
-
|
|
2032
|
-
margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
|
|
2033
|
-
margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
|
|
1959
|
+
margin-top: 1.25rem;
|
|
2034
1960
|
}
|
|
2035
1961
|
.is-container .space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
|
2036
|
-
|
|
2037
|
-
margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
|
|
2038
|
-
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
1962
|
+
margin-top: 1.5rem;
|
|
2039
1963
|
}
|
|
2040
1964
|
.is-container .space-y-8 > :not([hidden]) ~ :not([hidden]) {
|
|
2041
|
-
|
|
2042
|
-
margin-top: calc(2rem * (1 - var(--tw-space-y-reverse)));
|
|
2043
|
-
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
|
|
1965
|
+
margin-top: 2rem;
|
|
2044
1966
|
}
|
|
2045
1967
|
.is-container .space-y-10 > :not([hidden]) ~ :not([hidden]) {
|
|
2046
|
-
|
|
2047
|
-
margin-top: calc(2.5rem * (1 - var(--tw-space-y-reverse)));
|
|
2048
|
-
margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
|
|
1968
|
+
margin-top: 2.5rem;
|
|
2049
1969
|
}
|
|
2050
1970
|
.is-container a[role=button].px-0 {
|
|
2051
1971
|
padding-left: 0px !important;
|
|
@@ -3770,108 +3690,808 @@
|
|
|
3770
3690
|
align-items: stretch;
|
|
3771
3691
|
}
|
|
3772
3692
|
|
|
3773
|
-
/*
|
|
3774
|
-
.
|
|
3775
|
-
|
|
3693
|
+
/* width */
|
|
3694
|
+
.w-full {
|
|
3695
|
+
width: 100%;
|
|
3776
3696
|
}
|
|
3777
3697
|
|
|
3778
|
-
.
|
|
3779
|
-
|
|
3698
|
+
.w-screen {
|
|
3699
|
+
width: 100vw;
|
|
3780
3700
|
}
|
|
3781
3701
|
|
|
3782
|
-
.
|
|
3783
|
-
|
|
3702
|
+
.w-1\/2 {
|
|
3703
|
+
width: 50%;
|
|
3784
3704
|
}
|
|
3785
3705
|
|
|
3786
|
-
|
|
3787
|
-
.
|
|
3788
|
-
white-space: nowrap;
|
|
3706
|
+
.w-1\/3 {
|
|
3707
|
+
width: 33.333333%;
|
|
3789
3708
|
}
|
|
3790
3709
|
|
|
3791
|
-
.
|
|
3792
|
-
|
|
3793
|
-
line-height: 1.5rem;
|
|
3710
|
+
.w-2\/3 {
|
|
3711
|
+
width: 66.666667%;
|
|
3794
3712
|
}
|
|
3795
3713
|
|
|
3796
|
-
.
|
|
3797
|
-
|
|
3798
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3799
|
-
transition-duration: 150ms;
|
|
3714
|
+
.w-1\/4 {
|
|
3715
|
+
width: 25%;
|
|
3800
3716
|
}
|
|
3801
3717
|
|
|
3802
|
-
.
|
|
3803
|
-
|
|
3718
|
+
.w-2\/4 {
|
|
3719
|
+
width: 50%;
|
|
3804
3720
|
}
|
|
3805
3721
|
|
|
3806
|
-
.
|
|
3807
|
-
|
|
3722
|
+
.w-3\/4 {
|
|
3723
|
+
width: 75%;
|
|
3808
3724
|
}
|
|
3809
3725
|
|
|
3810
|
-
.
|
|
3811
|
-
|
|
3726
|
+
.w-1\/5 {
|
|
3727
|
+
width: 20%;
|
|
3812
3728
|
}
|
|
3813
3729
|
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
.is-title1-96 {
|
|
3817
|
-
margin-top: 20px;
|
|
3818
|
-
margin-bottom: 20px;
|
|
3730
|
+
.w-2\/5 {
|
|
3731
|
+
width: 40%;
|
|
3819
3732
|
}
|
|
3820
3733
|
|
|
3821
|
-
.
|
|
3822
|
-
|
|
3823
|
-
margin-bottom: 15px;
|
|
3734
|
+
.w-3\/5 {
|
|
3735
|
+
width: 60%;
|
|
3824
3736
|
}
|
|
3825
3737
|
|
|
3826
|
-
.
|
|
3827
|
-
|
|
3828
|
-
margin-bottom: 15px;
|
|
3738
|
+
.w-4\/5 {
|
|
3739
|
+
width: 80%;
|
|
3829
3740
|
}
|
|
3830
3741
|
|
|
3831
|
-
.
|
|
3832
|
-
|
|
3833
|
-
margin-bottom: 15px;
|
|
3742
|
+
.w-1\/6 {
|
|
3743
|
+
width: 16.666667%;
|
|
3834
3744
|
}
|
|
3835
3745
|
|
|
3836
|
-
.
|
|
3837
|
-
|
|
3838
|
-
margin-bottom: 15px;
|
|
3746
|
+
.w-2\/6 {
|
|
3747
|
+
width: 33.333333%;
|
|
3839
3748
|
}
|
|
3840
3749
|
|
|
3841
|
-
.
|
|
3842
|
-
|
|
3843
|
-
margin-bottom: 20px;
|
|
3750
|
+
.w-3\/6 {
|
|
3751
|
+
width: 50%;
|
|
3844
3752
|
}
|
|
3845
3753
|
|
|
3846
|
-
.
|
|
3847
|
-
|
|
3848
|
-
margin-bottom: 15px;
|
|
3754
|
+
.w-4\/6 {
|
|
3755
|
+
width: 66.666667%;
|
|
3849
3756
|
}
|
|
3850
3757
|
|
|
3851
|
-
.
|
|
3852
|
-
|
|
3853
|
-
margin-bottom: 15px;
|
|
3758
|
+
.w-5\/6 {
|
|
3759
|
+
width: 83.333333%;
|
|
3854
3760
|
}
|
|
3855
3761
|
|
|
3856
|
-
.
|
|
3857
|
-
|
|
3858
|
-
margin-bottom: 15px;
|
|
3762
|
+
.w-1\/12 {
|
|
3763
|
+
width: 8.333333%;
|
|
3859
3764
|
}
|
|
3860
3765
|
|
|
3861
|
-
.
|
|
3862
|
-
|
|
3863
|
-
margin-bottom: 15px;
|
|
3766
|
+
.w-2\/12 {
|
|
3767
|
+
width: 16.666667%;
|
|
3864
3768
|
}
|
|
3865
3769
|
|
|
3866
|
-
.
|
|
3867
|
-
|
|
3868
|
-
margin-bottom: 35px;
|
|
3869
|
-
padding: 20px 0;
|
|
3870
|
-
border-top: #000 2px solid;
|
|
3871
|
-
border-bottom: #000 2px solid;
|
|
3770
|
+
.w-3\/12 {
|
|
3771
|
+
width: 25%;
|
|
3872
3772
|
}
|
|
3873
3773
|
|
|
3874
|
-
.
|
|
3774
|
+
.w-4\/12 {
|
|
3775
|
+
width: 33.333333%;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
.w-5\/12 {
|
|
3779
|
+
width: 41.666667%;
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3782
|
+
.w-6\/12 {
|
|
3783
|
+
width: 50%;
|
|
3784
|
+
}
|
|
3785
|
+
|
|
3786
|
+
.w-7\/12 {
|
|
3787
|
+
width: 58.333333%;
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
.w-8\/12 {
|
|
3791
|
+
width: 66.666667%;
|
|
3792
|
+
}
|
|
3793
|
+
|
|
3794
|
+
.w-9\/12 {
|
|
3795
|
+
width: 75%;
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
.w-10\/12 {
|
|
3799
|
+
width: 83.333333%;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
3802
|
+
.w-11\/12 {
|
|
3803
|
+
width: 91.666667%;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
.w-2 {
|
|
3807
|
+
width: 0.5rem;
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
/* height */
|
|
3811
|
+
.h-auto {
|
|
3812
|
+
height: auto;
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
.h-full {
|
|
3816
|
+
height: 100%;
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
.h-screen {
|
|
3820
|
+
height: 100vw;
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
.h-2 {
|
|
3824
|
+
height: 0.5rem;
|
|
3825
|
+
}
|
|
3826
|
+
|
|
3827
|
+
/* others */
|
|
3828
|
+
.whitespace-nowrap {
|
|
3829
|
+
white-space: nowrap;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3832
|
+
.text-base {
|
|
3833
|
+
font-size: 1rem;
|
|
3834
|
+
line-height: 1.5rem;
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
.cursor-pointer {
|
|
3838
|
+
cursor: pointer;
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
.relative {
|
|
3842
|
+
position: relative;
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.grow {
|
|
3846
|
+
flex-grow: 1;
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.object-cover {
|
|
3850
|
+
object-fit: cover;
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
/* Basic image helper */
|
|
3854
|
+
/* colors */
|
|
3855
|
+
.bg-transparent {
|
|
3856
|
+
background-color: transparent;
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
.bg-current {
|
|
3860
|
+
background-color: currentColor;
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
.bg-black {
|
|
3864
|
+
background-color: black;
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3867
|
+
.bg-white {
|
|
3868
|
+
background-color: white;
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
.bg-gray-50 {
|
|
3872
|
+
background-color: #f9fafb;
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
.bg-gray-100 {
|
|
3876
|
+
background-color: #f3f4f6;
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
.bg-gray-200 {
|
|
3880
|
+
background-color: #e5e7eb;
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
.bg-gray-300 {
|
|
3884
|
+
background-color: #d1d5db;
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
.bg-gray-400 {
|
|
3888
|
+
background-color: #9ca3af;
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
.bg-gray-500 {
|
|
3892
|
+
background-color: #6b7280;
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
.bg-gray-600 {
|
|
3896
|
+
background-color: #4b5563;
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.bg-gray-700 {
|
|
3900
|
+
background-color: #374151;
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
.bg-gray-800 {
|
|
3904
|
+
background-color: #1f2937;
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
.bg-gray-900 {
|
|
3908
|
+
background-color: #111827;
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
/* ============================================
|
|
3912
|
+
CSS Variables - Default Values
|
|
3913
|
+
============================================ */
|
|
3914
|
+
* {
|
|
3915
|
+
--anim-translate-x: 0;
|
|
3916
|
+
--anim-translate-y: 0;
|
|
3917
|
+
--anim-rotate: 0;
|
|
3918
|
+
--anim-skew-x: 0;
|
|
3919
|
+
--anim-skew-y: 0;
|
|
3920
|
+
--anim-scale-x: 1;
|
|
3921
|
+
--anim-scale-y: 1;
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
.transition-none {
|
|
3925
|
+
transition-property: none;
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
.transition {
|
|
3929
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
3930
|
+
transition-timing-function: ease;
|
|
3931
|
+
transition-duration: 400ms;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.transition-colors {
|
|
3935
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
3936
|
+
transition-timing-function: ease;
|
|
3937
|
+
transition-duration: 400ms;
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3940
|
+
.transition-opacity {
|
|
3941
|
+
transition-property: opacity;
|
|
3942
|
+
transition-timing-function: ease;
|
|
3943
|
+
transition-duration: 400ms;
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3946
|
+
.transition-shadow {
|
|
3947
|
+
transition-property: box-shadow;
|
|
3948
|
+
transition-timing-function: ease;
|
|
3949
|
+
transition-duration: 400ms;
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
.transition-transform {
|
|
3953
|
+
transition-property: transform;
|
|
3954
|
+
transition-timing-function: ease;
|
|
3955
|
+
transition-duration: 400ms;
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
.transition-all {
|
|
3959
|
+
transition-property: all;
|
|
3960
|
+
transition-timing-function: ease;
|
|
3961
|
+
transition-duration: 400ms;
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
/* Durations */
|
|
3965
|
+
.duration-75 {
|
|
3966
|
+
transition-duration: 75ms;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
.duration-100 {
|
|
3970
|
+
transition-duration: 100ms;
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
.duration-150 {
|
|
3974
|
+
transition-duration: 150ms;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.duration-200 {
|
|
3978
|
+
transition-duration: 200ms;
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
.duration-300 {
|
|
3982
|
+
transition-duration: 300ms;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
.duration-400 {
|
|
3986
|
+
transition-duration: 400ms;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
.duration-500 {
|
|
3990
|
+
transition-duration: 500ms;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
.duration-600 {
|
|
3994
|
+
transition-duration: 600ms;
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
.duration-700 {
|
|
3998
|
+
transition-duration: 700ms;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
.duration-800 {
|
|
4002
|
+
transition-duration: 800ms;
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
.duration-900 {
|
|
4006
|
+
transition-duration: 900ms;
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
.duration-1000 {
|
|
4010
|
+
transition-duration: 1000ms;
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
.duration-1200 {
|
|
4014
|
+
transition-duration: 1200ms;
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
.duration-1500 {
|
|
4018
|
+
transition-duration: 1500ms;
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
/* Timing functions (ease utilities) */
|
|
4022
|
+
.ease-linear {
|
|
4023
|
+
transition-timing-function: linear;
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4026
|
+
.ease-out {
|
|
4027
|
+
transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
.ease-in {
|
|
4031
|
+
transition-timing-function: cubic-bezier(0.32, 0, 1, 1);
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
.ease-in-out {
|
|
4035
|
+
transition-timing-function: cubic-bezier(0.32, 0, 0.58, 1);
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
/* Delays */
|
|
4039
|
+
.delay-75 {
|
|
4040
|
+
transition-delay: 75ms;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
.delay-100 {
|
|
4044
|
+
transition-delay: 100ms;
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
.delay-150 {
|
|
4048
|
+
transition-delay: 150ms;
|
|
4049
|
+
}
|
|
4050
|
+
|
|
4051
|
+
.delay-200 {
|
|
4052
|
+
transition-delay: 200ms;
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
.delay-300 {
|
|
4056
|
+
transition-delay: 300ms;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
.delay-500 {
|
|
4060
|
+
transition-delay: 500ms;
|
|
4061
|
+
}
|
|
4062
|
+
|
|
4063
|
+
/* Hover Transforms */
|
|
4064
|
+
.hover\:scale-105:hover {
|
|
4065
|
+
transform: translate(var(--anim-translate-x), var(--anim-translate-y)) rotate(var(--anim-rotate)) skewX(var(--anim-skew-x)) skewY(var(--anim-skew-y)) scaleX(var(--anim-scale-x)) scaleY(var(--anim-scale-y));
|
|
4066
|
+
--anim-scale-x: 1.05;
|
|
4067
|
+
--anim-scale-y: 1.05;
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
.hover\:-translate-y-1:hover {
|
|
4071
|
+
transform: translate(var(--anim-translate-x), var(--anim-translate-y)) rotate(var(--anim-rotate)) skewX(var(--anim-skew-x)) skewY(var(--anim-skew-y)) scaleX(var(--anim-scale-x)) scaleY(var(--anim-scale-y));
|
|
4072
|
+
--anim-translate-y: -0.25rem;
|
|
4073
|
+
/* -4px */
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.hover\:-translate-y-2:hover {
|
|
4077
|
+
transform: translate(var(--anim-translate-x), var(--anim-translate-y)) rotate(var(--anim-rotate)) skewX(var(--anim-skew-x)) skewY(var(--anim-skew-y)) scaleX(var(--anim-scale-x)) scaleY(var(--anim-scale-y));
|
|
4078
|
+
--anim-translate-y: -0.5rem;
|
|
4079
|
+
/* -8px */
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
.hover\:translate-x-1:hover {
|
|
4083
|
+
transform: translate(var(--anim-translate-x), var(--anim-translate-y)) rotate(var(--anim-rotate)) skewX(var(--anim-skew-x)) skewY(var(--anim-skew-y)) scaleX(var(--anim-scale-x)) scaleY(var(--anim-scale-y));
|
|
4084
|
+
--anim-translate-x: 0.25rem;
|
|
4085
|
+
/* 4px */
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
.hover\:translate-x-2:hover {
|
|
4089
|
+
transform: translate(var(--anim-translate-x), var(--anim-translate-y)) rotate(var(--anim-rotate)) skewX(var(--anim-skew-x)) skewY(var(--anim-skew-y)) scaleX(var(--anim-scale-x)) scaleY(var(--anim-scale-y));
|
|
4090
|
+
--anim-translate-x: 0.5rem;
|
|
4091
|
+
/* 8px */
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
/* Hover Shadows */
|
|
4095
|
+
.hover\:shadow-sm:hover {
|
|
4096
|
+
box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.06);
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
.hover\:shadow:hover {
|
|
4100
|
+
box-shadow: 0 4px 12px -3px rgba(0, 0, 0, 0.07);
|
|
4101
|
+
}
|
|
4102
|
+
|
|
4103
|
+
.hover\:shadow-md:hover {
|
|
4104
|
+
box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.07);
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
.hover\:shadow-lg:hover {
|
|
4108
|
+
box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.08);
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4111
|
+
.hover\:shadow-xl:hover {
|
|
4112
|
+
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
|
|
4113
|
+
}
|
|
4114
|
+
|
|
4115
|
+
.hover\:shadow-2xl:hover {
|
|
4116
|
+
box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.09);
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
/* Hover Background Colors */
|
|
4120
|
+
.hover\:bg-white:hover {
|
|
4121
|
+
background-color: #ffffff;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.hover\:bg-black:hover {
|
|
4125
|
+
background-color: #000000;
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
.hover\:bg-gray-50:hover {
|
|
4129
|
+
background-color: #f9fafb;
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
.hover\:bg-gray-100:hover {
|
|
4133
|
+
background-color: #f3f4f6;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
.hover\:bg-gray-200:hover {
|
|
4137
|
+
background-color: #e5e7eb;
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.hover\:bg-gray-300:hover {
|
|
4141
|
+
background-color: #d1d5db;
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
.hover\:bg-gray-400:hover {
|
|
4145
|
+
background-color: #9ca3af;
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
.hover\:bg-gray-500:hover {
|
|
4149
|
+
background-color: #6b7280;
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
.hover\:bg-gray-600:hover {
|
|
4153
|
+
background-color: #4b5563;
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4156
|
+
.hover\:bg-gray-700:hover {
|
|
4157
|
+
background-color: #374151;
|
|
4158
|
+
}
|
|
4159
|
+
|
|
4160
|
+
.hover\:bg-gray-800:hover {
|
|
4161
|
+
background-color: #1f2937;
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4164
|
+
.hover\:bg-gray-900:hover {
|
|
4165
|
+
background-color: #111827;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
.hover\:bg-transparent:hover {
|
|
4169
|
+
background-color: transparent;
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4172
|
+
/* Hover Text Color */
|
|
4173
|
+
.hover\:text-white:hover {
|
|
4174
|
+
color: white !important;
|
|
4175
|
+
}
|
|
4176
|
+
|
|
4177
|
+
.hover\:text-black:hover {
|
|
4178
|
+
color: black !important;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4181
|
+
.hover\:text-current:hover {
|
|
4182
|
+
color: currentColor !important;
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4185
|
+
.hover\:text-gray-50:hover {
|
|
4186
|
+
color: #f9fafb;
|
|
4187
|
+
}
|
|
4188
|
+
|
|
4189
|
+
.hover\:text-gray-100:hover {
|
|
4190
|
+
color: #f3f4f6;
|
|
4191
|
+
}
|
|
4192
|
+
|
|
4193
|
+
.hover\:text-gray-200:hover {
|
|
4194
|
+
color: #e5e7eb;
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4197
|
+
.hover\:text-gray-300:hover {
|
|
4198
|
+
color: #d1d5db;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
.hover\:text-gray-400:hover {
|
|
4202
|
+
color: #9ca3af;
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
.hover\:text-gray-500:hover {
|
|
4206
|
+
color: #6b7280;
|
|
4207
|
+
}
|
|
4208
|
+
|
|
4209
|
+
.hover\:text-gray-600:hover {
|
|
4210
|
+
color: #4b5563;
|
|
4211
|
+
}
|
|
4212
|
+
|
|
4213
|
+
.hover\:text-gray-700:hover {
|
|
4214
|
+
color: #374151;
|
|
4215
|
+
}
|
|
4216
|
+
|
|
4217
|
+
.hover\:text-gray-800:hover {
|
|
4218
|
+
color: #1f2937;
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
.hover\:text-gray-900:hover {
|
|
4222
|
+
color: #111827;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
.hover\:text-gray-950:hover {
|
|
4226
|
+
color: #030712;
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4229
|
+
/* Hover Opacity */
|
|
4230
|
+
.hover\:opacity-0:hover {
|
|
4231
|
+
opacity: 0 !important;
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
.hover\:opacity-5:hover {
|
|
4235
|
+
opacity: 0.05 !important;
|
|
4236
|
+
}
|
|
4237
|
+
|
|
4238
|
+
.hover\:opacity-10:hover {
|
|
4239
|
+
opacity: 0.1 !important;
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
.hover\:opacity-20:hover {
|
|
4243
|
+
opacity: 0.2 !important;
|
|
4244
|
+
}
|
|
4245
|
+
|
|
4246
|
+
.hover\:opacity-25:hover {
|
|
4247
|
+
opacity: 0.25 !important;
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
.hover\:opacity-30:hover {
|
|
4251
|
+
opacity: 0.3 !important;
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4254
|
+
.hover\:opacity-40:hover {
|
|
4255
|
+
opacity: 0.4 !important;
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
.hover\:opacity-50:hover {
|
|
4259
|
+
opacity: 0.5 !important;
|
|
4260
|
+
}
|
|
4261
|
+
|
|
4262
|
+
.hover\:opacity-60:hover {
|
|
4263
|
+
opacity: 0.6 !important;
|
|
4264
|
+
}
|
|
4265
|
+
|
|
4266
|
+
.hover\:opacity-70:hover {
|
|
4267
|
+
opacity: 0.7 !important;
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
.hover\:opacity-75:hover {
|
|
4271
|
+
opacity: 0.75 !important;
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
.hover\:opacity-80:hover {
|
|
4275
|
+
opacity: 0.8 !important;
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4278
|
+
.hover\:opacity-90:hover {
|
|
4279
|
+
opacity: 0.9 !important;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.hover\:opacity-95:hover {
|
|
4283
|
+
opacity: 0.95 !important;
|
|
4284
|
+
}
|
|
4285
|
+
|
|
4286
|
+
.hover\:opacity-100:hover {
|
|
4287
|
+
opacity: 1 !important;
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
/* Overflow */
|
|
4291
|
+
.overflow-hidden {
|
|
4292
|
+
overflow: hidden;
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
.overflow-visible {
|
|
4296
|
+
overflow: visible;
|
|
4297
|
+
}
|
|
4298
|
+
|
|
4299
|
+
.overflow-scroll {
|
|
4300
|
+
overflow: scroll;
|
|
4301
|
+
}
|
|
4302
|
+
|
|
4303
|
+
.overflow-auto {
|
|
4304
|
+
overflow: auto;
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
/* Built in keyframes and animation classes matching Tailwind defaults */
|
|
4308
|
+
/* spin */
|
|
4309
|
+
@keyframes spin {
|
|
4310
|
+
from {
|
|
4311
|
+
transform: rotate(0deg);
|
|
4312
|
+
}
|
|
4313
|
+
to {
|
|
4314
|
+
transform: rotate(360deg);
|
|
4315
|
+
}
|
|
4316
|
+
}
|
|
4317
|
+
.animate-spin {
|
|
4318
|
+
animation: spin 1s linear infinite;
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4321
|
+
/* ping */
|
|
4322
|
+
@keyframes ping {
|
|
4323
|
+
75%, 100% {
|
|
4324
|
+
transform: scale(2);
|
|
4325
|
+
opacity: 0;
|
|
4326
|
+
}
|
|
4327
|
+
}
|
|
4328
|
+
.animate-ping {
|
|
4329
|
+
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
4330
|
+
}
|
|
4331
|
+
|
|
4332
|
+
/* pulse */
|
|
4333
|
+
@keyframes pulse {
|
|
4334
|
+
0%, 100% {
|
|
4335
|
+
opacity: 1;
|
|
4336
|
+
}
|
|
4337
|
+
50% {
|
|
4338
|
+
opacity: 0.5;
|
|
4339
|
+
}
|
|
4340
|
+
}
|
|
4341
|
+
.animate-pulse {
|
|
4342
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
/* bounce */
|
|
4346
|
+
@keyframes bounce {
|
|
4347
|
+
0%, 100% {
|
|
4348
|
+
transform: translateY(-25%);
|
|
4349
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
4350
|
+
}
|
|
4351
|
+
50% {
|
|
4352
|
+
transform: translateY(0);
|
|
4353
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
4354
|
+
}
|
|
4355
|
+
}
|
|
4356
|
+
.animate-bounce {
|
|
4357
|
+
animation: bounce 1s infinite;
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
/* Gap (Flexbox & Grid) */
|
|
4361
|
+
.gap-0 {
|
|
4362
|
+
gap: 0;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
.gap-px {
|
|
4366
|
+
gap: 1px;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
.gap-0\.5 {
|
|
4370
|
+
gap: 0.125rem;
|
|
4371
|
+
/* 2px */
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
.gap-1 {
|
|
4375
|
+
gap: 0.25rem;
|
|
4376
|
+
/* 4px */
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
.gap-1\.5 {
|
|
4380
|
+
gap: 0.375rem;
|
|
4381
|
+
/* 6px */
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
.gap-2 {
|
|
4385
|
+
gap: 0.5rem;
|
|
4386
|
+
/* 8px */
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
.gap-2\.5 {
|
|
4390
|
+
gap: 0.625rem;
|
|
4391
|
+
/* 10px */
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
.gap-3 {
|
|
4395
|
+
gap: 0.75rem;
|
|
4396
|
+
/* 12px */
|
|
4397
|
+
}
|
|
4398
|
+
|
|
4399
|
+
.gap-3\.5 {
|
|
4400
|
+
gap: 0.875rem;
|
|
4401
|
+
/* 14px */
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4404
|
+
.gap-4 {
|
|
4405
|
+
gap: 1rem;
|
|
4406
|
+
/* 16px */
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4409
|
+
.gap-5 {
|
|
4410
|
+
gap: 1.25rem;
|
|
4411
|
+
/* 20px */
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
.gap-6 {
|
|
4415
|
+
gap: 1.5rem;
|
|
4416
|
+
/* 24px */
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.gap-7 {
|
|
4420
|
+
gap: 1.75rem;
|
|
4421
|
+
/* 28px */
|
|
4422
|
+
}
|
|
4423
|
+
|
|
4424
|
+
.gap-8 {
|
|
4425
|
+
gap: 2rem;
|
|
4426
|
+
/* 32px */
|
|
4427
|
+
}
|
|
4428
|
+
|
|
4429
|
+
.gap-9 {
|
|
4430
|
+
gap: 2.25rem;
|
|
4431
|
+
/* 36px */
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
/* --- BACKWARD COMPATIBILITY --- */
|
|
4435
|
+
/* Snippets: text */
|
|
4436
|
+
.is-title1-96 {
|
|
4437
|
+
margin-top: 20px;
|
|
4438
|
+
margin-bottom: 20px;
|
|
4439
|
+
}
|
|
4440
|
+
|
|
4441
|
+
.is-title1-80 {
|
|
4442
|
+
margin-top: 15px;
|
|
4443
|
+
margin-bottom: 15px;
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
.is-title1-64 {
|
|
4447
|
+
margin-top: 15px;
|
|
4448
|
+
margin-bottom: 15px;
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4451
|
+
.is-title1-48 {
|
|
4452
|
+
margin-top: 15px;
|
|
4453
|
+
margin-bottom: 15px;
|
|
4454
|
+
}
|
|
4455
|
+
|
|
4456
|
+
.is-title1-32 {
|
|
4457
|
+
margin-top: 15px;
|
|
4458
|
+
margin-bottom: 15px;
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4461
|
+
.is-title2-96 {
|
|
4462
|
+
margin-top: 25px;
|
|
4463
|
+
margin-bottom: 20px;
|
|
4464
|
+
}
|
|
4465
|
+
|
|
4466
|
+
.is-title2-80 {
|
|
4467
|
+
margin-top: 20px;
|
|
4468
|
+
margin-bottom: 15px;
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4471
|
+
.is-title2-64 {
|
|
4472
|
+
margin-top: 20px;
|
|
4473
|
+
margin-bottom: 15px;
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4476
|
+
.is-title2-48 {
|
|
4477
|
+
margin-top: 15px;
|
|
4478
|
+
margin-bottom: 15px;
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
.is-title2-32 {
|
|
4482
|
+
margin-top: 10px;
|
|
4483
|
+
margin-bottom: 15px;
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4486
|
+
.is-title3-96 {
|
|
4487
|
+
margin-top: 30px;
|
|
4488
|
+
margin-bottom: 35px;
|
|
4489
|
+
padding: 20px 0;
|
|
4490
|
+
border-top: #000 2px solid;
|
|
4491
|
+
border-bottom: #000 2px solid;
|
|
4492
|
+
}
|
|
4493
|
+
|
|
4494
|
+
.is-title3-80 {
|
|
3875
4495
|
margin-top: 25px;
|
|
3876
4496
|
margin-bottom: 33px;
|
|
3877
4497
|
padding: 20px 0;
|
|
@@ -6873,6 +7493,86 @@ a.is-btn-ghost2 {
|
|
|
6873
7493
|
height: 100%;
|
|
6874
7494
|
}
|
|
6875
7495
|
|
|
7496
|
+
.is-container.size-16 p {
|
|
7497
|
+
font-size: 16px;
|
|
7498
|
+
}
|
|
7499
|
+
|
|
7500
|
+
.is-container.size-17 p {
|
|
7501
|
+
font-size: 17px;
|
|
7502
|
+
}
|
|
7503
|
+
|
|
7504
|
+
.is-container.size-18 p {
|
|
7505
|
+
font-size: 18px;
|
|
7506
|
+
}
|
|
7507
|
+
|
|
7508
|
+
.is-container.size-19 p {
|
|
7509
|
+
font-size: 19px;
|
|
7510
|
+
}
|
|
7511
|
+
|
|
7512
|
+
.is-container.size-20 p {
|
|
7513
|
+
font-size: 20px;
|
|
7514
|
+
}
|
|
7515
|
+
|
|
7516
|
+
.is-container.size-21 p {
|
|
7517
|
+
font-size: 21px;
|
|
7518
|
+
}
|
|
7519
|
+
|
|
7520
|
+
@media all and (max-width: 1800px) {
|
|
7521
|
+
.is-container.size-16.v2:not(.v3) p {
|
|
7522
|
+
font-size: 0.99vw;
|
|
7523
|
+
font-size: clamp(16px, 0.99vw, 0.99vw);
|
|
7524
|
+
}
|
|
7525
|
+
|
|
7526
|
+
.is-container.size-17.v2:not(.v3) p {
|
|
7527
|
+
font-size: 1.05vw;
|
|
7528
|
+
font-size: clamp(17px, 1.05vw, 1.05vw);
|
|
7529
|
+
}
|
|
7530
|
+
|
|
7531
|
+
.is-container.size-18.v2:not(.v3) p {
|
|
7532
|
+
font-size: 1.11vw;
|
|
7533
|
+
font-size: clamp(18px, 1.11vw, 1.11vw);
|
|
7534
|
+
}
|
|
7535
|
+
|
|
7536
|
+
.is-container.size-19.v2:not(.v3) p {
|
|
7537
|
+
font-size: 1.17vw;
|
|
7538
|
+
font-size: clamp(19px, 1.17vw, 1.17vw);
|
|
7539
|
+
}
|
|
7540
|
+
|
|
7541
|
+
.is-container.size-20.v2:not(.v3) p {
|
|
7542
|
+
font-size: 1.23vw;
|
|
7543
|
+
font-size: clamp(20px, 1.23vw, 1.23vw);
|
|
7544
|
+
}
|
|
7545
|
+
|
|
7546
|
+
.is-container.size-21.v2:not(.v3) p {
|
|
7547
|
+
font-size: 1.29vw;
|
|
7548
|
+
font-size: clamp(21px, 1.29vw, 1.29vw);
|
|
7549
|
+
}
|
|
7550
|
+
}
|
|
7551
|
+
@media all and (min-width: 1921px) {
|
|
7552
|
+
.is-container.size-16.v2:not(.v3) p {
|
|
7553
|
+
font-size: 0.83vw;
|
|
7554
|
+
}
|
|
7555
|
+
|
|
7556
|
+
.is-container.size-17.v2:not(.v3) p {
|
|
7557
|
+
font-size: 0.89vw;
|
|
7558
|
+
}
|
|
7559
|
+
|
|
7560
|
+
.is-container.size-18.v2:not(.v3) p {
|
|
7561
|
+
font-size: 0.94vw;
|
|
7562
|
+
}
|
|
7563
|
+
|
|
7564
|
+
.is-container.size-19.v2:not(.v3) p {
|
|
7565
|
+
font-size: 0.99vw;
|
|
7566
|
+
}
|
|
7567
|
+
|
|
7568
|
+
.is-container.size-20.v2:not(.v3) p {
|
|
7569
|
+
font-size: 1.04vw;
|
|
7570
|
+
}
|
|
7571
|
+
|
|
7572
|
+
.is-container.size-21.v2:not(.v3) p {
|
|
7573
|
+
font-size: 1.09vw;
|
|
7574
|
+
}
|
|
7575
|
+
}
|
|
6876
7576
|
/* --------------------------------- */
|
|
6877
7577
|
/* leading */
|
|
6878
7578
|
.is-container.leading-none p, .is-container.leading-none td, .is-container.leading-none li, .is-container.leading-none label {
|