@andreyshpigunov/x 0.5.21 → 0.5.23
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/assets/css/app.css +1 -1
- package/dist/x.css +1 -1
- package/index.html +1 -1
- package/package.json +1 -1
- package/src/components/x/{helpers.css → lib.css} +133 -138
- package/src/components/x/space.css +6 -6
- package/src/components/x/variables.css +18 -24
- package/src/css/x.css +1 -1
|
@@ -25,12 +25,11 @@ All right reserved.
|
|
|
25
25
|
--space-2: 0.8rem;
|
|
26
26
|
--space-3: 1.2rem;
|
|
27
27
|
--space-4: 1.6rem;
|
|
28
|
-
--space-5: 2.
|
|
29
|
-
--space-6:
|
|
30
|
-
--space-7:
|
|
31
|
-
--space-8:
|
|
32
|
-
--space-9:
|
|
33
|
-
--space-10: 6.4rem;
|
|
28
|
+
--space-5: 2.4rem;
|
|
29
|
+
--space-6: 3.2rem;
|
|
30
|
+
--space-7: 4.8rem;
|
|
31
|
+
--space-8: 6.4rem;
|
|
32
|
+
--space-9: 8.0rem;
|
|
34
33
|
|
|
35
34
|
--headers-margin-top: 1em;
|
|
36
35
|
--headers-margin-bottom: .5em;
|
|
@@ -39,15 +38,15 @@ All right reserved.
|
|
|
39
38
|
--headers-font-color: var(--font-color);
|
|
40
39
|
|
|
41
40
|
--h1-font-size: 3.6rem;
|
|
42
|
-
--h2-font-size: 2.
|
|
43
|
-
--h3-font-size: 2.
|
|
44
|
-
--h4-font-size: 1.
|
|
45
|
-
--h5-font-size: 1.
|
|
46
|
-
--h6-font-size: 1.
|
|
41
|
+
--h2-font-size: 2.8rem;
|
|
42
|
+
--h3-font-size: 2.2rem;
|
|
43
|
+
--h4-font-size: 1.8rem;
|
|
44
|
+
--h5-font-size: 1.6rem;
|
|
45
|
+
--h6-font-size: 1.4rem;
|
|
47
46
|
|
|
48
47
|
--h1-line-height: 1.2;
|
|
49
|
-
--h2-line-height: 1.
|
|
50
|
-
--h3-line-height: 1.
|
|
48
|
+
--h2-line-height: 1.25;
|
|
49
|
+
--h3-line-height: 1.3;
|
|
51
50
|
|
|
52
51
|
--paragraph-margin: 1em;
|
|
53
52
|
|
|
@@ -68,17 +67,12 @@ All right reserved.
|
|
|
68
67
|
|
|
69
68
|
--container-max-width: 160rem;
|
|
70
69
|
|
|
71
|
-
--shadow-1:
|
|
72
|
-
--shadow-2:
|
|
73
|
-
--shadow-3:
|
|
74
|
-
--shadow-4:
|
|
75
|
-
--shadow-5:
|
|
76
|
-
|
|
77
|
-
--shadow-7: 0 14px 28px #00000016;
|
|
78
|
-
--shadow-8: 0 16px 32px #00000016;
|
|
79
|
-
--shadow-9: 0 18px 36px #00000016;
|
|
80
|
-
--shadow-10: 0 20px 40px #00000016;
|
|
81
|
-
|
|
70
|
+
--shadow-1: 0 1px 2px #00000012, 0 1px 1px #0000000a;
|
|
71
|
+
--shadow-2: 0 2px 6px #00000014, 0 1px 2px #0000000c;
|
|
72
|
+
--shadow-3: 0 6px 16px #00000016, 0 2px 4px #0000000c;
|
|
73
|
+
--shadow-4: 0 12px 32px #00000018, 0 4px 8px #0000000e;
|
|
74
|
+
--shadow-5: 0 20px 48px #0000001a, 0 8px 16px #00000010;
|
|
75
|
+
|
|
82
76
|
--link-color: #0060cc;
|
|
83
77
|
--link-decoration-line: underline;
|
|
84
78
|
--link-decoration-style: solid;
|
package/src/css/x.css
CHANGED
|
@@ -30,7 +30,7 @@ All right reserved.
|
|
|
30
30
|
@import "../components/x/scroll.css" layer(scroll);
|
|
31
31
|
@import "../components/x/icons.css" layer(icons);
|
|
32
32
|
@import "../components/x/app.css" layer(app);
|
|
33
|
-
@import "../components/x/
|
|
33
|
+
@import "../components/x/lib.css" layer(lib);
|
|
34
34
|
@import "../components/x/colors.css" layer(colors);
|
|
35
35
|
|
|
36
36
|
|