@alfalab/core-components-vars 9.9.1 → 9.11.0
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/border-radius.css +20 -7
- package/cssm/border-radius.css +20 -7
- package/cssm/bundle/click.css +84 -36
- package/cssm/bundle/corp.css +84 -36
- package/cssm/bundle/intranet.css +84 -36
- package/cssm/bundle/mobile.css +84 -36
- package/cssm/bundle/site.css +84 -36
- package/cssm/gaps.css +64 -29
- package/cssm/index.css +84 -36
- package/cssm/index.d.ts +44 -0
- package/cssm/index.js +44 -0
- package/esm/index.d.ts +44 -0
- package/esm/index.js +44 -0
- package/gaps.css +64 -29
- package/index.d.ts +44 -0
- package/index.js +44 -0
- package/modern/index.d.ts +44 -0
- package/modern/index.js +44 -0
- package/package.json +1 -1
- package/src/border-radius.css +20 -7
- package/src/gaps.css +64 -29
- package/src/typography.css +24 -0
- package/typography.css +24 -0
package/index.d.ts
CHANGED
|
@@ -1444,6 +1444,17 @@ export const borderRadiusXxl: "20px";
|
|
|
1444
1444
|
export const borderRadius3xl: "24px";
|
|
1445
1445
|
export const borderRadiusCircle: "50%";
|
|
1446
1446
|
export const borderRadiusPill: "99px";
|
|
1447
|
+
export const borderRadius0: "0";
|
|
1448
|
+
export const borderRadius4: "4px";
|
|
1449
|
+
export const borderRadius6: "6px";
|
|
1450
|
+
export const borderRadius8: "8px";
|
|
1451
|
+
export const borderRadius10: "10px";
|
|
1452
|
+
export const borderRadius12: "12px";
|
|
1453
|
+
export const borderRadius16: "16px";
|
|
1454
|
+
export const borderRadius20: "20px";
|
|
1455
|
+
export const borderRadius24: "24px";
|
|
1456
|
+
export const borderRadius36: "36px";
|
|
1457
|
+
export const borderRadius64: "64px";
|
|
1447
1458
|
export const gap3xs: "2px";
|
|
1448
1459
|
export const gap2xs: "4px";
|
|
1449
1460
|
export const gapXs: "8px";
|
|
@@ -1473,5 +1484,38 @@ export const gap5xlNeg: "-64px";
|
|
|
1473
1484
|
export const gap6xlNeg: "-72px";
|
|
1474
1485
|
export const gap7xlNeg: "-96px";
|
|
1475
1486
|
export const gap8xlNeg: "-128px";
|
|
1487
|
+
export const gap0: "0";
|
|
1488
|
+
export const gap2: "2px";
|
|
1489
|
+
export const gap4: "4px";
|
|
1490
|
+
export const gap8: "8px";
|
|
1491
|
+
export const gap12: "12px";
|
|
1492
|
+
export const gap16: "16px";
|
|
1493
|
+
export const gap20: "20px";
|
|
1494
|
+
export const gap24: "24px";
|
|
1495
|
+
export const gap32: "32px";
|
|
1496
|
+
export const gap40: "40px";
|
|
1497
|
+
export const gap48: "48px";
|
|
1498
|
+
export const gap56: "56px";
|
|
1499
|
+
export const gap64: "64px";
|
|
1500
|
+
export const gap72: "72px";
|
|
1501
|
+
export const gap80: "80px";
|
|
1502
|
+
export const gap96: "96px";
|
|
1503
|
+
export const gap128: "128px";
|
|
1504
|
+
export const gap2Neg: "-2px";
|
|
1505
|
+
export const gap4Neg: "-4px";
|
|
1506
|
+
export const gap8Neg: "-8px";
|
|
1507
|
+
export const gap12Neg: "-12px";
|
|
1508
|
+
export const gap16Neg: "-16px";
|
|
1509
|
+
export const gap20Neg: "-20px";
|
|
1510
|
+
export const gap24Neg: "-24px";
|
|
1511
|
+
export const gap32Neg: "-32px";
|
|
1512
|
+
export const gap40Neg: "-40px";
|
|
1513
|
+
export const gap48Neg: "-48px";
|
|
1514
|
+
export const gap56Neg: "-56px";
|
|
1515
|
+
export const gap64Neg: "-64px";
|
|
1516
|
+
export const gap72Neg: "-72px";
|
|
1517
|
+
export const gap80Neg: "-80px";
|
|
1518
|
+
export const gap96Neg: "-96px";
|
|
1519
|
+
export const gap128Neg: "-128px";
|
|
1476
1520
|
export const fontFamilySystem: "system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica,\n sans-serif";
|
|
1477
1521
|
export const fontFamilyStyrene: "'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,\n 'Helvetica Neue', Helvetica, sans-serif";
|
package/index.js
CHANGED
|
@@ -1444,6 +1444,17 @@ module.exports.borderRadiusXxl = "20px";
|
|
|
1444
1444
|
module.exports.borderRadius3xl = "24px";
|
|
1445
1445
|
module.exports.borderRadiusCircle = "50%";
|
|
1446
1446
|
module.exports.borderRadiusPill = "99px";
|
|
1447
|
+
module.exports.borderRadius0 = "0";
|
|
1448
|
+
module.exports.borderRadius4 = "4px";
|
|
1449
|
+
module.exports.borderRadius6 = "6px";
|
|
1450
|
+
module.exports.borderRadius8 = "8px";
|
|
1451
|
+
module.exports.borderRadius10 = "10px";
|
|
1452
|
+
module.exports.borderRadius12 = "12px";
|
|
1453
|
+
module.exports.borderRadius16 = "16px";
|
|
1454
|
+
module.exports.borderRadius20 = "20px";
|
|
1455
|
+
module.exports.borderRadius24 = "24px";
|
|
1456
|
+
module.exports.borderRadius36 = "36px";
|
|
1457
|
+
module.exports.borderRadius64 = "64px";
|
|
1447
1458
|
module.exports.gap3xs = "2px";
|
|
1448
1459
|
module.exports.gap2xs = "4px";
|
|
1449
1460
|
module.exports.gapXs = "8px";
|
|
@@ -1473,5 +1484,38 @@ module.exports.gap5xlNeg = "-64px";
|
|
|
1473
1484
|
module.exports.gap6xlNeg = "-72px";
|
|
1474
1485
|
module.exports.gap7xlNeg = "-96px";
|
|
1475
1486
|
module.exports.gap8xlNeg = "-128px";
|
|
1487
|
+
module.exports.gap0 = "0";
|
|
1488
|
+
module.exports.gap2 = "2px";
|
|
1489
|
+
module.exports.gap4 = "4px";
|
|
1490
|
+
module.exports.gap8 = "8px";
|
|
1491
|
+
module.exports.gap12 = "12px";
|
|
1492
|
+
module.exports.gap16 = "16px";
|
|
1493
|
+
module.exports.gap20 = "20px";
|
|
1494
|
+
module.exports.gap24 = "24px";
|
|
1495
|
+
module.exports.gap32 = "32px";
|
|
1496
|
+
module.exports.gap40 = "40px";
|
|
1497
|
+
module.exports.gap48 = "48px";
|
|
1498
|
+
module.exports.gap56 = "56px";
|
|
1499
|
+
module.exports.gap64 = "64px";
|
|
1500
|
+
module.exports.gap72 = "72px";
|
|
1501
|
+
module.exports.gap80 = "80px";
|
|
1502
|
+
module.exports.gap96 = "96px";
|
|
1503
|
+
module.exports.gap128 = "128px";
|
|
1504
|
+
module.exports.gap2Neg = "-2px";
|
|
1505
|
+
module.exports.gap4Neg = "-4px";
|
|
1506
|
+
module.exports.gap8Neg = "-8px";
|
|
1507
|
+
module.exports.gap12Neg = "-12px";
|
|
1508
|
+
module.exports.gap16Neg = "-16px";
|
|
1509
|
+
module.exports.gap20Neg = "-20px";
|
|
1510
|
+
module.exports.gap24Neg = "-24px";
|
|
1511
|
+
module.exports.gap32Neg = "-32px";
|
|
1512
|
+
module.exports.gap40Neg = "-40px";
|
|
1513
|
+
module.exports.gap48Neg = "-48px";
|
|
1514
|
+
module.exports.gap56Neg = "-56px";
|
|
1515
|
+
module.exports.gap64Neg = "-64px";
|
|
1516
|
+
module.exports.gap72Neg = "-72px";
|
|
1517
|
+
module.exports.gap80Neg = "-80px";
|
|
1518
|
+
module.exports.gap96Neg = "-96px";
|
|
1519
|
+
module.exports.gap128Neg = "-128px";
|
|
1476
1520
|
module.exports.fontFamilySystem = "system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica,\n sans-serif";
|
|
1477
1521
|
module.exports.fontFamilyStyrene = "'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,\n 'Helvetica Neue', Helvetica, sans-serif";
|
package/modern/index.d.ts
CHANGED
|
@@ -1444,6 +1444,17 @@ export const borderRadiusXxl: "20px";
|
|
|
1444
1444
|
export const borderRadius3xl: "24px";
|
|
1445
1445
|
export const borderRadiusCircle: "50%";
|
|
1446
1446
|
export const borderRadiusPill: "99px";
|
|
1447
|
+
export const borderRadius0: "0";
|
|
1448
|
+
export const borderRadius4: "4px";
|
|
1449
|
+
export const borderRadius6: "6px";
|
|
1450
|
+
export const borderRadius8: "8px";
|
|
1451
|
+
export const borderRadius10: "10px";
|
|
1452
|
+
export const borderRadius12: "12px";
|
|
1453
|
+
export const borderRadius16: "16px";
|
|
1454
|
+
export const borderRadius20: "20px";
|
|
1455
|
+
export const borderRadius24: "24px";
|
|
1456
|
+
export const borderRadius36: "36px";
|
|
1457
|
+
export const borderRadius64: "64px";
|
|
1447
1458
|
export const gap3xs: "2px";
|
|
1448
1459
|
export const gap2xs: "4px";
|
|
1449
1460
|
export const gapXs: "8px";
|
|
@@ -1473,5 +1484,38 @@ export const gap5xlNeg: "-64px";
|
|
|
1473
1484
|
export const gap6xlNeg: "-72px";
|
|
1474
1485
|
export const gap7xlNeg: "-96px";
|
|
1475
1486
|
export const gap8xlNeg: "-128px";
|
|
1487
|
+
export const gap0: "0";
|
|
1488
|
+
export const gap2: "2px";
|
|
1489
|
+
export const gap4: "4px";
|
|
1490
|
+
export const gap8: "8px";
|
|
1491
|
+
export const gap12: "12px";
|
|
1492
|
+
export const gap16: "16px";
|
|
1493
|
+
export const gap20: "20px";
|
|
1494
|
+
export const gap24: "24px";
|
|
1495
|
+
export const gap32: "32px";
|
|
1496
|
+
export const gap40: "40px";
|
|
1497
|
+
export const gap48: "48px";
|
|
1498
|
+
export const gap56: "56px";
|
|
1499
|
+
export const gap64: "64px";
|
|
1500
|
+
export const gap72: "72px";
|
|
1501
|
+
export const gap80: "80px";
|
|
1502
|
+
export const gap96: "96px";
|
|
1503
|
+
export const gap128: "128px";
|
|
1504
|
+
export const gap2Neg: "-2px";
|
|
1505
|
+
export const gap4Neg: "-4px";
|
|
1506
|
+
export const gap8Neg: "-8px";
|
|
1507
|
+
export const gap12Neg: "-12px";
|
|
1508
|
+
export const gap16Neg: "-16px";
|
|
1509
|
+
export const gap20Neg: "-20px";
|
|
1510
|
+
export const gap24Neg: "-24px";
|
|
1511
|
+
export const gap32Neg: "-32px";
|
|
1512
|
+
export const gap40Neg: "-40px";
|
|
1513
|
+
export const gap48Neg: "-48px";
|
|
1514
|
+
export const gap56Neg: "-56px";
|
|
1515
|
+
export const gap64Neg: "-64px";
|
|
1516
|
+
export const gap72Neg: "-72px";
|
|
1517
|
+
export const gap80Neg: "-80px";
|
|
1518
|
+
export const gap96Neg: "-96px";
|
|
1519
|
+
export const gap128Neg: "-128px";
|
|
1476
1520
|
export const fontFamilySystem: "system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica,\n sans-serif";
|
|
1477
1521
|
export const fontFamilyStyrene: "'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,\n 'Helvetica Neue', Helvetica, sans-serif";
|
package/modern/index.js
CHANGED
|
@@ -1444,6 +1444,17 @@ export const borderRadiusXxl = "20px";
|
|
|
1444
1444
|
export const borderRadius3xl = "24px";
|
|
1445
1445
|
export const borderRadiusCircle = "50%";
|
|
1446
1446
|
export const borderRadiusPill = "99px";
|
|
1447
|
+
export const borderRadius0 = "0";
|
|
1448
|
+
export const borderRadius4 = "4px";
|
|
1449
|
+
export const borderRadius6 = "6px";
|
|
1450
|
+
export const borderRadius8 = "8px";
|
|
1451
|
+
export const borderRadius10 = "10px";
|
|
1452
|
+
export const borderRadius12 = "12px";
|
|
1453
|
+
export const borderRadius16 = "16px";
|
|
1454
|
+
export const borderRadius20 = "20px";
|
|
1455
|
+
export const borderRadius24 = "24px";
|
|
1456
|
+
export const borderRadius36 = "36px";
|
|
1457
|
+
export const borderRadius64 = "64px";
|
|
1447
1458
|
export const gap3xs = "2px";
|
|
1448
1459
|
export const gap2xs = "4px";
|
|
1449
1460
|
export const gapXs = "8px";
|
|
@@ -1473,5 +1484,38 @@ export const gap5xlNeg = "-64px";
|
|
|
1473
1484
|
export const gap6xlNeg = "-72px";
|
|
1474
1485
|
export const gap7xlNeg = "-96px";
|
|
1475
1486
|
export const gap8xlNeg = "-128px";
|
|
1487
|
+
export const gap0 = "0";
|
|
1488
|
+
export const gap2 = "2px";
|
|
1489
|
+
export const gap4 = "4px";
|
|
1490
|
+
export const gap8 = "8px";
|
|
1491
|
+
export const gap12 = "12px";
|
|
1492
|
+
export const gap16 = "16px";
|
|
1493
|
+
export const gap20 = "20px";
|
|
1494
|
+
export const gap24 = "24px";
|
|
1495
|
+
export const gap32 = "32px";
|
|
1496
|
+
export const gap40 = "40px";
|
|
1497
|
+
export const gap48 = "48px";
|
|
1498
|
+
export const gap56 = "56px";
|
|
1499
|
+
export const gap64 = "64px";
|
|
1500
|
+
export const gap72 = "72px";
|
|
1501
|
+
export const gap80 = "80px";
|
|
1502
|
+
export const gap96 = "96px";
|
|
1503
|
+
export const gap128 = "128px";
|
|
1504
|
+
export const gap2Neg = "-2px";
|
|
1505
|
+
export const gap4Neg = "-4px";
|
|
1506
|
+
export const gap8Neg = "-8px";
|
|
1507
|
+
export const gap12Neg = "-12px";
|
|
1508
|
+
export const gap16Neg = "-16px";
|
|
1509
|
+
export const gap20Neg = "-20px";
|
|
1510
|
+
export const gap24Neg = "-24px";
|
|
1511
|
+
export const gap32Neg = "-32px";
|
|
1512
|
+
export const gap40Neg = "-40px";
|
|
1513
|
+
export const gap48Neg = "-48px";
|
|
1514
|
+
export const gap56Neg = "-56px";
|
|
1515
|
+
export const gap64Neg = "-64px";
|
|
1516
|
+
export const gap72Neg = "-72px";
|
|
1517
|
+
export const gap80Neg = "-80px";
|
|
1518
|
+
export const gap96Neg = "-96px";
|
|
1519
|
+
export const gap128Neg = "-128px";
|
|
1476
1520
|
export const fontFamilySystem = "system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica,\n sans-serif";
|
|
1477
1521
|
export const fontFamilyStyrene = "'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,\n 'Helvetica Neue', Helvetica, sans-serif";
|
package/package.json
CHANGED
package/src/border-radius.css
CHANGED
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--border-radius-xs: 2px;
|
|
3
|
-
--border-radius-s: 4px;
|
|
4
|
-
--border-radius-m: 8px;
|
|
5
|
-
--border-radius-l: 12px;
|
|
6
|
-
--border-radius-xl: 16px;
|
|
7
|
-
--border-radius-xxl: 20px;
|
|
8
|
-
--border-radius-3xl: 24px;
|
|
2
|
+
--border-radius-xs: 2px; /* deprecated */
|
|
3
|
+
--border-radius-s: 4px; /* deprecated */
|
|
4
|
+
--border-radius-m: 8px; /* deprecated */
|
|
5
|
+
--border-radius-l: 12px; /* deprecated */
|
|
6
|
+
--border-radius-xl: 16px; /* deprecated */
|
|
7
|
+
--border-radius-xxl: 20px; /* deprecated */
|
|
8
|
+
--border-radius-3xl: 24px; /* deprecated */
|
|
9
9
|
--border-radius-circle: 50%;
|
|
10
10
|
--border-radius-pill: 99px;
|
|
11
|
+
|
|
12
|
+
/* новые значения, используйте их */
|
|
13
|
+
--border-radius-0: 0;
|
|
14
|
+
--border-radius-4: 4px;
|
|
15
|
+
--border-radius-6: 6px;
|
|
16
|
+
--border-radius-8: 8px;
|
|
17
|
+
--border-radius-10: 10px;
|
|
18
|
+
--border-radius-12: 12px;
|
|
19
|
+
--border-radius-16: 16px;
|
|
20
|
+
--border-radius-20: 20px;
|
|
21
|
+
--border-radius-24: 24px;
|
|
22
|
+
--border-radius-36: 36px;
|
|
23
|
+
--border-radius-64: 64px;
|
|
11
24
|
}
|
package/src/gaps.css
CHANGED
|
@@ -1,31 +1,66 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--gap-3xs: 2px;
|
|
3
|
-
--gap-2xs: 4px;
|
|
4
|
-
--gap-xs: 8px;
|
|
5
|
-
--gap-s: 12px;
|
|
6
|
-
--gap-2s: 14px;
|
|
7
|
-
--gap-m: 16px;
|
|
8
|
-
--gap-l: 20px;
|
|
9
|
-
--gap-xl: 24px;
|
|
10
|
-
--gap-2xl: 32px;
|
|
11
|
-
--gap-3xl: 40px;
|
|
12
|
-
--gap-4xl: 48px;
|
|
13
|
-
--gap-5xl: 64px;
|
|
14
|
-
--gap-6xl: 72px;
|
|
15
|
-
--gap-7xl: 96px;
|
|
16
|
-
--gap-8xl: 128px;
|
|
17
|
-
--gap-3xs-neg: -2px;
|
|
18
|
-
--gap-2xs-neg: -4px;
|
|
19
|
-
--gap-xs-neg: -8px;
|
|
20
|
-
--gap-s-neg: -12px;
|
|
21
|
-
--gap-m-neg: -16px;
|
|
22
|
-
--gap-l-neg: -20px;
|
|
23
|
-
--gap-xl-neg: -24px;
|
|
24
|
-
--gap-2xl-neg: -32px;
|
|
25
|
-
--gap-3xl-neg: -40px;
|
|
26
|
-
--gap-4xl-neg: -48px;
|
|
27
|
-
--gap-5xl-neg: -64px;
|
|
28
|
-
--gap-6xl-neg: -72px;
|
|
29
|
-
--gap-7xl-neg: -96px;
|
|
30
|
-
--gap-8xl-neg: -128px;
|
|
2
|
+
--gap-3xs: 2px; /* deprecated */
|
|
3
|
+
--gap-2xs: 4px; /* deprecated */
|
|
4
|
+
--gap-xs: 8px; /* deprecated */
|
|
5
|
+
--gap-s: 12px; /* deprecated */
|
|
6
|
+
--gap-2s: 14px; /* deprecated */
|
|
7
|
+
--gap-m: 16px; /* deprecated */
|
|
8
|
+
--gap-l: 20px; /* deprecated */
|
|
9
|
+
--gap-xl: 24px; /* deprecated */
|
|
10
|
+
--gap-2xl: 32px; /* deprecated */
|
|
11
|
+
--gap-3xl: 40px; /* deprecated */
|
|
12
|
+
--gap-4xl: 48px; /* deprecated */
|
|
13
|
+
--gap-5xl: 64px; /* deprecated */
|
|
14
|
+
--gap-6xl: 72px; /* deprecated */
|
|
15
|
+
--gap-7xl: 96px; /* deprecated */
|
|
16
|
+
--gap-8xl: 128px; /* deprecated */
|
|
17
|
+
--gap-3xs-neg: -2px; /* deprecated */
|
|
18
|
+
--gap-2xs-neg: -4px; /* deprecated */
|
|
19
|
+
--gap-xs-neg: -8px; /* deprecated */
|
|
20
|
+
--gap-s-neg: -12px; /* deprecated */
|
|
21
|
+
--gap-m-neg: -16px; /* deprecated */
|
|
22
|
+
--gap-l-neg: -20px; /* deprecated */
|
|
23
|
+
--gap-xl-neg: -24px; /* deprecated */
|
|
24
|
+
--gap-2xl-neg: -32px; /* deprecated */
|
|
25
|
+
--gap-3xl-neg: -40px; /* deprecated */
|
|
26
|
+
--gap-4xl-neg: -48px; /* deprecated */
|
|
27
|
+
--gap-5xl-neg: -64px; /* deprecated */
|
|
28
|
+
--gap-6xl-neg: -72px; /* deprecated */
|
|
29
|
+
--gap-7xl-neg: -96px; /* deprecated */
|
|
30
|
+
--gap-8xl-neg: -128px; /* deprecated */
|
|
31
|
+
|
|
32
|
+
/* новые значения, используйте их */
|
|
33
|
+
--gap-0: 0;
|
|
34
|
+
--gap-2: 2px;
|
|
35
|
+
--gap-4: 4px;
|
|
36
|
+
--gap-8: 8px;
|
|
37
|
+
--gap-12: 12px;
|
|
38
|
+
--gap-16: 16px;
|
|
39
|
+
--gap-20: 20px;
|
|
40
|
+
--gap-24: 24px;
|
|
41
|
+
--gap-32: 32px;
|
|
42
|
+
--gap-40: 40px;
|
|
43
|
+
--gap-48: 48px;
|
|
44
|
+
--gap-56: 56px;
|
|
45
|
+
--gap-64: 64px;
|
|
46
|
+
--gap-72: 72px;
|
|
47
|
+
--gap-80: 80px;
|
|
48
|
+
--gap-96: 96px;
|
|
49
|
+
--gap-128: 128px;
|
|
50
|
+
--gap-2-neg: -2px;
|
|
51
|
+
--gap-4-neg: -4px;
|
|
52
|
+
--gap-8-neg: -8px;
|
|
53
|
+
--gap-12-neg: -12px;
|
|
54
|
+
--gap-16-neg: -16px;
|
|
55
|
+
--gap-20-neg: -20px;
|
|
56
|
+
--gap-24-neg: -24px;
|
|
57
|
+
--gap-32-neg: -32px;
|
|
58
|
+
--gap-40-neg: -40px;
|
|
59
|
+
--gap-48-neg: -48px;
|
|
60
|
+
--gap-56-neg: -56px;
|
|
61
|
+
--gap-64-neg: -64px;
|
|
62
|
+
--gap-72-neg: -72px;
|
|
63
|
+
--gap-80-neg: -80px;
|
|
64
|
+
--gap-96-neg: -96px;
|
|
65
|
+
--gap-128-neg: -128px;
|
|
31
66
|
}
|
package/src/typography.css
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
font-weight: 700;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
@define-mixin accent_tagline {
|
|
65
|
+
font-size: 12px;
|
|
66
|
+
line-height: 16px;
|
|
67
|
+
font-weight: 700;
|
|
68
|
+
letter-spacing: 1.25px;
|
|
69
|
+
text-transform: uppercase;
|
|
70
|
+
}
|
|
71
|
+
|
|
64
72
|
@define-mixin action_caps {
|
|
65
73
|
font-size: 12px;
|
|
66
74
|
line-height: 16px;
|
|
@@ -117,6 +125,14 @@
|
|
|
117
125
|
font-weight: 500;
|
|
118
126
|
}
|
|
119
127
|
|
|
128
|
+
@define-mixin action_tagline {
|
|
129
|
+
font-size: 12px;
|
|
130
|
+
line-height: 16px;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
letter-spacing: 1.25px;
|
|
133
|
+
text-transform: uppercase;
|
|
134
|
+
}
|
|
135
|
+
|
|
120
136
|
@define-mixin headline-mobile_large {
|
|
121
137
|
font-size: 30px;
|
|
122
138
|
line-height: 36px;
|
|
@@ -353,6 +369,14 @@
|
|
|
353
369
|
font-weight: 400;
|
|
354
370
|
}
|
|
355
371
|
|
|
372
|
+
@define-mixin paragraph_tagline {
|
|
373
|
+
font-size: 12px;
|
|
374
|
+
line-height: 16px;
|
|
375
|
+
font-weight: 500;
|
|
376
|
+
letter-spacing: 1.25px;
|
|
377
|
+
text-transform: uppercase;
|
|
378
|
+
}
|
|
379
|
+
|
|
356
380
|
@define-mixin promo-mobile_large {
|
|
357
381
|
font-size: 30px;
|
|
358
382
|
line-height: 36px;
|
package/typography.css
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
font-weight: 700;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
@define-mixin accent_tagline {
|
|
65
|
+
font-size: 12px;
|
|
66
|
+
line-height: 16px;
|
|
67
|
+
font-weight: 700;
|
|
68
|
+
letter-spacing: 1.25px;
|
|
69
|
+
text-transform: uppercase;
|
|
70
|
+
}
|
|
71
|
+
|
|
64
72
|
@define-mixin action_caps {
|
|
65
73
|
font-size: 12px;
|
|
66
74
|
line-height: 16px;
|
|
@@ -117,6 +125,14 @@
|
|
|
117
125
|
font-weight: 500;
|
|
118
126
|
}
|
|
119
127
|
|
|
128
|
+
@define-mixin action_tagline {
|
|
129
|
+
font-size: 12px;
|
|
130
|
+
line-height: 16px;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
letter-spacing: 1.25px;
|
|
133
|
+
text-transform: uppercase;
|
|
134
|
+
}
|
|
135
|
+
|
|
120
136
|
@define-mixin headline-mobile_large {
|
|
121
137
|
font-size: 30px;
|
|
122
138
|
line-height: 36px;
|
|
@@ -353,6 +369,14 @@
|
|
|
353
369
|
font-weight: 400;
|
|
354
370
|
}
|
|
355
371
|
|
|
372
|
+
@define-mixin paragraph_tagline {
|
|
373
|
+
font-size: 12px;
|
|
374
|
+
line-height: 16px;
|
|
375
|
+
font-weight: 500;
|
|
376
|
+
letter-spacing: 1.25px;
|
|
377
|
+
text-transform: uppercase;
|
|
378
|
+
}
|
|
379
|
+
|
|
356
380
|
@define-mixin promo-mobile_large {
|
|
357
381
|
font-size: 30px;
|
|
358
382
|
line-height: 36px;
|