monkey-style-guide-v2 0.0.28 → 0.0.29
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/scss/directives/_index.scss +3 -3
- package/assets/scss/input/_index.scss +1 -1
- package/assets/scss/partials/_breakpoints.scss +145 -0
- package/assets/scss/partials/_grid-system.scss +5069 -0
- package/assets/scss/partials/_helper-classes.scss +335 -0
- package/assets/scss/partials/_index.scss +8 -3
- package/assets/scss/partials/_scrollbars.scss +30 -0
- package/assets/scss/partials/_skeleton-loading.scss +67 -0
- package/assets/scss/partials/_style-reset.scss +11 -9
- package/assets/scss/partials/_variables.scss +49 -111
- package/assets/scss/table/_index.scss +1 -1
- package/assets/scss/theme.scss +6 -13
- package/assets/scss/typography/_index.scss +1 -3
- package/assets/scss/typography/_styles.scss +103 -103
- package/fesm2022/monkey-style-guide-v2.mjs +16 -14
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/monkey-style-guide-v2-0.0.29.tgz +0 -0
- package/package.json +1 -1
- package/assets/scss/typography/_function.scss +0 -23
- package/assets/scss/typography/_mixins.scss +0 -111
- package/monkey-style-guide-v2-0.0.28.tgz +0 -0
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
/**************************
|
|
2
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
3
|
+
* This style guide was developed by Monkey Exchange Team
|
|
4
|
+
* MIT Licence
|
|
5
|
+
**************************/
|
|
6
|
+
/* stylelint-disable color-no-hex */
|
|
7
|
+
|
|
8
|
+
/* stylelint-disable selector-class-pattern */
|
|
9
|
+
@use 'variables' as *;
|
|
10
|
+
|
|
11
|
+
:root {
|
|
12
|
+
@each $key, $value in $mecx-gray {
|
|
13
|
+
--mecx-gray-#{$key}: #{$value};
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@each $key, $value in $mecx-spaces {
|
|
17
|
+
--mecx-spaces-#{$key}: #{$value};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@each $key, $value in $mecx-weight {
|
|
21
|
+
--mecx-font-w-#{$key}: #{$value};
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@each $key, $value in $mecx-lh {
|
|
25
|
+
--mecx-font-lh-#{$key}: #{$value};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@each $key, $value in $mecx-sizes {
|
|
29
|
+
--mecx-font-s-#{$key}: #{$value};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
--mecx-color-box-shadow: #00000029;
|
|
33
|
+
--mecx-color-info: #003687;
|
|
34
|
+
--mecx-color-link: #06c;
|
|
35
|
+
--mecx-color-white: #fff;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@each $key, $value in $mecx-gray {
|
|
39
|
+
.text-gray-#{$key} {
|
|
40
|
+
color: $value !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.bg-gray-#{$key} {
|
|
44
|
+
background-color: $value !important;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@each $key, $value in $mecx-weight {
|
|
49
|
+
.font-w-#{$key} {
|
|
50
|
+
font-weight: $value !important;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@each $key, $value in $mecx-lh {
|
|
55
|
+
.font-lh-#{$key} {
|
|
56
|
+
line-height: $value !important;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@each $key, $value in $mecx-sizes {
|
|
61
|
+
.font-s-#{$key} {
|
|
62
|
+
font-size: $value !important;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@each $key, $value in $mecx-theme {
|
|
67
|
+
.text-theme-#{$key} {
|
|
68
|
+
color: $value !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.bg-theme-#{$key} {
|
|
72
|
+
background-color: $value !important;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@each $key, $value in $mecx-success {
|
|
77
|
+
.text-success-#{$key} {
|
|
78
|
+
color: $value !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.bg-success-#{$key} {
|
|
82
|
+
background-color: $value !important;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@each $key, $value in $mecx-error {
|
|
87
|
+
.text-error-#{$key} {
|
|
88
|
+
color: $value !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.bg-error-#{$key} {
|
|
92
|
+
background-color: $value !important;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@each $key, $value in $mecx-warning {
|
|
97
|
+
.text-warning-#{$key} {
|
|
98
|
+
color: $value !important;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.bg-warning-#{$key} {
|
|
102
|
+
background-color: $value !important;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@each $key, $value in $mecx-question {
|
|
107
|
+
.text-question-#{$key} {
|
|
108
|
+
color: $value !important;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.bg-question-#{$key} {
|
|
112
|
+
background-color: $value !important;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@each $key, $value in $mecx-align {
|
|
117
|
+
.text-#{$key} {
|
|
118
|
+
text-align: $value !important;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.text-upper {
|
|
123
|
+
text-transform: uppercase !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.text-lower {
|
|
127
|
+
text-transform: lowercase !important;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.text-decoration-none {
|
|
131
|
+
text-decoration: none !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.text-underline {
|
|
135
|
+
text-decoration: underline !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.text-capitalize {
|
|
139
|
+
text-transform: capitalize !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.text-truncate {
|
|
143
|
+
overflow: hidden !important;
|
|
144
|
+
text-overflow: ellipsis !important;
|
|
145
|
+
white-space: nowrap !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.text-wrap {
|
|
149
|
+
white-space: normal !important;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.text-nowrap {
|
|
153
|
+
white-space: nowrap !important;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.text-break {
|
|
157
|
+
word-wrap: break-word !important;
|
|
158
|
+
word-break: break-word !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.opacity-0 {
|
|
162
|
+
opacity: 0 !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.opacity-25 {
|
|
166
|
+
opacity: 0.25 !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.opacity-50 {
|
|
170
|
+
opacity: 0.5 !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.opacity-75 {
|
|
174
|
+
opacity: 0.75 !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.opacity-100 {
|
|
178
|
+
opacity: 1 !important;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.overflow-auto {
|
|
182
|
+
overflow: auto !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.overflow-hidden {
|
|
186
|
+
overflow: hidden !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.overflow-visible {
|
|
190
|
+
overflow: visible !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.overflow-scroll {
|
|
194
|
+
overflow: scroll !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.overflow-x-auto {
|
|
198
|
+
overflow-x: auto !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.overflow-x-hidden {
|
|
202
|
+
overflow-x: hidden !important;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.overflow-x-visible {
|
|
206
|
+
overflow-x: visible !important;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.overflow-x-scroll {
|
|
210
|
+
overflow-x: scroll !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.overflow-y-auto {
|
|
214
|
+
overflow-y: auto !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.overflow-y-hidden {
|
|
218
|
+
overflow-y: hidden !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.overflow-y-visible {
|
|
222
|
+
overflow-y: visible !important;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.overflow-y-scroll {
|
|
226
|
+
overflow-y: scroll !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.position-static {
|
|
230
|
+
position: static !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.position-relative {
|
|
234
|
+
position: relative !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.position-absolute {
|
|
238
|
+
position: absolute !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.position-fixed {
|
|
242
|
+
position: fixed !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.position-sticky {
|
|
246
|
+
position: sticky !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.w-25 {
|
|
250
|
+
width: 25% !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.w-50 {
|
|
254
|
+
width: 50% !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.w-75 {
|
|
258
|
+
width: 75% !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.w-100 {
|
|
262
|
+
width: 100% !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.w-auto {
|
|
266
|
+
width: auto !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.mw-100 {
|
|
270
|
+
max-width: 100% !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.vw-100 {
|
|
274
|
+
width: 100vw !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.min-vw-100 {
|
|
278
|
+
min-width: 100vw !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.h-25 {
|
|
282
|
+
height: 25% !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.h-50 {
|
|
286
|
+
height: 50% !important;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.h-75 {
|
|
290
|
+
height: 75% !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.h-100 {
|
|
294
|
+
height: 100% !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.h-auto {
|
|
298
|
+
height: auto !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.mh-100 {
|
|
302
|
+
max-height: 100% !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.vh-100 {
|
|
306
|
+
height: 100vh !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.min-vh-100 {
|
|
310
|
+
min-height: 100vh !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.gap-0 {
|
|
314
|
+
gap: 0 !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.gap-1 {
|
|
318
|
+
gap: 0.25rem !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.gap-2 {
|
|
322
|
+
gap: 0.5rem !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.gap-3 {
|
|
326
|
+
gap: 1rem !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.gap-4 {
|
|
330
|
+
gap: 1.5rem !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.gap-5 {
|
|
334
|
+
gap: 3rem !important;
|
|
335
|
+
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**************************
|
|
2
2
|
* Copyright Monkey Exchange. All Rights Reserved
|
|
3
3
|
* This style guide was developed by Monkey Exchange Team
|
|
4
|
-
* MIT Licence
|
|
4
|
+
* MIT Licence
|
|
5
5
|
**************************/
|
|
6
|
-
@
|
|
7
|
-
@
|
|
6
|
+
@use 'style-reset';
|
|
7
|
+
@use 'variables';
|
|
8
|
+
@use 'breakpoints';
|
|
9
|
+
@use 'grid-system';
|
|
10
|
+
@use 'scrollbars';
|
|
11
|
+
@use 'skeleton-loading';
|
|
12
|
+
@use 'helper-classes';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* stylelint-disable color-no-hex */
|
|
2
|
+
|
|
3
|
+
/**************************
|
|
4
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
5
|
+
* This style guide was developed by Monkey Exchange Team
|
|
6
|
+
* MIT Licence
|
|
7
|
+
**************************/
|
|
8
|
+
|
|
9
|
+
body:not(.is-mobile) {
|
|
10
|
+
::-webkit-scrollbar {
|
|
11
|
+
width: 12px;
|
|
12
|
+
height: 12px;
|
|
13
|
+
background-color: #0000;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
::-webkit-scrollbar:hover {
|
|
17
|
+
background-color: #0000001f;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
::-webkit-scrollbar-thumb {
|
|
21
|
+
border: 2px solid transparent;
|
|
22
|
+
box-shadow: inset 0 0 0 12px #0000005e;
|
|
23
|
+
border-radius: 12px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
::-webkit-scrollbar-thumb:active {
|
|
27
|
+
box-shadow: inset 0 0 0 12px #0000008a;
|
|
28
|
+
border-radius: 12px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/**************************
|
|
2
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
3
|
+
* This style guide was developed by Monkey Exchange Team
|
|
4
|
+
* MIT Licence
|
|
5
|
+
**************************/
|
|
6
|
+
|
|
7
|
+
%skeleton {
|
|
8
|
+
animation: skeleton-loading 1s linear infinite alternate;
|
|
9
|
+
display: block;
|
|
10
|
+
border-radius: 4px;
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@keyframes skeleton-loading {
|
|
15
|
+
0% {
|
|
16
|
+
background-color: hsl(200deg 20% 85%);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
100% {
|
|
20
|
+
background-color: hsl(200deg 20% 95%);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.text-loading-sm {
|
|
25
|
+
@extend %skeleton;
|
|
26
|
+
|
|
27
|
+
height: 12px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.text-loading-md {
|
|
31
|
+
@extend %skeleton;
|
|
32
|
+
|
|
33
|
+
height: 16px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.text-loading-lg {
|
|
37
|
+
@extend %skeleton;
|
|
38
|
+
|
|
39
|
+
height: 24px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.text-loading-xl {
|
|
43
|
+
@extend %skeleton;
|
|
44
|
+
|
|
45
|
+
height: 32px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.loading-sm {
|
|
49
|
+
@extend %skeleton;
|
|
50
|
+
|
|
51
|
+
border-radius: 12px;
|
|
52
|
+
height: 32px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.loading-md {
|
|
56
|
+
@extend %skeleton;
|
|
57
|
+
|
|
58
|
+
border-radius: 12px;
|
|
59
|
+
height: 40px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.loading-lg {
|
|
63
|
+
@extend %skeleton;
|
|
64
|
+
|
|
65
|
+
border-radius: 12px;
|
|
66
|
+
height: 48px;
|
|
67
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable color-no-hex */
|
|
2
|
+
|
|
1
3
|
/*
|
|
2
4
|
html5doctor.com Reset Stylesheet
|
|
3
5
|
v1.6.1
|
|
@@ -111,10 +113,10 @@ q {
|
|
|
111
113
|
quotes: none;
|
|
112
114
|
}
|
|
113
115
|
|
|
114
|
-
blockquote
|
|
115
|
-
blockquote
|
|
116
|
-
q
|
|
117
|
-
q
|
|
116
|
+
blockquote::before,
|
|
117
|
+
blockquote::after,
|
|
118
|
+
q::before,
|
|
119
|
+
q::after {
|
|
118
120
|
content: '';
|
|
119
121
|
content: none;
|
|
120
122
|
}
|
|
@@ -162,7 +164,7 @@ hr {
|
|
|
162
164
|
display: block;
|
|
163
165
|
height: 1px;
|
|
164
166
|
border: 0;
|
|
165
|
-
border-top: 1px solid #
|
|
167
|
+
border-top: 1px solid #ccc;
|
|
166
168
|
margin: 1em 0;
|
|
167
169
|
padding: 0;
|
|
168
170
|
}
|
|
@@ -178,12 +180,12 @@ select:focus {
|
|
|
178
180
|
outline: none;
|
|
179
181
|
}
|
|
180
182
|
|
|
183
|
+
button {
|
|
184
|
+
border: none;
|
|
185
|
+
}
|
|
186
|
+
|
|
181
187
|
button:focus,
|
|
182
188
|
button:active,
|
|
183
189
|
button:hover {
|
|
184
190
|
outline: none;
|
|
185
191
|
}
|
|
186
|
-
|
|
187
|
-
button {
|
|
188
|
-
border: none;
|
|
189
|
-
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
/* stylelint-disable color-no-hex */
|
|
2
|
+
|
|
1
3
|
/**************************
|
|
2
4
|
* Copyright Monkey Exchange. All Rights Reserved
|
|
3
5
|
* This style guide was developed by Monkey Exchange Team
|
|
4
6
|
* MIT Licence
|
|
5
7
|
**************************/
|
|
6
|
-
|
|
7
8
|
$mecx-theme: (
|
|
8
9
|
main: var(--mecx-color-theme-main),
|
|
9
10
|
50: #fff,
|
|
@@ -15,31 +16,24 @@ $mecx-theme: (
|
|
|
15
16
|
600: var(--mecx-color-theme-600),
|
|
16
17
|
700: var(--mecx-color-theme-700),
|
|
17
18
|
800: var(--mecx-color-theme-800),
|
|
18
|
-
900: var(--mecx-color-theme-900)
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
700: var(--mecx-color-theme-contrast-700),
|
|
33
|
-
800: var(--mecx-color-theme-contrast-800),
|
|
34
|
-
900: var(--mecx-color-theme-contrast-900),
|
|
35
|
-
A100: var(--mecx-color-theme-contrast-A100),
|
|
36
|
-
A200: var(--mecx-color-theme-contrast-A200),
|
|
37
|
-
A400: var(--mecx-color-theme-contrast-A400),
|
|
38
|
-
A700: var(--mecx-color-theme-contrast-A700)
|
|
39
|
-
)
|
|
19
|
+
900: var(--mecx-color-theme-900)
|
|
20
|
+
);
|
|
21
|
+
$mecx-error: (
|
|
22
|
+
main: var(--mecx-color-error-main),
|
|
23
|
+
50: #fff,
|
|
24
|
+
100: var(--mecx-color-error-100),
|
|
25
|
+
200: var(--mecx-color-error-200),
|
|
26
|
+
300: var(--mecx-color-error-300),
|
|
27
|
+
400: var(--mecx-color-error-400),
|
|
28
|
+
500: var(--mecx-color-error-500),
|
|
29
|
+
600: var(--mecx-color-error-600),
|
|
30
|
+
700: var(--mecx-color-error-700),
|
|
31
|
+
800: var(--mecx-color-error-800),
|
|
32
|
+
900: var(--mecx-color-error-900)
|
|
40
33
|
);
|
|
41
34
|
$mecx-warning: (
|
|
42
35
|
main: var(--mecx-color-warning-main),
|
|
36
|
+
50: #fff,
|
|
43
37
|
100: var(--mecx-color-warning-100),
|
|
44
38
|
200: var(--mecx-color-warning-200),
|
|
45
39
|
300: var(--mecx-color-warning-300),
|
|
@@ -48,46 +42,11 @@ $mecx-warning: (
|
|
|
48
42
|
600: var(--mecx-color-warning-600),
|
|
49
43
|
700: var(--mecx-color-warning-700),
|
|
50
44
|
800: var(--mecx-color-warning-800),
|
|
51
|
-
900: var(--mecx-color-warning-900)
|
|
52
|
-
contrast: (
|
|
53
|
-
main: var(--mecx-color-warning-contrast-main),
|
|
54
|
-
100: var(--mecx-color-warning-contrast-100),
|
|
55
|
-
200: var(--mecx-color-warning-contrast-200),
|
|
56
|
-
300: var(--mecx-color-warning-contrast-300),
|
|
57
|
-
400: var(--mecx-color-warning-contrast-400),
|
|
58
|
-
500: var(--mecx-color-warning-contrast-500),
|
|
59
|
-
600: var(--mecx-color-warning-contrast-600),
|
|
60
|
-
700: var(--mecx-color-warning-contrast-700),
|
|
61
|
-
800: var(--mecx-color-warning-contrast-800),
|
|
62
|
-
900: var(--mecx-color-warning-contrast-900)
|
|
63
|
-
)
|
|
64
|
-
);
|
|
65
|
-
$mecx-question: (
|
|
66
|
-
main: var(--mecx-color-question-main),
|
|
67
|
-
100: var(--mecx-color-question-100),
|
|
68
|
-
200: var(--mecx-color-question-200),
|
|
69
|
-
300: var(--mecx-color-question-300),
|
|
70
|
-
400: var(--mecx-color-question-400),
|
|
71
|
-
500: var(--mecx-color-question-500),
|
|
72
|
-
600: var(--mecx-color-question-600),
|
|
73
|
-
700: var(--mecx-color-question-700),
|
|
74
|
-
800: var(--mecx-color-question-800),
|
|
75
|
-
900: var(--mecx-color-question-900),
|
|
76
|
-
contrast: (
|
|
77
|
-
main: var(--mecx-color-question-contrast-main),
|
|
78
|
-
100: var(--mecx-color-question-contrast-100),
|
|
79
|
-
200: var(--mecx-color-question-contrast-200),
|
|
80
|
-
300: var(--mecx-color-question-contrast-300),
|
|
81
|
-
400: var(--mecx-color-question-contrast-400),
|
|
82
|
-
500: var(--mecx-color-question-contrast-500),
|
|
83
|
-
600: var(--mecx-color-question-contrast-600),
|
|
84
|
-
700: var(--mecx-color-question-contrast-700),
|
|
85
|
-
800: var(--mecx-color-question-contrast-800),
|
|
86
|
-
900: var(--mecx-color-question-contrast-900)
|
|
87
|
-
)
|
|
45
|
+
900: var(--mecx-color-warning-900)
|
|
88
46
|
);
|
|
89
47
|
$mecx-success: (
|
|
90
48
|
main: var(--mecx-color-success-main),
|
|
49
|
+
50: #fff,
|
|
91
50
|
100: var(--mecx-color-success-100),
|
|
92
51
|
200: var(--mecx-color-success-200),
|
|
93
52
|
300: var(--mecx-color-success-300),
|
|
@@ -96,59 +55,38 @@ $mecx-success: (
|
|
|
96
55
|
600: var(--mecx-color-success-600),
|
|
97
56
|
700: var(--mecx-color-success-700),
|
|
98
57
|
800: var(--mecx-color-success-800),
|
|
99
|
-
900: var(--mecx-color-success-900)
|
|
100
|
-
contrast: (
|
|
101
|
-
main: var(--mecx-color-success-contrast-main),
|
|
102
|
-
100: var(--mecx-color-success-contrast-100),
|
|
103
|
-
200: var(--mecx-color-success-contrast-200),
|
|
104
|
-
300: var(--mecx-color-success-contrast-300),
|
|
105
|
-
400: var(--mecx-color-success-contrast-400),
|
|
106
|
-
500: var(--mecx-color-success-contrast-500),
|
|
107
|
-
600: var(--mecx-color-success-contrast-600),
|
|
108
|
-
700: var(--mecx-color-success-contrast-700),
|
|
109
|
-
800: var(--mecx-color-success-contrast-800),
|
|
110
|
-
900: var(--mecx-color-success-contrast-900)
|
|
111
|
-
)
|
|
58
|
+
900: var(--mecx-color-success-900)
|
|
112
59
|
);
|
|
113
|
-
$mecx-
|
|
114
|
-
main: var(--mecx-color-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
main: var(--mecx-color-error-contrast-main),
|
|
126
|
-
100: var(--mecx-color-error-contrast-100),
|
|
127
|
-
200: var(--mecx-color-error-contrast-200),
|
|
128
|
-
300: var(--mecx-color-error-contrast-300),
|
|
129
|
-
400: var(--mecx-color-error-contrast-400),
|
|
130
|
-
500: var(--mecx-color-error-contrast-500),
|
|
131
|
-
600: var(--mecx-color-error-contrast-600),
|
|
132
|
-
700: var(--mecx-color-error-contrast-700),
|
|
133
|
-
800: var(--mecx-color-error-contrast-800),
|
|
134
|
-
900: var(--mecx-color-error-contrast-900)
|
|
135
|
-
)
|
|
60
|
+
$mecx-question: (
|
|
61
|
+
main: var(--mecx-color-question-main),
|
|
62
|
+
50: #fff,
|
|
63
|
+
100: var(--mecx-color-question-100),
|
|
64
|
+
200: var(--mecx-color-question-200),
|
|
65
|
+
300: var(--mecx-color-question-300),
|
|
66
|
+
400: var(--mecx-color-question-400),
|
|
67
|
+
500: var(--mecx-color-question-500),
|
|
68
|
+
600: var(--mecx-color-question-600),
|
|
69
|
+
700: var(--mecx-color-question-700),
|
|
70
|
+
800: var(--mecx-color-question-800),
|
|
71
|
+
900: var(--mecx-color-question-900)
|
|
136
72
|
);
|
|
137
73
|
$mecx-gray: (
|
|
138
|
-
50:
|
|
139
|
-
100:
|
|
140
|
-
200:
|
|
141
|
-
300:
|
|
142
|
-
400:
|
|
143
|
-
500:
|
|
144
|
-
600:
|
|
145
|
-
700:
|
|
146
|
-
800:
|
|
147
|
-
900:
|
|
74
|
+
50: #f8fafb,
|
|
75
|
+
100: #f1f2f3,
|
|
76
|
+
200: #e9eaec,
|
|
77
|
+
300: #d3d6da,
|
|
78
|
+
400: #bdc1c7,
|
|
79
|
+
500: #868d98,
|
|
80
|
+
600: #676e79,
|
|
81
|
+
700: #545a63,
|
|
82
|
+
800: #2f3237,
|
|
83
|
+
900: #1f2024
|
|
148
84
|
);
|
|
149
85
|
$mecx-align: ('left', 'center', 'right', 'justify');
|
|
150
86
|
$mecx-sizes: (
|
|
151
87
|
base: 14px,
|
|
88
|
+
12: 12px,
|
|
89
|
+
13: 13px,
|
|
152
90
|
xxs: 14px,
|
|
153
91
|
xs: 16px,
|
|
154
92
|
sm: 18px,
|
|
@@ -159,11 +97,11 @@ $mecx-sizes: (
|
|
|
159
97
|
);
|
|
160
98
|
$mecx-lh: (
|
|
161
99
|
base: 1.6,
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
100
|
+
16: 16px,
|
|
101
|
+
24: 24px,
|
|
102
|
+
32: 32px,
|
|
103
|
+
40: 40px,
|
|
104
|
+
48: 48px
|
|
167
105
|
);
|
|
168
106
|
$mecx-weight: (
|
|
169
107
|
regular: 400,
|