@semcore/ui 13.1.0 → 13.1.1
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/CHANGELOG.md +35 -0
- package/ellipsis/index.cjs +1 -0
- package/ellipsis/index.d.ts +2 -0
- package/ellipsis/index.js +2 -0
- package/ellipsis/index.mjs +2 -0
- package/generate.ts +8 -4
- package/icon/LookerStudio/l/index.cjs +1 -0
- package/icon/LookerStudio/l/index.d.ts +2 -0
- package/icon/LookerStudio/l/index.js +2 -0
- package/icon/LookerStudio/l/index.mjs +2 -0
- package/icon/LookerStudio/m/index.cjs +1 -0
- package/icon/LookerStudio/m/index.d.ts +2 -0
- package/icon/LookerStudio/m/index.js +2 -0
- package/icon/LookerStudio/m/index.mjs +2 -0
- package/package.json +26 -25
- package/utils/style/sellerly.var.css +17 -0
- package/utils/style/var.css +221 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## [13.1.1] - 2022-11-09
|
|
2
|
+
|
|
3
|
+
### @semcore/base-trigger
|
|
4
|
+
|
|
5
|
+
- **Fixed** Fixed `FilterTrigger` accessability.
|
|
6
|
+
|
|
7
|
+
### @semcore/ellipsis
|
|
8
|
+
|
|
9
|
+
- **Added** Component was added to export of `@semcore/ui`.
|
|
10
|
+
|
|
11
|
+
### @semcore/checkbox
|
|
12
|
+
|
|
13
|
+
- **Fixed** Fixed displaying in unchecked and disabled state.
|
|
14
|
+
|
|
15
|
+
### @semcore/d3-chart
|
|
16
|
+
|
|
17
|
+
- **Fixed** Fixed hover and active animated for `Donut` chart.
|
|
18
|
+
|
|
19
|
+
### @semcore/date-picker
|
|
20
|
+
|
|
21
|
+
- **Fixed** Fixed input trigger visual divergence from initial design.
|
|
22
|
+
- **Fixed** Removed lock on fixed version of `@semcore/input`.
|
|
23
|
+
|
|
24
|
+
### @semcore/icon
|
|
25
|
+
|
|
26
|
+
- **Added** Added `LookerStudio` icon.
|
|
27
|
+
|
|
28
|
+
### @semcore/input-mask
|
|
29
|
+
|
|
30
|
+
- **Fixed** Fixed mask and text line-height mismatch.
|
|
31
|
+
|
|
32
|
+
### @semcore/pagination
|
|
33
|
+
|
|
34
|
+
- **Fixed** Fixed styles for last and single pages
|
|
35
|
+
|
|
1
36
|
## [13.1.0] - 2022-11-03
|
|
2
37
|
|
|
3
38
|
### @semcore/animation
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@semcore/ellipsis');
|
package/generate.ts
CHANGED
|
@@ -104,19 +104,22 @@ const GENERATOR = {
|
|
|
104
104
|
UTILS: async (dependency: string, name: string) => {
|
|
105
105
|
const require = createRequire(import.meta.url);
|
|
106
106
|
const utilsMain = require.resolve(dependency);
|
|
107
|
-
const
|
|
108
|
-
const
|
|
107
|
+
const utilsDistPath = path.join(utilsMain, '..');
|
|
108
|
+
const utilsPath = path.join(utilsDistPath, '..');
|
|
109
|
+
const utils = glob.sync('**/*.+(js|ts)', { cwd: utilsDistPath });
|
|
109
110
|
for (const util of utils) {
|
|
110
111
|
const utilNameWithoutExtention = util.replace(/\.(d\.)?(t|j)s$/, '');
|
|
111
112
|
|
|
112
113
|
// index.js of utils throws & useless, so we copy it
|
|
113
114
|
if (utilNameWithoutExtention === 'index') {
|
|
114
|
-
await fs.copy(`${
|
|
115
|
+
await fs.copy(`${utilsDistPath}/${util}`, `./${name}/lib/${util}`);
|
|
115
116
|
continue;
|
|
116
117
|
}
|
|
117
118
|
|
|
118
119
|
for (const extension of exportExtensions) {
|
|
119
|
-
const defaultExport = await hasExportDefault(
|
|
120
|
+
const defaultExport = await hasExportDefault(
|
|
121
|
+
`${utilsDistPath}/${utilNameWithoutExtention}`,
|
|
122
|
+
);
|
|
120
123
|
const template = defaultExport
|
|
121
124
|
? EXPORT_TEMPLATES[extension].LIB_DEFAULT
|
|
122
125
|
: EXPORT_TEMPLATES[extension].LIB_NAMED;
|
|
@@ -127,6 +130,7 @@ const GENERATOR = {
|
|
|
127
130
|
);
|
|
128
131
|
}
|
|
129
132
|
}
|
|
133
|
+
await fs.copy(`${utilsPath}/style`, `./${name}/style`);
|
|
130
134
|
},
|
|
131
135
|
ICONS: async (dependency: string, name: string) => {
|
|
132
136
|
const require = createRequire(import.meta.url);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@semcore/icon/LookerStudio/l');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@semcore/icon/LookerStudio/m');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/ui",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "./index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -10,52 +10,53 @@
|
|
|
10
10
|
"test": "jest"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@semcore/accordion": "4.1.
|
|
13
|
+
"@semcore/accordion": "4.1.7",
|
|
14
14
|
"@semcore/animation": "1.7.1",
|
|
15
15
|
"@semcore/badge": "3.2.3",
|
|
16
|
-
"@semcore/base-trigger": "3.2.
|
|
17
|
-
"@semcore/breadcrumbs": "4.2.
|
|
16
|
+
"@semcore/base-trigger": "3.2.6",
|
|
17
|
+
"@semcore/breadcrumbs": "4.2.6",
|
|
18
18
|
"@semcore/breakpoints": "1.2.3",
|
|
19
19
|
"@semcore/button": "4.2.3",
|
|
20
|
-
"@semcore/card": "4.1.
|
|
21
|
-
"@semcore/carousel": "2.1.
|
|
20
|
+
"@semcore/card": "4.1.6",
|
|
21
|
+
"@semcore/carousel": "2.1.7",
|
|
22
22
|
"@semcore/checkbox": "6.1.4",
|
|
23
|
-
"@semcore/color-picker": "1.2.
|
|
23
|
+
"@semcore/color-picker": "1.2.7",
|
|
24
24
|
"@semcore/core": "1.13.4",
|
|
25
25
|
"@semcore/counter": "2.1.3",
|
|
26
|
-
"@semcore/data-table": "3.5.
|
|
27
|
-
"@semcore/date-picker": "3.4.
|
|
26
|
+
"@semcore/data-table": "3.5.1",
|
|
27
|
+
"@semcore/date-picker": "3.4.9",
|
|
28
28
|
"@semcore/divider": "3.1.3",
|
|
29
29
|
"@semcore/dot": "4.1.4",
|
|
30
|
-
"@semcore/drag-and-drop": "2.1.
|
|
30
|
+
"@semcore/drag-and-drop": "2.1.6",
|
|
31
31
|
"@semcore/dropdown": "3.2.4",
|
|
32
32
|
"@semcore/dropdown-menu": "3.3.3",
|
|
33
33
|
"@semcore/d3-chart": "2.4.10",
|
|
34
|
+
"@semcore/ellipsis": "1.0.3",
|
|
34
35
|
"@semcore/email": "1.0.2",
|
|
35
36
|
"@semcore/errors": "3.5.4",
|
|
36
|
-
"@semcore/feature-popover": "3.1.
|
|
37
|
+
"@semcore/feature-popover": "3.1.8",
|
|
37
38
|
"@semcore/feedback-form": "5.2.3",
|
|
38
39
|
"@semcore/flags": "3.1.3",
|
|
39
40
|
"@semcore/flex-box": "4.6.3",
|
|
40
41
|
"@semcore/format-text": "3.1.3",
|
|
41
|
-
"@semcore/fullscreen-modal": "2.1.
|
|
42
|
+
"@semcore/fullscreen-modal": "2.1.7",
|
|
42
43
|
"@semcore/grid": "4.2.3",
|
|
43
|
-
"@semcore/icon": "3.
|
|
44
|
+
"@semcore/icon": "3.2.0",
|
|
44
45
|
"@semcore/illustration": "1.3.3",
|
|
45
|
-
"@semcore/inline-input": "3.1.
|
|
46
|
+
"@semcore/inline-input": "3.1.6",
|
|
46
47
|
"@semcore/inline-edit": "2.1.5",
|
|
47
48
|
"@semcore/input": "3.2.3",
|
|
48
49
|
"@semcore/input-mask": "4.3.4",
|
|
49
50
|
"@semcore/input-number": "4.1.3",
|
|
50
51
|
"@semcore/input-tags": "3.2.3",
|
|
51
52
|
"@semcore/link": "4.2.3",
|
|
52
|
-
"@semcore/modal": "3.1.
|
|
53
|
+
"@semcore/modal": "3.1.8",
|
|
53
54
|
"@semcore/neighbor-location": "3.1.3",
|
|
54
|
-
"@semcore/notice": "4.2.
|
|
55
|
-
"@semcore/notice-global": "1.2.
|
|
56
|
-
"@semcore/notice-bubble": "4.2.
|
|
55
|
+
"@semcore/notice": "4.2.7",
|
|
56
|
+
"@semcore/notice-global": "1.2.7",
|
|
57
|
+
"@semcore/notice-bubble": "4.2.7",
|
|
57
58
|
"@semcore/outside-click": "2.5.3",
|
|
58
|
-
"@semcore/pagination": "3.3.
|
|
59
|
+
"@semcore/pagination": "3.3.7",
|
|
59
60
|
"@semcore/pills": "4.3.3",
|
|
60
61
|
"@semcore/popper": "4.13.4",
|
|
61
62
|
"@semcore/portal": "2.4.3",
|
|
@@ -63,8 +64,8 @@
|
|
|
63
64
|
"@semcore/progress-bar": "3.2.3",
|
|
64
65
|
"@semcore/radio": "5.1.3",
|
|
65
66
|
"@semcore/scroll-area": "4.1.3",
|
|
66
|
-
"@semcore/select": "3.2.
|
|
67
|
-
"@semcore/side-panel": "2.1.
|
|
67
|
+
"@semcore/select": "3.2.9",
|
|
68
|
+
"@semcore/side-panel": "2.1.8",
|
|
68
69
|
"@semcore/skeleton": "4.2.3",
|
|
69
70
|
"@semcore/slider": "3.2.3",
|
|
70
71
|
"@semcore/spin": "4.1.3",
|
|
@@ -73,14 +74,14 @@
|
|
|
73
74
|
"@semcore/switch": "4.2.3",
|
|
74
75
|
"@semcore/tab-line": "3.1.3",
|
|
75
76
|
"@semcore/tab-panel": "3.1.3",
|
|
76
|
-
"@semcore/tag": "4.2.
|
|
77
|
+
"@semcore/tag": "4.2.6",
|
|
77
78
|
"@semcore/textarea": "4.1.3",
|
|
78
|
-
"@semcore/time-picker": "3.2.
|
|
79
|
+
"@semcore/time-picker": "3.2.8",
|
|
79
80
|
"@semcore/tooltip": "5.1.4",
|
|
80
|
-
"@semcore/typography": "4.2.
|
|
81
|
+
"@semcore/typography": "4.2.6",
|
|
81
82
|
"@semcore/utils": "3.40.0",
|
|
82
83
|
"@semcore/widget-empty": "3.6.3",
|
|
83
|
-
"@semcore/wizard": "1.1.
|
|
84
|
+
"@semcore/wizard": "1.1.8"
|
|
84
85
|
},
|
|
85
86
|
"devDependencies": {
|
|
86
87
|
"@types/react": "18.0.21",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@import '@semcore/utils/style/var.css';
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--brand-color: #ff006b;
|
|
5
|
+
--light-orange: #ffbb00;
|
|
6
|
+
--orange: #f97134;
|
|
7
|
+
--dark-red: #c50108;
|
|
8
|
+
--red: #f5141c;
|
|
9
|
+
--dark-orange: #f97134;
|
|
10
|
+
--ultramarine: #4338a2;
|
|
11
|
+
--light-ultramarine: #5c4cdc;
|
|
12
|
+
--dark-rose: #d30059;
|
|
13
|
+
--rose: #e60563;
|
|
14
|
+
--ghost-white: #f2f0fc;
|
|
15
|
+
--ghost-white50: #f7f6fd;
|
|
16
|
+
--keyboard-focus: 0 0 0 3px color-mod(var(--light-ultramarine) a(30%));
|
|
17
|
+
}
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--white: #ffffff;
|
|
3
|
+
--black: #000000;
|
|
4
|
+
--gray-50: #f4f5f9;
|
|
5
|
+
--gray-100: #e0e1e9;
|
|
6
|
+
--gray-200: #c4c7cf;
|
|
7
|
+
--gray-300: #a9abb6;
|
|
8
|
+
--gray-400: #8a8e9b;
|
|
9
|
+
--gray-500: #6c6e79;
|
|
10
|
+
--gray-600: #484a54;
|
|
11
|
+
--gray-700: #2b2e38;
|
|
12
|
+
--gray-800: #191b23;
|
|
13
|
+
--blue-50: #e9f7ff;
|
|
14
|
+
--blue-100: #c4e5fe;
|
|
15
|
+
--blue-200: #8ecdff;
|
|
16
|
+
--blue-300: #2bb3ff;
|
|
17
|
+
--blue-400: #008ff8;
|
|
18
|
+
--blue-500: #006dca;
|
|
19
|
+
--blue-600: #044792;
|
|
20
|
+
--blue-700: #002b5f;
|
|
21
|
+
--blue-800: #001b3d;
|
|
22
|
+
--green-50: #dbfee8;
|
|
23
|
+
--green-100: #9ef2c9;
|
|
24
|
+
--green-200: #59ddaa;
|
|
25
|
+
--green-300: #00c192;
|
|
26
|
+
--green-400: #009f81;
|
|
27
|
+
--green-500: #007c65;
|
|
28
|
+
--green-600: #055345;
|
|
29
|
+
--green-700: #00342d;
|
|
30
|
+
--green-800: #00201e;
|
|
31
|
+
--salad-50: #ecfbcd;
|
|
32
|
+
--salad-100: #c7ee96;
|
|
33
|
+
--salad-200: #9bd85d;
|
|
34
|
+
--salad-300: #66c030;
|
|
35
|
+
--salad-400: #35a21e;
|
|
36
|
+
--salad-500: #0a7e22;
|
|
37
|
+
--salad-600: #005613;
|
|
38
|
+
--salad-700: #003509;
|
|
39
|
+
--salad-800: #002203;
|
|
40
|
+
--orange-50: #fff3d9;
|
|
41
|
+
--orange-100: #ffdca2;
|
|
42
|
+
--orange-200: #ffb26e;
|
|
43
|
+
--orange-300: #ff8c43;
|
|
44
|
+
--orange-400: #ff642d;
|
|
45
|
+
--orange-500: #c33909;
|
|
46
|
+
--orange-600: #8b1500;
|
|
47
|
+
--orange-700: #551200;
|
|
48
|
+
--orange-800: #351000;
|
|
49
|
+
--yellow-50: #fdf7c8;
|
|
50
|
+
--yellow-100: #fce081;
|
|
51
|
+
--yellow-200: #fdc23c;
|
|
52
|
+
--yellow-300: #ef9800;
|
|
53
|
+
--yellow-400: #d87900;
|
|
54
|
+
--yellow-500: #a75800;
|
|
55
|
+
--yellow-600: #743a00;
|
|
56
|
+
--yellow-700: #462500;
|
|
57
|
+
--yellow-800: #2c1600;
|
|
58
|
+
--red-50: #fff0f7;
|
|
59
|
+
--red-100: #ffd7df;
|
|
60
|
+
--red-200: #ffaeb5;
|
|
61
|
+
--red-300: #ff8786;
|
|
62
|
+
--red-400: #ff4953;
|
|
63
|
+
--red-500: #d1002f;
|
|
64
|
+
--red-600: #8e0016;
|
|
65
|
+
--red-700: #58000a;
|
|
66
|
+
--red-800: #410101;
|
|
67
|
+
--pink-50: #fff0ff;
|
|
68
|
+
--pink-100: #ffd3ff;
|
|
69
|
+
--pink-200: #ffa9fa;
|
|
70
|
+
--pink-300: #f67cf2;
|
|
71
|
+
--pink-400: #e14adf;
|
|
72
|
+
--pink-500: #b229b9;
|
|
73
|
+
--pink-600: #7d0480;
|
|
74
|
+
--pink-700: #4d0050;
|
|
75
|
+
--pink-800: #340439;
|
|
76
|
+
--violet-50: #f9f2ff;
|
|
77
|
+
--violet-100: #edd9ff;
|
|
78
|
+
--violet-200: #dcb8ff;
|
|
79
|
+
--violet-300: #c695ff;
|
|
80
|
+
--violet-400: #ab6cfe;
|
|
81
|
+
--violet-500: #8649e1;
|
|
82
|
+
--violet-600: #5925ab;
|
|
83
|
+
--violet-700: #421983;
|
|
84
|
+
--violet-800: #220358;
|
|
85
|
+
--brand-color: #ff642d;
|
|
86
|
+
--pinterest: #bd081c;
|
|
87
|
+
--instagram: #e4405f;
|
|
88
|
+
--youtube: #ff0000;
|
|
89
|
+
--facebook: #3b5998;
|
|
90
|
+
--linkedIn: #1a7ab2;
|
|
91
|
+
--twitter: #2bafeb;
|
|
92
|
+
--google-my-business: #1a73e8;
|
|
93
|
+
--google-blue: #1a0dab;
|
|
94
|
+
--google-green: #016723;
|
|
95
|
+
|
|
96
|
+
--keyboard-focus: 0 0 0 3px color-mod(var(--blue-400) a(20%));
|
|
97
|
+
--keyborad-focus: var(--keyboard-focus);
|
|
98
|
+
--keyboard-focus-valid: 0px 0px 0px 3px color-mod(var(--green-400) a(20%));
|
|
99
|
+
--keyboard-focus-invalid: 0px 0px 0px 3px color-mod(var(--red-400) a(20%));
|
|
100
|
+
|
|
101
|
+
--rounded-s: 4px;
|
|
102
|
+
--rounded-m: 6px;
|
|
103
|
+
--rounded-l: 12px;
|
|
104
|
+
|
|
105
|
+
--form-control-m: 28px;
|
|
106
|
+
--form-control-l: 40px;
|
|
107
|
+
|
|
108
|
+
--box-shadow-card: 0px 1px 2px 0px rgba(25, 27, 35, 0.12), 0px 0px 1px 0px rgba(25, 27, 35, 0.16);
|
|
109
|
+
--box-shadow-hover: 3px 3px 30px 0px rgba(25, 27, 35, 0.15);
|
|
110
|
+
--box-shadow-popper: 0px 1px 12px 0px rgba(25, 27, 35, 0.15);
|
|
111
|
+
--box-shadow-modal: 0px 3px 8px 0px rgba(25, 27, 35, 0.2);
|
|
112
|
+
--box-shadow-dnd: 0 0 1px rgba(25, 27, 35, 0.16), 0 12px 40px rgba(25, 27, 35, 0.16);
|
|
113
|
+
|
|
114
|
+
--fs-100: 12px;
|
|
115
|
+
--lh-100: 1.33;
|
|
116
|
+
--fs-200: 14px;
|
|
117
|
+
--lh-200: 1.42;
|
|
118
|
+
--fs-300: 16px;
|
|
119
|
+
--lh-300: 1.5;
|
|
120
|
+
--fs-400: 20px;
|
|
121
|
+
--lh-400: 1.2;
|
|
122
|
+
--fs-500: 24px;
|
|
123
|
+
--lh-500: 1.17;
|
|
124
|
+
--fs-600: 32px;
|
|
125
|
+
--lh-600: 1.25;
|
|
126
|
+
--fs-700: 36px;
|
|
127
|
+
--lh-700: 1.1;
|
|
128
|
+
--fs-800: 48px;
|
|
129
|
+
--lh-800: 1.17;
|
|
130
|
+
|
|
131
|
+
--disabled-opacity: 0.3;
|
|
132
|
+
|
|
133
|
+
--xs-screen: 320px;
|
|
134
|
+
--sm-screen: 768px;
|
|
135
|
+
--md-screen: 1200px;
|
|
136
|
+
|
|
137
|
+
/* DEPRECATED START
|
|
138
|
+
Deprecated variables should never be used in
|
|
139
|
+
components styles but preserved for backward
|
|
140
|
+
compatibility if they used in projects
|
|
141
|
+
like `<Badge bg="red">alpha</Badge>`
|
|
142
|
+
*/
|
|
143
|
+
--denim-blue: #006dca;
|
|
144
|
+
--light-blue: #008ff8;
|
|
145
|
+
--neon-blue: #8ecdff;
|
|
146
|
+
--cyan: #2bb3ff;
|
|
147
|
+
--green: #009f81;
|
|
148
|
+
--dark-green: #007c65;
|
|
149
|
+
--yellow: #fdc23c;
|
|
150
|
+
--light-orange: #ff8c43;
|
|
151
|
+
--orange: #ff642d;
|
|
152
|
+
--dark-orange: #c33909;
|
|
153
|
+
--red: #ff4953;
|
|
154
|
+
--dark-red: #d1002f;
|
|
155
|
+
--violet: #ab6cfe;
|
|
156
|
+
--dark-violet: #8649e1;
|
|
157
|
+
--pink: #e14adf;
|
|
158
|
+
--asphalt: #6c6e79;
|
|
159
|
+
--wall: #8a8e9b;
|
|
160
|
+
--mist: #a9abb6;
|
|
161
|
+
--mist-light: #c4c7cf;
|
|
162
|
+
--stone: #a9abb6;
|
|
163
|
+
--stone-light: #c4c7cf;
|
|
164
|
+
--gray20: #191b23;
|
|
165
|
+
--gray30: #191b23;
|
|
166
|
+
--gray40: #484a54;
|
|
167
|
+
--gray60: #6c6e79;
|
|
168
|
+
--gray70: #a9abb6;
|
|
169
|
+
--gray80: #c4c7cf;
|
|
170
|
+
--gray94: #e0e1e9;
|
|
171
|
+
--gray96: #f4f5f9;
|
|
172
|
+
--mystic: #f4f5f9;
|
|
173
|
+
--mercury: #e0e1e9;
|
|
174
|
+
|
|
175
|
+
--blue50: #e9f7ff;
|
|
176
|
+
--blue100: #c4e5fe;
|
|
177
|
+
--blue400: #008ff8;
|
|
178
|
+
--blue600: #044792;
|
|
179
|
+
--green50: #dbfee8;
|
|
180
|
+
--green100: #9ef2c9;
|
|
181
|
+
--green200: #59ddaa;
|
|
182
|
+
--green300: #00c192;
|
|
183
|
+
--green600: #055345;
|
|
184
|
+
--red50: #fff0f7;
|
|
185
|
+
--red100: #ffd7df;
|
|
186
|
+
--red200: #ffaeb5;
|
|
187
|
+
--red300: #ff8786;
|
|
188
|
+
--red600: #8e0016;
|
|
189
|
+
--orange50: #fff3d9;
|
|
190
|
+
--orange100: #ffdca2;
|
|
191
|
+
--orange200: #ffb26e;
|
|
192
|
+
--yellow100: #fce081;
|
|
193
|
+
|
|
194
|
+
--iceberg-blue: #6fafd4;
|
|
195
|
+
--salad: #8bc835;
|
|
196
|
+
--granitic: #2f3439;
|
|
197
|
+
--gray10: #222222;
|
|
198
|
+
--sky: #e1f2ff;
|
|
199
|
+
--lily: #e6f9fd;
|
|
200
|
+
--marble: #f1f6f8;
|
|
201
|
+
--googleplus: #e14b3f;
|
|
202
|
+
--linkedin: #1a7ab2;
|
|
203
|
+
|
|
204
|
+
--font-size_-1: 11px;
|
|
205
|
+
--font-size_-2: 10px;
|
|
206
|
+
--font-size_0: 12px;
|
|
207
|
+
--font-size_1: 13px;
|
|
208
|
+
--font-size_11: 33px;
|
|
209
|
+
--font-size_12: 36px;
|
|
210
|
+
--font-size_15: 48px;
|
|
211
|
+
--font-size_2: 14px;
|
|
212
|
+
--font-size_3: 16px;
|
|
213
|
+
--font-size_5: 19px;
|
|
214
|
+
--font-size_6: 21px;
|
|
215
|
+
--font-size_8: 25px;
|
|
216
|
+
/* DEPRECATED END */
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
@custom-media --xs-media (width < 320px);
|
|
220
|
+
@custom-media --sm-media (width >= 320px) and (width < 768px);
|
|
221
|
+
@custom-media --md-media (width >= 768px) and (width < 1200px);
|