@medyll/cssfabric 0.0.14 → 0.1.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/bin/index.js +7 -0
- package/gulpfile.js +3 -15
- package/lib/styles/core/animation/animation.css +0 -215
- package/lib/styles/core/animation/animation.min.css +0 -1
- package/lib/styles/core/box/box.css +1038 -852
- package/lib/styles/core/box/box.min.css +1 -1
- package/lib/styles/core/box/box.responsive.css +5253 -6588
- package/lib/styles/core/box/box.responsive.min.css +1 -1
- package/lib/styles/core/color/color.css +36 -36
- package/lib/styles/core/color/color.min.css +1 -1
- package/lib/styles/core/color/color.responsive.css +185 -1110
- package/lib/styles/core/color/color.responsive.min.css +1 -1
- package/lib/styles/core/flex/flex.css +56 -72
- package/lib/styles/core/flex/flex.min.css +1 -1
- package/lib/styles/core/flex/flex.responsive.css +286 -508
- package/lib/styles/core/flex/flex.responsive.min.css +1 -1
- package/lib/styles/core/grid/grid.css +103 -34
- package/lib/styles/core/grid/grid.min.css +1 -1
- package/lib/styles/core/grid/grid.responsive.css +506 -213
- package/lib/styles/core/grid/grid.responsive.min.css +1 -1
- package/lib/styles/core/menu/menu.responsive.css +5 -86
- package/lib/styles/core/menu/menu.responsive.min.css +1 -1
- package/lib/styles/core/overflow/overflow.css +59 -83
- package/lib/styles/core/overflow/overflow.min.css +1 -1
- package/lib/styles/core/overflow/overflow.responsive.css +305 -486
- package/lib/styles/core/overflow/overflow.responsive.min.css +1 -1
- package/lib/styles/core/scale/scale.css +192 -192
- package/lib/styles/core/scale/scale.min.css +1 -1
- package/lib/styles/core/scale/scale.responsive.css +965 -1606
- package/lib/styles/core/scale/scale.responsive.min.css +1 -1
- package/lib/styles/core/table/table.css +71 -70
- package/lib/styles/core/table/table.responsive.css +5 -79
- package/lib/styles/core/table/table.responsive.min.css +1 -1
- package/lib/styles/core/text/text.responsive.css +5 -154
- package/lib/styles/core/text/text.responsive.min.css +1 -1
- package/lib/styles/core/vars.css +37 -41
- package/lib/styles/core/vars.min.css +1 -1
- package/lib/styles/core/zindex/zindex.css +42 -348
- package/lib/styles/core/zindex/zindex.min.css +1 -1
- package/lib/styles/cssfabric.css +1528 -3792
- package/lib/styles/cssfabric.min.css +7 -7
- package/lib/styles/cssfabric.responsive.css +13034 -16229
- package/lib/styles/cssfabric.responsive.min.css +9 -9
- package/package.json +13 -11
- package/src/_generated/export.variables.json +171 -167
- package/src/cssfabric/_utils.scss +1 -1
- package/src/cssfabric/modules/_cssfabric-config.scss +8 -6
- package/src/cssfabric/modules/animation/animation.scss +2 -2
- package/src/cssfabric/modules/box/_box-build.scss +57 -4
- package/src/cssfabric/modules/box/_box-vars.scss +1 -1
- package/src/cssfabric/modules/box/box-responsive.scss +2 -2
- package/src/cssfabric/modules/color/_color-build.scss +1 -1
- package/src/cssfabric/modules/color/color-responsive.scss +1 -1
- package/src/cssfabric/modules/flex/_flex-build.scss +35 -54
- package/src/cssfabric/modules/flex/_flex-vars.scss +3 -6
- package/src/cssfabric/modules/grid/_grid-build.scss +42 -49
- package/src/cssfabric/modules/grid/_grid-vars.scss +6 -5
- package/src/cssfabric/modules/grid/grid-responsive.scss +1 -1
- package/src/cssfabric/modules/menu/menu-responsive.scss +1 -1
- package/src/cssfabric/modules/overflow/overflow-responsive.scss +1 -1
- package/src/cssfabric/modules/scale/_scale-build.scss +1 -1
- package/src/cssfabric/modules/scale/scale-responsive.scss +1 -1
- package/src/cssfabric/modules/table/table-responsive.scss +1 -1
- package/src/cssfabric/modules/text/text-responsive.scss +1 -1
- package/src/cssfabric/modules/theme/_theme-build.scss +2 -0
- package/src/cssfabric/modules/vars.scss +5 -6
- package/src/cssfabric/modules/zindex/_zindex-vars.scss +8 -13
- package/src/cssfabric/modules/zindex/zindex.scss +6 -10
- package/lib/styles/core/main.css +0 -2263
- package/src/cssfabric/modules/main.scss +0 -3
|
@@ -1,929 +1,4 @@
|
|
|
1
|
-
@media only screen and (max-width:
|
|
2
|
-
/**
|
|
3
|
-
color ?
|
|
4
|
-
*/
|
|
5
|
-
.color-palette-xxxl-yellow {
|
|
6
|
-
color: #ffb900;
|
|
7
|
-
}
|
|
8
|
-
.color-palette-xxxl-yellow-light {
|
|
9
|
-
color: #ffce4d;
|
|
10
|
-
}
|
|
11
|
-
.color-palette-xxxl-yellow-lighter {
|
|
12
|
-
color: #ffe399;
|
|
13
|
-
}
|
|
14
|
-
.color-palette-xxxl-yellow-dark {
|
|
15
|
-
color: #cc9400;
|
|
16
|
-
}
|
|
17
|
-
.color-palette-xxxl-yellow-darker {
|
|
18
|
-
color: #996f00;
|
|
19
|
-
}
|
|
20
|
-
.color-palette-xxxl-yellow-complement {
|
|
21
|
-
color: #0046ff;
|
|
22
|
-
}
|
|
23
|
-
.color-palette-xxxl-yellow-invert {
|
|
24
|
-
color: #0046ff;
|
|
25
|
-
}
|
|
26
|
-
.color-palette-xxxl-orange {
|
|
27
|
-
color: #d83b01;
|
|
28
|
-
}
|
|
29
|
-
.color-palette-xxxl-orange-light {
|
|
30
|
-
color: #fe6127;
|
|
31
|
-
}
|
|
32
|
-
.color-palette-xxxl-orange-lighter {
|
|
33
|
-
color: #fe9974;
|
|
34
|
-
}
|
|
35
|
-
.color-palette-xxxl-orange-dark {
|
|
36
|
-
color: #a52d01;
|
|
37
|
-
}
|
|
38
|
-
.color-palette-xxxl-orange-darker {
|
|
39
|
-
color: #721f01;
|
|
40
|
-
}
|
|
41
|
-
.color-palette-xxxl-orange-complement {
|
|
42
|
-
color: #019ed8;
|
|
43
|
-
}
|
|
44
|
-
.color-palette-xxxl-orange-invert {
|
|
45
|
-
color: #27c4fe;
|
|
46
|
-
}
|
|
47
|
-
.color-palette-xxxl-red {
|
|
48
|
-
color: #d13438;
|
|
49
|
-
}
|
|
50
|
-
.color-palette-xxxl-red-light {
|
|
51
|
-
color: #df7275;
|
|
52
|
-
}
|
|
53
|
-
.color-palette-xxxl-red-lighter {
|
|
54
|
-
color: #edb1b2;
|
|
55
|
-
}
|
|
56
|
-
.color-palette-xxxl-red-dark {
|
|
57
|
-
color: #ab272a;
|
|
58
|
-
}
|
|
59
|
-
.color-palette-xxxl-red-darker {
|
|
60
|
-
color: #821d20;
|
|
61
|
-
}
|
|
62
|
-
.color-palette-xxxl-red-complement {
|
|
63
|
-
color: #34d1cd;
|
|
64
|
-
}
|
|
65
|
-
.color-palette-xxxl-red-invert {
|
|
66
|
-
color: #2ecbc7;
|
|
67
|
-
}
|
|
68
|
-
.color-palette-xxxl-magenta {
|
|
69
|
-
color: #b4009e;
|
|
70
|
-
}
|
|
71
|
-
.color-palette-xxxl-magenta-light {
|
|
72
|
-
color: #ff02e0;
|
|
73
|
-
}
|
|
74
|
-
.color-palette-xxxl-magenta-lighter {
|
|
75
|
-
color: #ff4ee9;
|
|
76
|
-
}
|
|
77
|
-
.color-palette-xxxl-magenta-dark {
|
|
78
|
-
color: #810071;
|
|
79
|
-
}
|
|
80
|
-
.color-palette-xxxl-magenta-darker {
|
|
81
|
-
color: #4e0044;
|
|
82
|
-
}
|
|
83
|
-
.color-palette-xxxl-magenta-complement {
|
|
84
|
-
color: #00b416;
|
|
85
|
-
}
|
|
86
|
-
.color-palette-xxxl-magenta-invert {
|
|
87
|
-
color: #4bff61;
|
|
88
|
-
}
|
|
89
|
-
.color-palette-xxxl-purple {
|
|
90
|
-
color: #5c2d91;
|
|
91
|
-
}
|
|
92
|
-
.color-palette-xxxl-purple-light {
|
|
93
|
-
color: #8145c5;
|
|
94
|
-
}
|
|
95
|
-
.color-palette-xxxl-purple-lighter {
|
|
96
|
-
color: #a980d7;
|
|
97
|
-
}
|
|
98
|
-
.color-palette-xxxl-purple-dark {
|
|
99
|
-
color: #43216a;
|
|
100
|
-
}
|
|
101
|
-
.color-palette-xxxl-purple-darker {
|
|
102
|
-
color: #2b1543;
|
|
103
|
-
}
|
|
104
|
-
.color-palette-xxxl-purple-complement {
|
|
105
|
-
color: #62912d;
|
|
106
|
-
}
|
|
107
|
-
.color-palette-xxxl-purple-invert {
|
|
108
|
-
color: #a3d26e;
|
|
109
|
-
}
|
|
110
|
-
.color-palette-xxxl-green {
|
|
111
|
-
color: #107c10;
|
|
112
|
-
}
|
|
113
|
-
.color-palette-xxxl-green-light {
|
|
114
|
-
color: #19c019;
|
|
115
|
-
}
|
|
116
|
-
.color-palette-xxxl-green-lighter {
|
|
117
|
-
color: #3fe63f;
|
|
118
|
-
}
|
|
119
|
-
.color-palette-xxxl-green-dark {
|
|
120
|
-
color: #0a4f0a;
|
|
121
|
-
}
|
|
122
|
-
.color-palette-xxxl-green-darker {
|
|
123
|
-
color: #042204;
|
|
124
|
-
}
|
|
125
|
-
.color-palette-xxxl-green-complement {
|
|
126
|
-
color: #7c107c;
|
|
127
|
-
}
|
|
128
|
-
.color-palette-xxxl-green-invert {
|
|
129
|
-
color: #ef83ef;
|
|
130
|
-
}
|
|
131
|
-
.color-palette-xxxl-teal {
|
|
132
|
-
color: #008272;
|
|
133
|
-
}
|
|
134
|
-
.color-palette-xxxl-teal-light {
|
|
135
|
-
color: #00cfb5;
|
|
136
|
-
}
|
|
137
|
-
.color-palette-xxxl-teal-lighter {
|
|
138
|
-
color: #1cffe3;
|
|
139
|
-
}
|
|
140
|
-
.color-palette-xxxl-teal-dark {
|
|
141
|
-
color: #004f45;
|
|
142
|
-
}
|
|
143
|
-
.color-palette-xxxl-teal-darker {
|
|
144
|
-
color: #001c19;
|
|
145
|
-
}
|
|
146
|
-
.color-palette-xxxl-teal-complement {
|
|
147
|
-
color: #820010;
|
|
148
|
-
}
|
|
149
|
-
.color-palette-xxxl-teal-invert {
|
|
150
|
-
color: #ff7d8d;
|
|
151
|
-
}
|
|
152
|
-
.color-palette-xxxl-blue {
|
|
153
|
-
color: #0078d4;
|
|
154
|
-
}
|
|
155
|
-
.color-palette-xxxl-blue-light {
|
|
156
|
-
color: #229fff;
|
|
157
|
-
}
|
|
158
|
-
.color-palette-xxxl-blue-lighter {
|
|
159
|
-
color: #6ec0ff;
|
|
160
|
-
}
|
|
161
|
-
.color-palette-xxxl-blue-dark {
|
|
162
|
-
color: #005ba1;
|
|
163
|
-
}
|
|
164
|
-
.color-palette-xxxl-blue-darker {
|
|
165
|
-
color: #003e6e;
|
|
166
|
-
}
|
|
167
|
-
.color-palette-xxxl-blue-complement {
|
|
168
|
-
color: #d45c00;
|
|
169
|
-
}
|
|
170
|
-
.color-palette-xxxl-blue-invert {
|
|
171
|
-
color: #ff872b;
|
|
172
|
-
}
|
|
173
|
-
.color-palette-xxxl-dark {
|
|
174
|
-
color: #323232;
|
|
175
|
-
}
|
|
176
|
-
.color-palette-xxxl-dark-light {
|
|
177
|
-
color: #585858;
|
|
178
|
-
}
|
|
179
|
-
.color-palette-xxxl-dark-lighter {
|
|
180
|
-
color: #7f7f7f;
|
|
181
|
-
}
|
|
182
|
-
.color-palette-xxxl-dark-dark {
|
|
183
|
-
color: #191919;
|
|
184
|
-
}
|
|
185
|
-
.color-palette-xxxl-dark-darker {
|
|
186
|
-
color: black;
|
|
187
|
-
}
|
|
188
|
-
.color-palette-xxxl-dark-complement {
|
|
189
|
-
color: #323232;
|
|
190
|
-
}
|
|
191
|
-
.color-palette-xxxl-dark-invert {
|
|
192
|
-
color: #cdcdcd;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
color ?
|
|
197
|
-
*/
|
|
198
|
-
.color-scheme-xxxl-discrete {
|
|
199
|
-
color: #ccc;
|
|
200
|
-
}
|
|
201
|
-
.color-scheme-xxxl-success {
|
|
202
|
-
color: green;
|
|
203
|
-
}
|
|
204
|
-
.color-scheme-xxxl-info {
|
|
205
|
-
color: #ffdd57;
|
|
206
|
-
}
|
|
207
|
-
.color-scheme-xxxl-warning {
|
|
208
|
-
color: #e6b905;
|
|
209
|
-
}
|
|
210
|
-
.color-scheme-xxxl-alert {
|
|
211
|
-
color: #ff7300;
|
|
212
|
-
}
|
|
213
|
-
.color-scheme-xxxl-error {
|
|
214
|
-
color: red;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
color ?
|
|
219
|
-
*/
|
|
220
|
-
.color-gray-xxxl-100 {
|
|
221
|
-
color: #f4f4f4;
|
|
222
|
-
}
|
|
223
|
-
.color-gray-xxxl-200 {
|
|
224
|
-
color: #e9e9e9;
|
|
225
|
-
}
|
|
226
|
-
.color-gray-xxxl-300 {
|
|
227
|
-
color: #dddddd;
|
|
228
|
-
}
|
|
229
|
-
.color-gray-xxxl-400 {
|
|
230
|
-
color: #d2d2d2;
|
|
231
|
-
}
|
|
232
|
-
.color-gray-xxxl-500 {
|
|
233
|
-
color: #c7c7c7;
|
|
234
|
-
}
|
|
235
|
-
.color-gray-xxxl-600 {
|
|
236
|
-
color: #bbbbbb;
|
|
237
|
-
}
|
|
238
|
-
.color-gray-xxxl-700 {
|
|
239
|
-
color: #b0b0b0;
|
|
240
|
-
}
|
|
241
|
-
.color-gray-xxxl-800 {
|
|
242
|
-
color: #a4a4a4;
|
|
243
|
-
}
|
|
244
|
-
.color-gray-xxxl-900 {
|
|
245
|
-
color: #999999;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
/**
|
|
249
|
-
bg ?
|
|
250
|
-
*/
|
|
251
|
-
.bg-palette-xxxl-yellow {
|
|
252
|
-
background-color: #ffb900;
|
|
253
|
-
}
|
|
254
|
-
.bg-palette-xxxl-yellow-light {
|
|
255
|
-
background-color: #ffce4d;
|
|
256
|
-
}
|
|
257
|
-
.bg-palette-xxxl-yellow-lighter {
|
|
258
|
-
background-color: #ffe399;
|
|
259
|
-
}
|
|
260
|
-
.bg-palette-xxxl-yellow-dark {
|
|
261
|
-
background-color: #cc9400;
|
|
262
|
-
}
|
|
263
|
-
.bg-palette-xxxl-yellow-darker {
|
|
264
|
-
background-color: #996f00;
|
|
265
|
-
}
|
|
266
|
-
.bg-palette-xxxl-yellow-complement {
|
|
267
|
-
background-color: #0046ff;
|
|
268
|
-
}
|
|
269
|
-
.bg-palette-xxxl-yellow-invert {
|
|
270
|
-
background-color: #0046ff;
|
|
271
|
-
}
|
|
272
|
-
.bg-palette-xxxl-orange {
|
|
273
|
-
background-color: #d83b01;
|
|
274
|
-
}
|
|
275
|
-
.bg-palette-xxxl-orange-light {
|
|
276
|
-
background-color: #fe6127;
|
|
277
|
-
}
|
|
278
|
-
.bg-palette-xxxl-orange-lighter {
|
|
279
|
-
background-color: #fe9974;
|
|
280
|
-
}
|
|
281
|
-
.bg-palette-xxxl-orange-dark {
|
|
282
|
-
background-color: #a52d01;
|
|
283
|
-
}
|
|
284
|
-
.bg-palette-xxxl-orange-darker {
|
|
285
|
-
background-color: #721f01;
|
|
286
|
-
}
|
|
287
|
-
.bg-palette-xxxl-orange-complement {
|
|
288
|
-
background-color: #019ed8;
|
|
289
|
-
}
|
|
290
|
-
.bg-palette-xxxl-orange-invert {
|
|
291
|
-
background-color: #27c4fe;
|
|
292
|
-
}
|
|
293
|
-
.bg-palette-xxxl-red {
|
|
294
|
-
background-color: #d13438;
|
|
295
|
-
}
|
|
296
|
-
.bg-palette-xxxl-red-light {
|
|
297
|
-
background-color: #df7275;
|
|
298
|
-
}
|
|
299
|
-
.bg-palette-xxxl-red-lighter {
|
|
300
|
-
background-color: #edb1b2;
|
|
301
|
-
}
|
|
302
|
-
.bg-palette-xxxl-red-dark {
|
|
303
|
-
background-color: #ab272a;
|
|
304
|
-
}
|
|
305
|
-
.bg-palette-xxxl-red-darker {
|
|
306
|
-
background-color: #821d20;
|
|
307
|
-
}
|
|
308
|
-
.bg-palette-xxxl-red-complement {
|
|
309
|
-
background-color: #34d1cd;
|
|
310
|
-
}
|
|
311
|
-
.bg-palette-xxxl-red-invert {
|
|
312
|
-
background-color: #2ecbc7;
|
|
313
|
-
}
|
|
314
|
-
.bg-palette-xxxl-magenta {
|
|
315
|
-
background-color: #b4009e;
|
|
316
|
-
}
|
|
317
|
-
.bg-palette-xxxl-magenta-light {
|
|
318
|
-
background-color: #ff02e0;
|
|
319
|
-
}
|
|
320
|
-
.bg-palette-xxxl-magenta-lighter {
|
|
321
|
-
background-color: #ff4ee9;
|
|
322
|
-
}
|
|
323
|
-
.bg-palette-xxxl-magenta-dark {
|
|
324
|
-
background-color: #810071;
|
|
325
|
-
}
|
|
326
|
-
.bg-palette-xxxl-magenta-darker {
|
|
327
|
-
background-color: #4e0044;
|
|
328
|
-
}
|
|
329
|
-
.bg-palette-xxxl-magenta-complement {
|
|
330
|
-
background-color: #00b416;
|
|
331
|
-
}
|
|
332
|
-
.bg-palette-xxxl-magenta-invert {
|
|
333
|
-
background-color: #4bff61;
|
|
334
|
-
}
|
|
335
|
-
.bg-palette-xxxl-purple {
|
|
336
|
-
background-color: #5c2d91;
|
|
337
|
-
}
|
|
338
|
-
.bg-palette-xxxl-purple-light {
|
|
339
|
-
background-color: #8145c5;
|
|
340
|
-
}
|
|
341
|
-
.bg-palette-xxxl-purple-lighter {
|
|
342
|
-
background-color: #a980d7;
|
|
343
|
-
}
|
|
344
|
-
.bg-palette-xxxl-purple-dark {
|
|
345
|
-
background-color: #43216a;
|
|
346
|
-
}
|
|
347
|
-
.bg-palette-xxxl-purple-darker {
|
|
348
|
-
background-color: #2b1543;
|
|
349
|
-
}
|
|
350
|
-
.bg-palette-xxxl-purple-complement {
|
|
351
|
-
background-color: #62912d;
|
|
352
|
-
}
|
|
353
|
-
.bg-palette-xxxl-purple-invert {
|
|
354
|
-
background-color: #a3d26e;
|
|
355
|
-
}
|
|
356
|
-
.bg-palette-xxxl-green {
|
|
357
|
-
background-color: #107c10;
|
|
358
|
-
}
|
|
359
|
-
.bg-palette-xxxl-green-light {
|
|
360
|
-
background-color: #19c019;
|
|
361
|
-
}
|
|
362
|
-
.bg-palette-xxxl-green-lighter {
|
|
363
|
-
background-color: #3fe63f;
|
|
364
|
-
}
|
|
365
|
-
.bg-palette-xxxl-green-dark {
|
|
366
|
-
background-color: #0a4f0a;
|
|
367
|
-
}
|
|
368
|
-
.bg-palette-xxxl-green-darker {
|
|
369
|
-
background-color: #042204;
|
|
370
|
-
}
|
|
371
|
-
.bg-palette-xxxl-green-complement {
|
|
372
|
-
background-color: #7c107c;
|
|
373
|
-
}
|
|
374
|
-
.bg-palette-xxxl-green-invert {
|
|
375
|
-
background-color: #ef83ef;
|
|
376
|
-
}
|
|
377
|
-
.bg-palette-xxxl-teal {
|
|
378
|
-
background-color: #008272;
|
|
379
|
-
}
|
|
380
|
-
.bg-palette-xxxl-teal-light {
|
|
381
|
-
background-color: #00cfb5;
|
|
382
|
-
}
|
|
383
|
-
.bg-palette-xxxl-teal-lighter {
|
|
384
|
-
background-color: #1cffe3;
|
|
385
|
-
}
|
|
386
|
-
.bg-palette-xxxl-teal-dark {
|
|
387
|
-
background-color: #004f45;
|
|
388
|
-
}
|
|
389
|
-
.bg-palette-xxxl-teal-darker {
|
|
390
|
-
background-color: #001c19;
|
|
391
|
-
}
|
|
392
|
-
.bg-palette-xxxl-teal-complement {
|
|
393
|
-
background-color: #820010;
|
|
394
|
-
}
|
|
395
|
-
.bg-palette-xxxl-teal-invert {
|
|
396
|
-
background-color: #ff7d8d;
|
|
397
|
-
}
|
|
398
|
-
.bg-palette-xxxl-blue {
|
|
399
|
-
background-color: #0078d4;
|
|
400
|
-
}
|
|
401
|
-
.bg-palette-xxxl-blue-light {
|
|
402
|
-
background-color: #229fff;
|
|
403
|
-
}
|
|
404
|
-
.bg-palette-xxxl-blue-lighter {
|
|
405
|
-
background-color: #6ec0ff;
|
|
406
|
-
}
|
|
407
|
-
.bg-palette-xxxl-blue-dark {
|
|
408
|
-
background-color: #005ba1;
|
|
409
|
-
}
|
|
410
|
-
.bg-palette-xxxl-blue-darker {
|
|
411
|
-
background-color: #003e6e;
|
|
412
|
-
}
|
|
413
|
-
.bg-palette-xxxl-blue-complement {
|
|
414
|
-
background-color: #d45c00;
|
|
415
|
-
}
|
|
416
|
-
.bg-palette-xxxl-blue-invert {
|
|
417
|
-
background-color: #ff872b;
|
|
418
|
-
}
|
|
419
|
-
.bg-palette-xxxl-dark {
|
|
420
|
-
background-color: #323232;
|
|
421
|
-
}
|
|
422
|
-
.bg-palette-xxxl-dark-light {
|
|
423
|
-
background-color: #585858;
|
|
424
|
-
}
|
|
425
|
-
.bg-palette-xxxl-dark-lighter {
|
|
426
|
-
background-color: #7f7f7f;
|
|
427
|
-
}
|
|
428
|
-
.bg-palette-xxxl-dark-dark {
|
|
429
|
-
background-color: #191919;
|
|
430
|
-
}
|
|
431
|
-
.bg-palette-xxxl-dark-darker {
|
|
432
|
-
background-color: black;
|
|
433
|
-
}
|
|
434
|
-
.bg-palette-xxxl-dark-complement {
|
|
435
|
-
background-color: #323232;
|
|
436
|
-
}
|
|
437
|
-
.bg-palette-xxxl-dark-invert {
|
|
438
|
-
background-color: #cdcdcd;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
/**
|
|
442
|
-
bg ?
|
|
443
|
-
*/
|
|
444
|
-
.bg-scheme-xxxl-discrete {
|
|
445
|
-
background-color: #ccc;
|
|
446
|
-
}
|
|
447
|
-
.bg-scheme-xxxl-success {
|
|
448
|
-
background-color: green;
|
|
449
|
-
}
|
|
450
|
-
.bg-scheme-xxxl-info {
|
|
451
|
-
background-color: #ffdd57;
|
|
452
|
-
}
|
|
453
|
-
.bg-scheme-xxxl-warning {
|
|
454
|
-
background-color: #e6b905;
|
|
455
|
-
}
|
|
456
|
-
.bg-scheme-xxxl-alert {
|
|
457
|
-
background-color: #ff7300;
|
|
458
|
-
}
|
|
459
|
-
.bg-scheme-xxxl-error {
|
|
460
|
-
background-color: red;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
/**
|
|
464
|
-
bg ?
|
|
465
|
-
*/
|
|
466
|
-
.bg-gray-xxxl-100 {
|
|
467
|
-
background-color: #f4f4f4;
|
|
468
|
-
}
|
|
469
|
-
.bg-gray-xxxl-200 {
|
|
470
|
-
background-color: #e9e9e9;
|
|
471
|
-
}
|
|
472
|
-
.bg-gray-xxxl-300 {
|
|
473
|
-
background-color: #dddddd;
|
|
474
|
-
}
|
|
475
|
-
.bg-gray-xxxl-400 {
|
|
476
|
-
background-color: #d2d2d2;
|
|
477
|
-
}
|
|
478
|
-
.bg-gray-xxxl-500 {
|
|
479
|
-
background-color: #c7c7c7;
|
|
480
|
-
}
|
|
481
|
-
.bg-gray-xxxl-600 {
|
|
482
|
-
background-color: #bbbbbb;
|
|
483
|
-
}
|
|
484
|
-
.bg-gray-xxxl-700 {
|
|
485
|
-
background-color: #b0b0b0;
|
|
486
|
-
}
|
|
487
|
-
.bg-gray-xxxl-800 {
|
|
488
|
-
background-color: #a4a4a4;
|
|
489
|
-
}
|
|
490
|
-
.bg-gray-xxxl-900 {
|
|
491
|
-
background-color: #999999;
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
/**
|
|
495
|
-
bg-themed ?
|
|
496
|
-
*/
|
|
497
|
-
.bg-themed-palette-xxxl-yellow {
|
|
498
|
-
color: black;
|
|
499
|
-
text-shadow: 0 0 0.125rem #cc9400;
|
|
500
|
-
background-color: #ffb900;
|
|
501
|
-
}
|
|
502
|
-
.bg-themed-palette-xxxl-yellow-light {
|
|
503
|
-
color: black;
|
|
504
|
-
background-color: #ffce4d;
|
|
505
|
-
}
|
|
506
|
-
.bg-themed-palette-xxxl-yellow-lighter {
|
|
507
|
-
color: black;
|
|
508
|
-
background-color: #ffe399;
|
|
509
|
-
}
|
|
510
|
-
.bg-themed-palette-xxxl-yellow-dark {
|
|
511
|
-
color: black;
|
|
512
|
-
background-color: #cc9400;
|
|
513
|
-
}
|
|
514
|
-
.bg-themed-palette-xxxl-yellow-darker {
|
|
515
|
-
color: white;
|
|
516
|
-
background-color: #996f00;
|
|
517
|
-
}
|
|
518
|
-
.bg-themed-palette-xxxl-yellow-complement {
|
|
519
|
-
color: white;
|
|
520
|
-
background-color: #0046ff;
|
|
521
|
-
}
|
|
522
|
-
.bg-themed-palette-xxxl-yellow-invert {
|
|
523
|
-
color: white;
|
|
524
|
-
background-color: #0046ff;
|
|
525
|
-
}
|
|
526
|
-
.bg-themed-palette-xxxl-orange {
|
|
527
|
-
color: white;
|
|
528
|
-
text-shadow: 0 0 0.125rem #a52d01;
|
|
529
|
-
background-color: #d83b01;
|
|
530
|
-
}
|
|
531
|
-
.bg-themed-palette-xxxl-orange-light {
|
|
532
|
-
color: black;
|
|
533
|
-
background-color: #fe6127;
|
|
534
|
-
}
|
|
535
|
-
.bg-themed-palette-xxxl-orange-lighter {
|
|
536
|
-
color: black;
|
|
537
|
-
background-color: #fe9974;
|
|
538
|
-
}
|
|
539
|
-
.bg-themed-palette-xxxl-orange-dark {
|
|
540
|
-
color: white;
|
|
541
|
-
background-color: #a52d01;
|
|
542
|
-
}
|
|
543
|
-
.bg-themed-palette-xxxl-orange-darker {
|
|
544
|
-
color: white;
|
|
545
|
-
background-color: #721f01;
|
|
546
|
-
}
|
|
547
|
-
.bg-themed-palette-xxxl-orange-complement {
|
|
548
|
-
color: white;
|
|
549
|
-
background-color: #019ed8;
|
|
550
|
-
}
|
|
551
|
-
.bg-themed-palette-xxxl-orange-invert {
|
|
552
|
-
color: black;
|
|
553
|
-
background-color: #27c4fe;
|
|
554
|
-
}
|
|
555
|
-
.bg-themed-palette-xxxl-red {
|
|
556
|
-
color: white;
|
|
557
|
-
text-shadow: 0 0 0.125rem #ab272a;
|
|
558
|
-
background-color: #d13438;
|
|
559
|
-
}
|
|
560
|
-
.bg-themed-palette-xxxl-red-light {
|
|
561
|
-
color: black;
|
|
562
|
-
background-color: #df7275;
|
|
563
|
-
}
|
|
564
|
-
.bg-themed-palette-xxxl-red-lighter {
|
|
565
|
-
color: black;
|
|
566
|
-
background-color: #edb1b2;
|
|
567
|
-
}
|
|
568
|
-
.bg-themed-palette-xxxl-red-dark {
|
|
569
|
-
color: white;
|
|
570
|
-
background-color: #ab272a;
|
|
571
|
-
}
|
|
572
|
-
.bg-themed-palette-xxxl-red-darker {
|
|
573
|
-
color: white;
|
|
574
|
-
background-color: #821d20;
|
|
575
|
-
}
|
|
576
|
-
.bg-themed-palette-xxxl-red-complement {
|
|
577
|
-
color: black;
|
|
578
|
-
background-color: #34d1cd;
|
|
579
|
-
}
|
|
580
|
-
.bg-themed-palette-xxxl-red-invert {
|
|
581
|
-
color: black;
|
|
582
|
-
background-color: #2ecbc7;
|
|
583
|
-
}
|
|
584
|
-
.bg-themed-palette-xxxl-magenta {
|
|
585
|
-
color: white;
|
|
586
|
-
text-shadow: 0 0 0.125rem #810071;
|
|
587
|
-
background-color: #b4009e;
|
|
588
|
-
}
|
|
589
|
-
.bg-themed-palette-xxxl-magenta-light {
|
|
590
|
-
color: white;
|
|
591
|
-
background-color: #ff02e0;
|
|
592
|
-
}
|
|
593
|
-
.bg-themed-palette-xxxl-magenta-lighter {
|
|
594
|
-
color: black;
|
|
595
|
-
background-color: #ff4ee9;
|
|
596
|
-
}
|
|
597
|
-
.bg-themed-palette-xxxl-magenta-dark {
|
|
598
|
-
color: white;
|
|
599
|
-
background-color: #810071;
|
|
600
|
-
}
|
|
601
|
-
.bg-themed-palette-xxxl-magenta-darker {
|
|
602
|
-
color: white;
|
|
603
|
-
background-color: #4e0044;
|
|
604
|
-
}
|
|
605
|
-
.bg-themed-palette-xxxl-magenta-complement {
|
|
606
|
-
color: white;
|
|
607
|
-
background-color: #00b416;
|
|
608
|
-
}
|
|
609
|
-
.bg-themed-palette-xxxl-magenta-invert {
|
|
610
|
-
color: black;
|
|
611
|
-
background-color: #4bff61;
|
|
612
|
-
}
|
|
613
|
-
.bg-themed-palette-xxxl-purple {
|
|
614
|
-
color: white;
|
|
615
|
-
text-shadow: 0 0 0.125rem #43216a;
|
|
616
|
-
background-color: #5c2d91;
|
|
617
|
-
}
|
|
618
|
-
.bg-themed-palette-xxxl-purple-light {
|
|
619
|
-
color: white;
|
|
620
|
-
background-color: #8145c5;
|
|
621
|
-
}
|
|
622
|
-
.bg-themed-palette-xxxl-purple-lighter {
|
|
623
|
-
color: black;
|
|
624
|
-
background-color: #a980d7;
|
|
625
|
-
}
|
|
626
|
-
.bg-themed-palette-xxxl-purple-dark {
|
|
627
|
-
color: white;
|
|
628
|
-
background-color: #43216a;
|
|
629
|
-
}
|
|
630
|
-
.bg-themed-palette-xxxl-purple-darker {
|
|
631
|
-
color: white;
|
|
632
|
-
background-color: #2b1543;
|
|
633
|
-
}
|
|
634
|
-
.bg-themed-palette-xxxl-purple-complement {
|
|
635
|
-
color: black;
|
|
636
|
-
background-color: #62912d;
|
|
637
|
-
}
|
|
638
|
-
.bg-themed-palette-xxxl-purple-invert {
|
|
639
|
-
color: black;
|
|
640
|
-
background-color: #a3d26e;
|
|
641
|
-
}
|
|
642
|
-
.bg-themed-palette-xxxl-green {
|
|
643
|
-
color: white;
|
|
644
|
-
text-shadow: 0 0 0.125rem #0a4f0a;
|
|
645
|
-
background-color: #107c10;
|
|
646
|
-
}
|
|
647
|
-
.bg-themed-palette-xxxl-green-light {
|
|
648
|
-
color: black;
|
|
649
|
-
background-color: #19c019;
|
|
650
|
-
}
|
|
651
|
-
.bg-themed-palette-xxxl-green-lighter {
|
|
652
|
-
color: black;
|
|
653
|
-
background-color: #3fe63f;
|
|
654
|
-
}
|
|
655
|
-
.bg-themed-palette-xxxl-green-dark {
|
|
656
|
-
color: white;
|
|
657
|
-
background-color: #0a4f0a;
|
|
658
|
-
}
|
|
659
|
-
.bg-themed-palette-xxxl-green-darker {
|
|
660
|
-
color: white;
|
|
661
|
-
background-color: #042204;
|
|
662
|
-
}
|
|
663
|
-
.bg-themed-palette-xxxl-green-complement {
|
|
664
|
-
color: white;
|
|
665
|
-
background-color: #7c107c;
|
|
666
|
-
}
|
|
667
|
-
.bg-themed-palette-xxxl-green-invert {
|
|
668
|
-
color: black;
|
|
669
|
-
background-color: #ef83ef;
|
|
670
|
-
}
|
|
671
|
-
.bg-themed-palette-xxxl-teal {
|
|
672
|
-
color: white;
|
|
673
|
-
text-shadow: 0 0 0.125rem #004f45;
|
|
674
|
-
background-color: #008272;
|
|
675
|
-
}
|
|
676
|
-
.bg-themed-palette-xxxl-teal-light {
|
|
677
|
-
color: black;
|
|
678
|
-
background-color: #00cfb5;
|
|
679
|
-
}
|
|
680
|
-
.bg-themed-palette-xxxl-teal-lighter {
|
|
681
|
-
color: black;
|
|
682
|
-
background-color: #1cffe3;
|
|
683
|
-
}
|
|
684
|
-
.bg-themed-palette-xxxl-teal-dark {
|
|
685
|
-
color: white;
|
|
686
|
-
background-color: #004f45;
|
|
687
|
-
}
|
|
688
|
-
.bg-themed-palette-xxxl-teal-darker {
|
|
689
|
-
color: white;
|
|
690
|
-
background-color: #001c19;
|
|
691
|
-
}
|
|
692
|
-
.bg-themed-palette-xxxl-teal-complement {
|
|
693
|
-
color: white;
|
|
694
|
-
background-color: #820010;
|
|
695
|
-
}
|
|
696
|
-
.bg-themed-palette-xxxl-teal-invert {
|
|
697
|
-
color: black;
|
|
698
|
-
background-color: #ff7d8d;
|
|
699
|
-
}
|
|
700
|
-
.bg-themed-palette-xxxl-blue {
|
|
701
|
-
color: white;
|
|
702
|
-
text-shadow: 0 0 0.125rem #005ba1;
|
|
703
|
-
background-color: #0078d4;
|
|
704
|
-
}
|
|
705
|
-
.bg-themed-palette-xxxl-blue-light {
|
|
706
|
-
color: white;
|
|
707
|
-
background-color: #229fff;
|
|
708
|
-
}
|
|
709
|
-
.bg-themed-palette-xxxl-blue-lighter {
|
|
710
|
-
color: black;
|
|
711
|
-
background-color: #6ec0ff;
|
|
712
|
-
}
|
|
713
|
-
.bg-themed-palette-xxxl-blue-dark {
|
|
714
|
-
color: white;
|
|
715
|
-
background-color: #005ba1;
|
|
716
|
-
}
|
|
717
|
-
.bg-themed-palette-xxxl-blue-darker {
|
|
718
|
-
color: white;
|
|
719
|
-
background-color: #003e6e;
|
|
720
|
-
}
|
|
721
|
-
.bg-themed-palette-xxxl-blue-complement {
|
|
722
|
-
color: black;
|
|
723
|
-
background-color: #d45c00;
|
|
724
|
-
}
|
|
725
|
-
.bg-themed-palette-xxxl-blue-invert {
|
|
726
|
-
color: black;
|
|
727
|
-
background-color: #ff872b;
|
|
728
|
-
}
|
|
729
|
-
.bg-themed-palette-xxxl-dark {
|
|
730
|
-
color: white;
|
|
731
|
-
text-shadow: 0 0 0.125rem #191919;
|
|
732
|
-
background-color: #323232;
|
|
733
|
-
}
|
|
734
|
-
.bg-themed-palette-xxxl-dark-light {
|
|
735
|
-
color: white;
|
|
736
|
-
background-color: #585858;
|
|
737
|
-
}
|
|
738
|
-
.bg-themed-palette-xxxl-dark-lighter {
|
|
739
|
-
color: white;
|
|
740
|
-
background-color: #7f7f7f;
|
|
741
|
-
}
|
|
742
|
-
.bg-themed-palette-xxxl-dark-dark {
|
|
743
|
-
color: white;
|
|
744
|
-
background-color: #191919;
|
|
745
|
-
}
|
|
746
|
-
.bg-themed-palette-xxxl-dark-darker {
|
|
747
|
-
color: white;
|
|
748
|
-
background-color: black;
|
|
749
|
-
}
|
|
750
|
-
.bg-themed-palette-xxxl-dark-complement {
|
|
751
|
-
color: white;
|
|
752
|
-
background-color: #323232;
|
|
753
|
-
}
|
|
754
|
-
.bg-themed-palette-xxxl-dark-invert {
|
|
755
|
-
color: black;
|
|
756
|
-
background-color: #cdcdcd;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
/**
|
|
760
|
-
bg-themed ?
|
|
761
|
-
*/
|
|
762
|
-
.bg-themed-scheme-xxxl-discrete {
|
|
763
|
-
color: black;
|
|
764
|
-
text-shadow: 0 0 0.125rem #b3b3b3;
|
|
765
|
-
background-color: #ccc;
|
|
766
|
-
}
|
|
767
|
-
.bg-themed-scheme-xxxl-success {
|
|
768
|
-
color: white;
|
|
769
|
-
text-shadow: 0 0 0.125rem #004d00;
|
|
770
|
-
background-color: green;
|
|
771
|
-
}
|
|
772
|
-
.bg-themed-scheme-xxxl-info {
|
|
773
|
-
color: black;
|
|
774
|
-
text-shadow: 0 0 0.125rem #ffd324;
|
|
775
|
-
background-color: #ffdd57;
|
|
776
|
-
}
|
|
777
|
-
.bg-themed-scheme-xxxl-warning {
|
|
778
|
-
color: black;
|
|
779
|
-
text-shadow: 0 0 0.125rem #b49104;
|
|
780
|
-
background-color: #e6b905;
|
|
781
|
-
}
|
|
782
|
-
.bg-themed-scheme-xxxl-alert {
|
|
783
|
-
color: black;
|
|
784
|
-
text-shadow: 0 0 0.125rem #cc5c00;
|
|
785
|
-
background-color: #ff7300;
|
|
786
|
-
}
|
|
787
|
-
.bg-themed-scheme-xxxl-error {
|
|
788
|
-
color: white;
|
|
789
|
-
text-shadow: 0 0 0.125rem #cc0000;
|
|
790
|
-
background-color: red;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
/**
|
|
794
|
-
bg-themed ?
|
|
795
|
-
*/
|
|
796
|
-
.bg-themed-gray-xxxl-100 {
|
|
797
|
-
color: black;
|
|
798
|
-
text-shadow: 0 0 0.125rem #dbdbdb;
|
|
799
|
-
background-color: #f4f4f4;
|
|
800
|
-
}
|
|
801
|
-
.bg-themed-gray-xxxl-200 {
|
|
802
|
-
color: black;
|
|
803
|
-
text-shadow: 0 0 0.125rem #d0d0d0;
|
|
804
|
-
background-color: #e9e9e9;
|
|
805
|
-
}
|
|
806
|
-
.bg-themed-gray-xxxl-300 {
|
|
807
|
-
color: black;
|
|
808
|
-
text-shadow: 0 0 0.125rem #c4c4c4;
|
|
809
|
-
background-color: #dddddd;
|
|
810
|
-
}
|
|
811
|
-
.bg-themed-gray-xxxl-400 {
|
|
812
|
-
color: black;
|
|
813
|
-
text-shadow: 0 0 0.125rem #b9b9b9;
|
|
814
|
-
background-color: #d2d2d2;
|
|
815
|
-
}
|
|
816
|
-
.bg-themed-gray-xxxl-500 {
|
|
817
|
-
color: black;
|
|
818
|
-
text-shadow: 0 0 0.125rem #aeaeae;
|
|
819
|
-
background-color: #c7c7c7;
|
|
820
|
-
}
|
|
821
|
-
.bg-themed-gray-xxxl-600 {
|
|
822
|
-
color: black;
|
|
823
|
-
text-shadow: 0 0 0.125rem #a2a2a2;
|
|
824
|
-
background-color: #bbbbbb;
|
|
825
|
-
}
|
|
826
|
-
.bg-themed-gray-xxxl-700 {
|
|
827
|
-
color: black;
|
|
828
|
-
text-shadow: 0 0 0.125rem #979797;
|
|
829
|
-
background-color: #b0b0b0;
|
|
830
|
-
}
|
|
831
|
-
.bg-themed-gray-xxxl-800 {
|
|
832
|
-
color: black;
|
|
833
|
-
text-shadow: 0 0 0.125rem #8b8b8b;
|
|
834
|
-
background-color: #a4a4a4;
|
|
835
|
-
}
|
|
836
|
-
.bg-themed-gray-xxxl-900 {
|
|
837
|
-
color: black;
|
|
838
|
-
text-shadow: 0 0 0.125rem gray;
|
|
839
|
-
background-color: #999999;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
/**
|
|
843
|
-
border-color ?
|
|
844
|
-
*/
|
|
845
|
-
.border-color-palette-xxxl-yellow {
|
|
846
|
-
border-color: #cc9400 !important;
|
|
847
|
-
}
|
|
848
|
-
.border-color-palette-xxxl-orange {
|
|
849
|
-
border-color: #a52d01 !important;
|
|
850
|
-
}
|
|
851
|
-
.border-color-palette-xxxl-red {
|
|
852
|
-
border-color: #ab272a !important;
|
|
853
|
-
}
|
|
854
|
-
.border-color-palette-xxxl-magenta {
|
|
855
|
-
border-color: #810071 !important;
|
|
856
|
-
}
|
|
857
|
-
.border-color-palette-xxxl-purple {
|
|
858
|
-
border-color: #43216a !important;
|
|
859
|
-
}
|
|
860
|
-
.border-color-palette-xxxl-green {
|
|
861
|
-
border-color: #0a4f0a !important;
|
|
862
|
-
}
|
|
863
|
-
.border-color-palette-xxxl-teal {
|
|
864
|
-
border-color: #004f45 !important;
|
|
865
|
-
}
|
|
866
|
-
.border-color-palette-xxxl-blue {
|
|
867
|
-
border-color: #005ba1 !important;
|
|
868
|
-
}
|
|
869
|
-
.border-color-palette-xxxl-dark {
|
|
870
|
-
border-color: #191919 !important;
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
/**
|
|
874
|
-
border-color ?
|
|
875
|
-
*/
|
|
876
|
-
.border-color-scheme-xxxl-discrete {
|
|
877
|
-
border-color: #b3b3b3 !important;
|
|
878
|
-
}
|
|
879
|
-
.border-color-scheme-xxxl-success {
|
|
880
|
-
border-color: #004d00 !important;
|
|
881
|
-
}
|
|
882
|
-
.border-color-scheme-xxxl-info {
|
|
883
|
-
border-color: #ffd324 !important;
|
|
884
|
-
}
|
|
885
|
-
.border-color-scheme-xxxl-warning {
|
|
886
|
-
border-color: #b49104 !important;
|
|
887
|
-
}
|
|
888
|
-
.border-color-scheme-xxxl-alert {
|
|
889
|
-
border-color: #cc5c00 !important;
|
|
890
|
-
}
|
|
891
|
-
.border-color-scheme-xxxl-error {
|
|
892
|
-
border-color: #cc0000 !important;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
/**
|
|
896
|
-
border-color ?
|
|
897
|
-
*/
|
|
898
|
-
.border-color-gray-xxxl-100 {
|
|
899
|
-
border-color: #dbdbdb !important;
|
|
900
|
-
}
|
|
901
|
-
.border-color-gray-xxxl-200 {
|
|
902
|
-
border-color: #d0d0d0 !important;
|
|
903
|
-
}
|
|
904
|
-
.border-color-gray-xxxl-300 {
|
|
905
|
-
border-color: #c4c4c4 !important;
|
|
906
|
-
}
|
|
907
|
-
.border-color-gray-xxxl-400 {
|
|
908
|
-
border-color: #b9b9b9 !important;
|
|
909
|
-
}
|
|
910
|
-
.border-color-gray-xxxl-500 {
|
|
911
|
-
border-color: #aeaeae !important;
|
|
912
|
-
}
|
|
913
|
-
.border-color-gray-xxxl-600 {
|
|
914
|
-
border-color: #a2a2a2 !important;
|
|
915
|
-
}
|
|
916
|
-
.border-color-gray-xxxl-700 {
|
|
917
|
-
border-color: #979797 !important;
|
|
918
|
-
}
|
|
919
|
-
.border-color-gray-xxxl-800 {
|
|
920
|
-
border-color: #8b8b8b !important;
|
|
921
|
-
}
|
|
922
|
-
.border-color-gray-xxxl-900 {
|
|
923
|
-
border-color: gray !important;
|
|
924
|
-
}
|
|
925
|
-
}
|
|
926
|
-
@media only screen and (max-width: 120rem) {
|
|
1
|
+
@media only screen and (max-width: 1300px) {
|
|
927
2
|
/**
|
|
928
3
|
color ?
|
|
929
4
|
*/
|
|
@@ -1142,31 +217,31 @@
|
|
|
1142
217
|
/**
|
|
1143
218
|
color ?
|
|
1144
219
|
*/
|
|
1145
|
-
.color-
|
|
220
|
+
.color-grey-xxl-100 {
|
|
1146
221
|
color: #f4f4f4;
|
|
1147
222
|
}
|
|
1148
|
-
.color-
|
|
223
|
+
.color-grey-xxl-200 {
|
|
1149
224
|
color: #e9e9e9;
|
|
1150
225
|
}
|
|
1151
|
-
.color-
|
|
226
|
+
.color-grey-xxl-300 {
|
|
1152
227
|
color: #dddddd;
|
|
1153
228
|
}
|
|
1154
|
-
.color-
|
|
229
|
+
.color-grey-xxl-400 {
|
|
1155
230
|
color: #d2d2d2;
|
|
1156
231
|
}
|
|
1157
|
-
.color-
|
|
232
|
+
.color-grey-xxl-500 {
|
|
1158
233
|
color: #c7c7c7;
|
|
1159
234
|
}
|
|
1160
|
-
.color-
|
|
235
|
+
.color-grey-xxl-600 {
|
|
1161
236
|
color: #bbbbbb;
|
|
1162
237
|
}
|
|
1163
|
-
.color-
|
|
238
|
+
.color-grey-xxl-700 {
|
|
1164
239
|
color: #b0b0b0;
|
|
1165
240
|
}
|
|
1166
|
-
.color-
|
|
241
|
+
.color-grey-xxl-800 {
|
|
1167
242
|
color: #a4a4a4;
|
|
1168
243
|
}
|
|
1169
|
-
.color-
|
|
244
|
+
.color-grey-xxl-900 {
|
|
1170
245
|
color: #999999;
|
|
1171
246
|
}
|
|
1172
247
|
|
|
@@ -1388,31 +463,31 @@
|
|
|
1388
463
|
/**
|
|
1389
464
|
bg ?
|
|
1390
465
|
*/
|
|
1391
|
-
.bg-
|
|
466
|
+
.bg-grey-xxl-100 {
|
|
1392
467
|
background-color: #f4f4f4;
|
|
1393
468
|
}
|
|
1394
|
-
.bg-
|
|
469
|
+
.bg-grey-xxl-200 {
|
|
1395
470
|
background-color: #e9e9e9;
|
|
1396
471
|
}
|
|
1397
|
-
.bg-
|
|
472
|
+
.bg-grey-xxl-300 {
|
|
1398
473
|
background-color: #dddddd;
|
|
1399
474
|
}
|
|
1400
|
-
.bg-
|
|
475
|
+
.bg-grey-xxl-400 {
|
|
1401
476
|
background-color: #d2d2d2;
|
|
1402
477
|
}
|
|
1403
|
-
.bg-
|
|
478
|
+
.bg-grey-xxl-500 {
|
|
1404
479
|
background-color: #c7c7c7;
|
|
1405
480
|
}
|
|
1406
|
-
.bg-
|
|
481
|
+
.bg-grey-xxl-600 {
|
|
1407
482
|
background-color: #bbbbbb;
|
|
1408
483
|
}
|
|
1409
|
-
.bg-
|
|
484
|
+
.bg-grey-xxl-700 {
|
|
1410
485
|
background-color: #b0b0b0;
|
|
1411
486
|
}
|
|
1412
|
-
.bg-
|
|
487
|
+
.bg-grey-xxl-800 {
|
|
1413
488
|
background-color: #a4a4a4;
|
|
1414
489
|
}
|
|
1415
|
-
.bg-
|
|
490
|
+
.bg-grey-xxl-900 {
|
|
1416
491
|
background-color: #999999;
|
|
1417
492
|
}
|
|
1418
493
|
|
|
@@ -1718,47 +793,47 @@
|
|
|
1718
793
|
/**
|
|
1719
794
|
bg-themed ?
|
|
1720
795
|
*/
|
|
1721
|
-
.bg-themed-
|
|
796
|
+
.bg-themed-grey-xxl-100 {
|
|
1722
797
|
color: black;
|
|
1723
798
|
text-shadow: 0 0 0.125rem #dbdbdb;
|
|
1724
799
|
background-color: #f4f4f4;
|
|
1725
800
|
}
|
|
1726
|
-
.bg-themed-
|
|
801
|
+
.bg-themed-grey-xxl-200 {
|
|
1727
802
|
color: black;
|
|
1728
803
|
text-shadow: 0 0 0.125rem #d0d0d0;
|
|
1729
804
|
background-color: #e9e9e9;
|
|
1730
805
|
}
|
|
1731
|
-
.bg-themed-
|
|
806
|
+
.bg-themed-grey-xxl-300 {
|
|
1732
807
|
color: black;
|
|
1733
808
|
text-shadow: 0 0 0.125rem #c4c4c4;
|
|
1734
809
|
background-color: #dddddd;
|
|
1735
810
|
}
|
|
1736
|
-
.bg-themed-
|
|
811
|
+
.bg-themed-grey-xxl-400 {
|
|
1737
812
|
color: black;
|
|
1738
813
|
text-shadow: 0 0 0.125rem #b9b9b9;
|
|
1739
814
|
background-color: #d2d2d2;
|
|
1740
815
|
}
|
|
1741
|
-
.bg-themed-
|
|
816
|
+
.bg-themed-grey-xxl-500 {
|
|
1742
817
|
color: black;
|
|
1743
818
|
text-shadow: 0 0 0.125rem #aeaeae;
|
|
1744
819
|
background-color: #c7c7c7;
|
|
1745
820
|
}
|
|
1746
|
-
.bg-themed-
|
|
821
|
+
.bg-themed-grey-xxl-600 {
|
|
1747
822
|
color: black;
|
|
1748
823
|
text-shadow: 0 0 0.125rem #a2a2a2;
|
|
1749
824
|
background-color: #bbbbbb;
|
|
1750
825
|
}
|
|
1751
|
-
.bg-themed-
|
|
826
|
+
.bg-themed-grey-xxl-700 {
|
|
1752
827
|
color: black;
|
|
1753
828
|
text-shadow: 0 0 0.125rem #979797;
|
|
1754
829
|
background-color: #b0b0b0;
|
|
1755
830
|
}
|
|
1756
|
-
.bg-themed-
|
|
831
|
+
.bg-themed-grey-xxl-800 {
|
|
1757
832
|
color: black;
|
|
1758
833
|
text-shadow: 0 0 0.125rem #8b8b8b;
|
|
1759
834
|
background-color: #a4a4a4;
|
|
1760
835
|
}
|
|
1761
|
-
.bg-themed-
|
|
836
|
+
.bg-themed-grey-xxl-900 {
|
|
1762
837
|
color: black;
|
|
1763
838
|
text-shadow: 0 0 0.125rem gray;
|
|
1764
839
|
background-color: #999999;
|
|
@@ -1820,35 +895,35 @@
|
|
|
1820
895
|
/**
|
|
1821
896
|
border-color ?
|
|
1822
897
|
*/
|
|
1823
|
-
.border-color-
|
|
898
|
+
.border-color-grey-xxl-100 {
|
|
1824
899
|
border-color: #dbdbdb !important;
|
|
1825
900
|
}
|
|
1826
|
-
.border-color-
|
|
901
|
+
.border-color-grey-xxl-200 {
|
|
1827
902
|
border-color: #d0d0d0 !important;
|
|
1828
903
|
}
|
|
1829
|
-
.border-color-
|
|
904
|
+
.border-color-grey-xxl-300 {
|
|
1830
905
|
border-color: #c4c4c4 !important;
|
|
1831
906
|
}
|
|
1832
|
-
.border-color-
|
|
907
|
+
.border-color-grey-xxl-400 {
|
|
1833
908
|
border-color: #b9b9b9 !important;
|
|
1834
909
|
}
|
|
1835
|
-
.border-color-
|
|
910
|
+
.border-color-grey-xxl-500 {
|
|
1836
911
|
border-color: #aeaeae !important;
|
|
1837
912
|
}
|
|
1838
|
-
.border-color-
|
|
913
|
+
.border-color-grey-xxl-600 {
|
|
1839
914
|
border-color: #a2a2a2 !important;
|
|
1840
915
|
}
|
|
1841
|
-
.border-color-
|
|
916
|
+
.border-color-grey-xxl-700 {
|
|
1842
917
|
border-color: #979797 !important;
|
|
1843
918
|
}
|
|
1844
|
-
.border-color-
|
|
919
|
+
.border-color-grey-xxl-800 {
|
|
1845
920
|
border-color: #8b8b8b !important;
|
|
1846
921
|
}
|
|
1847
|
-
.border-color-
|
|
922
|
+
.border-color-grey-xxl-900 {
|
|
1848
923
|
border-color: gray !important;
|
|
1849
924
|
}
|
|
1850
925
|
}
|
|
1851
|
-
@media only screen and (max-width:
|
|
926
|
+
@media only screen and (max-width: 1200px) {
|
|
1852
927
|
/**
|
|
1853
928
|
color ?
|
|
1854
929
|
*/
|
|
@@ -2067,31 +1142,31 @@
|
|
|
2067
1142
|
/**
|
|
2068
1143
|
color ?
|
|
2069
1144
|
*/
|
|
2070
|
-
.color-
|
|
1145
|
+
.color-grey-xl-100 {
|
|
2071
1146
|
color: #f4f4f4;
|
|
2072
1147
|
}
|
|
2073
|
-
.color-
|
|
1148
|
+
.color-grey-xl-200 {
|
|
2074
1149
|
color: #e9e9e9;
|
|
2075
1150
|
}
|
|
2076
|
-
.color-
|
|
1151
|
+
.color-grey-xl-300 {
|
|
2077
1152
|
color: #dddddd;
|
|
2078
1153
|
}
|
|
2079
|
-
.color-
|
|
1154
|
+
.color-grey-xl-400 {
|
|
2080
1155
|
color: #d2d2d2;
|
|
2081
1156
|
}
|
|
2082
|
-
.color-
|
|
1157
|
+
.color-grey-xl-500 {
|
|
2083
1158
|
color: #c7c7c7;
|
|
2084
1159
|
}
|
|
2085
|
-
.color-
|
|
1160
|
+
.color-grey-xl-600 {
|
|
2086
1161
|
color: #bbbbbb;
|
|
2087
1162
|
}
|
|
2088
|
-
.color-
|
|
1163
|
+
.color-grey-xl-700 {
|
|
2089
1164
|
color: #b0b0b0;
|
|
2090
1165
|
}
|
|
2091
|
-
.color-
|
|
1166
|
+
.color-grey-xl-800 {
|
|
2092
1167
|
color: #a4a4a4;
|
|
2093
1168
|
}
|
|
2094
|
-
.color-
|
|
1169
|
+
.color-grey-xl-900 {
|
|
2095
1170
|
color: #999999;
|
|
2096
1171
|
}
|
|
2097
1172
|
|
|
@@ -2313,31 +1388,31 @@
|
|
|
2313
1388
|
/**
|
|
2314
1389
|
bg ?
|
|
2315
1390
|
*/
|
|
2316
|
-
.bg-
|
|
1391
|
+
.bg-grey-xl-100 {
|
|
2317
1392
|
background-color: #f4f4f4;
|
|
2318
1393
|
}
|
|
2319
|
-
.bg-
|
|
1394
|
+
.bg-grey-xl-200 {
|
|
2320
1395
|
background-color: #e9e9e9;
|
|
2321
1396
|
}
|
|
2322
|
-
.bg-
|
|
1397
|
+
.bg-grey-xl-300 {
|
|
2323
1398
|
background-color: #dddddd;
|
|
2324
1399
|
}
|
|
2325
|
-
.bg-
|
|
1400
|
+
.bg-grey-xl-400 {
|
|
2326
1401
|
background-color: #d2d2d2;
|
|
2327
1402
|
}
|
|
2328
|
-
.bg-
|
|
1403
|
+
.bg-grey-xl-500 {
|
|
2329
1404
|
background-color: #c7c7c7;
|
|
2330
1405
|
}
|
|
2331
|
-
.bg-
|
|
1406
|
+
.bg-grey-xl-600 {
|
|
2332
1407
|
background-color: #bbbbbb;
|
|
2333
1408
|
}
|
|
2334
|
-
.bg-
|
|
1409
|
+
.bg-grey-xl-700 {
|
|
2335
1410
|
background-color: #b0b0b0;
|
|
2336
1411
|
}
|
|
2337
|
-
.bg-
|
|
1412
|
+
.bg-grey-xl-800 {
|
|
2338
1413
|
background-color: #a4a4a4;
|
|
2339
1414
|
}
|
|
2340
|
-
.bg-
|
|
1415
|
+
.bg-grey-xl-900 {
|
|
2341
1416
|
background-color: #999999;
|
|
2342
1417
|
}
|
|
2343
1418
|
|
|
@@ -2643,47 +1718,47 @@
|
|
|
2643
1718
|
/**
|
|
2644
1719
|
bg-themed ?
|
|
2645
1720
|
*/
|
|
2646
|
-
.bg-themed-
|
|
1721
|
+
.bg-themed-grey-xl-100 {
|
|
2647
1722
|
color: black;
|
|
2648
1723
|
text-shadow: 0 0 0.125rem #dbdbdb;
|
|
2649
1724
|
background-color: #f4f4f4;
|
|
2650
1725
|
}
|
|
2651
|
-
.bg-themed-
|
|
1726
|
+
.bg-themed-grey-xl-200 {
|
|
2652
1727
|
color: black;
|
|
2653
1728
|
text-shadow: 0 0 0.125rem #d0d0d0;
|
|
2654
1729
|
background-color: #e9e9e9;
|
|
2655
1730
|
}
|
|
2656
|
-
.bg-themed-
|
|
1731
|
+
.bg-themed-grey-xl-300 {
|
|
2657
1732
|
color: black;
|
|
2658
1733
|
text-shadow: 0 0 0.125rem #c4c4c4;
|
|
2659
1734
|
background-color: #dddddd;
|
|
2660
1735
|
}
|
|
2661
|
-
.bg-themed-
|
|
1736
|
+
.bg-themed-grey-xl-400 {
|
|
2662
1737
|
color: black;
|
|
2663
1738
|
text-shadow: 0 0 0.125rem #b9b9b9;
|
|
2664
1739
|
background-color: #d2d2d2;
|
|
2665
1740
|
}
|
|
2666
|
-
.bg-themed-
|
|
1741
|
+
.bg-themed-grey-xl-500 {
|
|
2667
1742
|
color: black;
|
|
2668
1743
|
text-shadow: 0 0 0.125rem #aeaeae;
|
|
2669
1744
|
background-color: #c7c7c7;
|
|
2670
1745
|
}
|
|
2671
|
-
.bg-themed-
|
|
1746
|
+
.bg-themed-grey-xl-600 {
|
|
2672
1747
|
color: black;
|
|
2673
1748
|
text-shadow: 0 0 0.125rem #a2a2a2;
|
|
2674
1749
|
background-color: #bbbbbb;
|
|
2675
1750
|
}
|
|
2676
|
-
.bg-themed-
|
|
1751
|
+
.bg-themed-grey-xl-700 {
|
|
2677
1752
|
color: black;
|
|
2678
1753
|
text-shadow: 0 0 0.125rem #979797;
|
|
2679
1754
|
background-color: #b0b0b0;
|
|
2680
1755
|
}
|
|
2681
|
-
.bg-themed-
|
|
1756
|
+
.bg-themed-grey-xl-800 {
|
|
2682
1757
|
color: black;
|
|
2683
1758
|
text-shadow: 0 0 0.125rem #8b8b8b;
|
|
2684
1759
|
background-color: #a4a4a4;
|
|
2685
1760
|
}
|
|
2686
|
-
.bg-themed-
|
|
1761
|
+
.bg-themed-grey-xl-900 {
|
|
2687
1762
|
color: black;
|
|
2688
1763
|
text-shadow: 0 0 0.125rem gray;
|
|
2689
1764
|
background-color: #999999;
|
|
@@ -2745,35 +1820,35 @@
|
|
|
2745
1820
|
/**
|
|
2746
1821
|
border-color ?
|
|
2747
1822
|
*/
|
|
2748
|
-
.border-color-
|
|
1823
|
+
.border-color-grey-xl-100 {
|
|
2749
1824
|
border-color: #dbdbdb !important;
|
|
2750
1825
|
}
|
|
2751
|
-
.border-color-
|
|
1826
|
+
.border-color-grey-xl-200 {
|
|
2752
1827
|
border-color: #d0d0d0 !important;
|
|
2753
1828
|
}
|
|
2754
|
-
.border-color-
|
|
1829
|
+
.border-color-grey-xl-300 {
|
|
2755
1830
|
border-color: #c4c4c4 !important;
|
|
2756
1831
|
}
|
|
2757
|
-
.border-color-
|
|
1832
|
+
.border-color-grey-xl-400 {
|
|
2758
1833
|
border-color: #b9b9b9 !important;
|
|
2759
1834
|
}
|
|
2760
|
-
.border-color-
|
|
1835
|
+
.border-color-grey-xl-500 {
|
|
2761
1836
|
border-color: #aeaeae !important;
|
|
2762
1837
|
}
|
|
2763
|
-
.border-color-
|
|
1838
|
+
.border-color-grey-xl-600 {
|
|
2764
1839
|
border-color: #a2a2a2 !important;
|
|
2765
1840
|
}
|
|
2766
|
-
.border-color-
|
|
1841
|
+
.border-color-grey-xl-700 {
|
|
2767
1842
|
border-color: #979797 !important;
|
|
2768
1843
|
}
|
|
2769
|
-
.border-color-
|
|
1844
|
+
.border-color-grey-xl-800 {
|
|
2770
1845
|
border-color: #8b8b8b !important;
|
|
2771
1846
|
}
|
|
2772
|
-
.border-color-
|
|
1847
|
+
.border-color-grey-xl-900 {
|
|
2773
1848
|
border-color: gray !important;
|
|
2774
1849
|
}
|
|
2775
1850
|
}
|
|
2776
|
-
@media only screen and (max-width:
|
|
1851
|
+
@media only screen and (max-width: 960px) {
|
|
2777
1852
|
/**
|
|
2778
1853
|
color ?
|
|
2779
1854
|
*/
|
|
@@ -2992,31 +2067,31 @@
|
|
|
2992
2067
|
/**
|
|
2993
2068
|
color ?
|
|
2994
2069
|
*/
|
|
2995
|
-
.color-
|
|
2070
|
+
.color-grey-lg-100 {
|
|
2996
2071
|
color: #f4f4f4;
|
|
2997
2072
|
}
|
|
2998
|
-
.color-
|
|
2073
|
+
.color-grey-lg-200 {
|
|
2999
2074
|
color: #e9e9e9;
|
|
3000
2075
|
}
|
|
3001
|
-
.color-
|
|
2076
|
+
.color-grey-lg-300 {
|
|
3002
2077
|
color: #dddddd;
|
|
3003
2078
|
}
|
|
3004
|
-
.color-
|
|
2079
|
+
.color-grey-lg-400 {
|
|
3005
2080
|
color: #d2d2d2;
|
|
3006
2081
|
}
|
|
3007
|
-
.color-
|
|
2082
|
+
.color-grey-lg-500 {
|
|
3008
2083
|
color: #c7c7c7;
|
|
3009
2084
|
}
|
|
3010
|
-
.color-
|
|
2085
|
+
.color-grey-lg-600 {
|
|
3011
2086
|
color: #bbbbbb;
|
|
3012
2087
|
}
|
|
3013
|
-
.color-
|
|
2088
|
+
.color-grey-lg-700 {
|
|
3014
2089
|
color: #b0b0b0;
|
|
3015
2090
|
}
|
|
3016
|
-
.color-
|
|
2091
|
+
.color-grey-lg-800 {
|
|
3017
2092
|
color: #a4a4a4;
|
|
3018
2093
|
}
|
|
3019
|
-
.color-
|
|
2094
|
+
.color-grey-lg-900 {
|
|
3020
2095
|
color: #999999;
|
|
3021
2096
|
}
|
|
3022
2097
|
|
|
@@ -3238,31 +2313,31 @@
|
|
|
3238
2313
|
/**
|
|
3239
2314
|
bg ?
|
|
3240
2315
|
*/
|
|
3241
|
-
.bg-
|
|
2316
|
+
.bg-grey-lg-100 {
|
|
3242
2317
|
background-color: #f4f4f4;
|
|
3243
2318
|
}
|
|
3244
|
-
.bg-
|
|
2319
|
+
.bg-grey-lg-200 {
|
|
3245
2320
|
background-color: #e9e9e9;
|
|
3246
2321
|
}
|
|
3247
|
-
.bg-
|
|
2322
|
+
.bg-grey-lg-300 {
|
|
3248
2323
|
background-color: #dddddd;
|
|
3249
2324
|
}
|
|
3250
|
-
.bg-
|
|
2325
|
+
.bg-grey-lg-400 {
|
|
3251
2326
|
background-color: #d2d2d2;
|
|
3252
2327
|
}
|
|
3253
|
-
.bg-
|
|
2328
|
+
.bg-grey-lg-500 {
|
|
3254
2329
|
background-color: #c7c7c7;
|
|
3255
2330
|
}
|
|
3256
|
-
.bg-
|
|
2331
|
+
.bg-grey-lg-600 {
|
|
3257
2332
|
background-color: #bbbbbb;
|
|
3258
2333
|
}
|
|
3259
|
-
.bg-
|
|
2334
|
+
.bg-grey-lg-700 {
|
|
3260
2335
|
background-color: #b0b0b0;
|
|
3261
2336
|
}
|
|
3262
|
-
.bg-
|
|
2337
|
+
.bg-grey-lg-800 {
|
|
3263
2338
|
background-color: #a4a4a4;
|
|
3264
2339
|
}
|
|
3265
|
-
.bg-
|
|
2340
|
+
.bg-grey-lg-900 {
|
|
3266
2341
|
background-color: #999999;
|
|
3267
2342
|
}
|
|
3268
2343
|
|
|
@@ -3568,47 +2643,47 @@
|
|
|
3568
2643
|
/**
|
|
3569
2644
|
bg-themed ?
|
|
3570
2645
|
*/
|
|
3571
|
-
.bg-themed-
|
|
2646
|
+
.bg-themed-grey-lg-100 {
|
|
3572
2647
|
color: black;
|
|
3573
2648
|
text-shadow: 0 0 0.125rem #dbdbdb;
|
|
3574
2649
|
background-color: #f4f4f4;
|
|
3575
2650
|
}
|
|
3576
|
-
.bg-themed-
|
|
2651
|
+
.bg-themed-grey-lg-200 {
|
|
3577
2652
|
color: black;
|
|
3578
2653
|
text-shadow: 0 0 0.125rem #d0d0d0;
|
|
3579
2654
|
background-color: #e9e9e9;
|
|
3580
2655
|
}
|
|
3581
|
-
.bg-themed-
|
|
2656
|
+
.bg-themed-grey-lg-300 {
|
|
3582
2657
|
color: black;
|
|
3583
2658
|
text-shadow: 0 0 0.125rem #c4c4c4;
|
|
3584
2659
|
background-color: #dddddd;
|
|
3585
2660
|
}
|
|
3586
|
-
.bg-themed-
|
|
2661
|
+
.bg-themed-grey-lg-400 {
|
|
3587
2662
|
color: black;
|
|
3588
2663
|
text-shadow: 0 0 0.125rem #b9b9b9;
|
|
3589
2664
|
background-color: #d2d2d2;
|
|
3590
2665
|
}
|
|
3591
|
-
.bg-themed-
|
|
2666
|
+
.bg-themed-grey-lg-500 {
|
|
3592
2667
|
color: black;
|
|
3593
2668
|
text-shadow: 0 0 0.125rem #aeaeae;
|
|
3594
2669
|
background-color: #c7c7c7;
|
|
3595
2670
|
}
|
|
3596
|
-
.bg-themed-
|
|
2671
|
+
.bg-themed-grey-lg-600 {
|
|
3597
2672
|
color: black;
|
|
3598
2673
|
text-shadow: 0 0 0.125rem #a2a2a2;
|
|
3599
2674
|
background-color: #bbbbbb;
|
|
3600
2675
|
}
|
|
3601
|
-
.bg-themed-
|
|
2676
|
+
.bg-themed-grey-lg-700 {
|
|
3602
2677
|
color: black;
|
|
3603
2678
|
text-shadow: 0 0 0.125rem #979797;
|
|
3604
2679
|
background-color: #b0b0b0;
|
|
3605
2680
|
}
|
|
3606
|
-
.bg-themed-
|
|
2681
|
+
.bg-themed-grey-lg-800 {
|
|
3607
2682
|
color: black;
|
|
3608
2683
|
text-shadow: 0 0 0.125rem #8b8b8b;
|
|
3609
2684
|
background-color: #a4a4a4;
|
|
3610
2685
|
}
|
|
3611
|
-
.bg-themed-
|
|
2686
|
+
.bg-themed-grey-lg-900 {
|
|
3612
2687
|
color: black;
|
|
3613
2688
|
text-shadow: 0 0 0.125rem gray;
|
|
3614
2689
|
background-color: #999999;
|
|
@@ -3670,35 +2745,35 @@
|
|
|
3670
2745
|
/**
|
|
3671
2746
|
border-color ?
|
|
3672
2747
|
*/
|
|
3673
|
-
.border-color-
|
|
2748
|
+
.border-color-grey-lg-100 {
|
|
3674
2749
|
border-color: #dbdbdb !important;
|
|
3675
2750
|
}
|
|
3676
|
-
.border-color-
|
|
2751
|
+
.border-color-grey-lg-200 {
|
|
3677
2752
|
border-color: #d0d0d0 !important;
|
|
3678
2753
|
}
|
|
3679
|
-
.border-color-
|
|
2754
|
+
.border-color-grey-lg-300 {
|
|
3680
2755
|
border-color: #c4c4c4 !important;
|
|
3681
2756
|
}
|
|
3682
|
-
.border-color-
|
|
2757
|
+
.border-color-grey-lg-400 {
|
|
3683
2758
|
border-color: #b9b9b9 !important;
|
|
3684
2759
|
}
|
|
3685
|
-
.border-color-
|
|
2760
|
+
.border-color-grey-lg-500 {
|
|
3686
2761
|
border-color: #aeaeae !important;
|
|
3687
2762
|
}
|
|
3688
|
-
.border-color-
|
|
2763
|
+
.border-color-grey-lg-600 {
|
|
3689
2764
|
border-color: #a2a2a2 !important;
|
|
3690
2765
|
}
|
|
3691
|
-
.border-color-
|
|
2766
|
+
.border-color-grey-lg-700 {
|
|
3692
2767
|
border-color: #979797 !important;
|
|
3693
2768
|
}
|
|
3694
|
-
.border-color-
|
|
2769
|
+
.border-color-grey-lg-800 {
|
|
3695
2770
|
border-color: #8b8b8b !important;
|
|
3696
2771
|
}
|
|
3697
|
-
.border-color-
|
|
2772
|
+
.border-color-grey-lg-900 {
|
|
3698
2773
|
border-color: gray !important;
|
|
3699
2774
|
}
|
|
3700
2775
|
}
|
|
3701
|
-
@media only screen and (max-width:
|
|
2776
|
+
@media only screen and (max-width: 760px) {
|
|
3702
2777
|
/**
|
|
3703
2778
|
color ?
|
|
3704
2779
|
*/
|
|
@@ -3917,31 +2992,31 @@
|
|
|
3917
2992
|
/**
|
|
3918
2993
|
color ?
|
|
3919
2994
|
*/
|
|
3920
|
-
.color-
|
|
2995
|
+
.color-grey-md-100 {
|
|
3921
2996
|
color: #f4f4f4;
|
|
3922
2997
|
}
|
|
3923
|
-
.color-
|
|
2998
|
+
.color-grey-md-200 {
|
|
3924
2999
|
color: #e9e9e9;
|
|
3925
3000
|
}
|
|
3926
|
-
.color-
|
|
3001
|
+
.color-grey-md-300 {
|
|
3927
3002
|
color: #dddddd;
|
|
3928
3003
|
}
|
|
3929
|
-
.color-
|
|
3004
|
+
.color-grey-md-400 {
|
|
3930
3005
|
color: #d2d2d2;
|
|
3931
3006
|
}
|
|
3932
|
-
.color-
|
|
3007
|
+
.color-grey-md-500 {
|
|
3933
3008
|
color: #c7c7c7;
|
|
3934
3009
|
}
|
|
3935
|
-
.color-
|
|
3010
|
+
.color-grey-md-600 {
|
|
3936
3011
|
color: #bbbbbb;
|
|
3937
3012
|
}
|
|
3938
|
-
.color-
|
|
3013
|
+
.color-grey-md-700 {
|
|
3939
3014
|
color: #b0b0b0;
|
|
3940
3015
|
}
|
|
3941
|
-
.color-
|
|
3016
|
+
.color-grey-md-800 {
|
|
3942
3017
|
color: #a4a4a4;
|
|
3943
3018
|
}
|
|
3944
|
-
.color-
|
|
3019
|
+
.color-grey-md-900 {
|
|
3945
3020
|
color: #999999;
|
|
3946
3021
|
}
|
|
3947
3022
|
|
|
@@ -4163,31 +3238,31 @@
|
|
|
4163
3238
|
/**
|
|
4164
3239
|
bg ?
|
|
4165
3240
|
*/
|
|
4166
|
-
.bg-
|
|
3241
|
+
.bg-grey-md-100 {
|
|
4167
3242
|
background-color: #f4f4f4;
|
|
4168
3243
|
}
|
|
4169
|
-
.bg-
|
|
3244
|
+
.bg-grey-md-200 {
|
|
4170
3245
|
background-color: #e9e9e9;
|
|
4171
3246
|
}
|
|
4172
|
-
.bg-
|
|
3247
|
+
.bg-grey-md-300 {
|
|
4173
3248
|
background-color: #dddddd;
|
|
4174
3249
|
}
|
|
4175
|
-
.bg-
|
|
3250
|
+
.bg-grey-md-400 {
|
|
4176
3251
|
background-color: #d2d2d2;
|
|
4177
3252
|
}
|
|
4178
|
-
.bg-
|
|
3253
|
+
.bg-grey-md-500 {
|
|
4179
3254
|
background-color: #c7c7c7;
|
|
4180
3255
|
}
|
|
4181
|
-
.bg-
|
|
3256
|
+
.bg-grey-md-600 {
|
|
4182
3257
|
background-color: #bbbbbb;
|
|
4183
3258
|
}
|
|
4184
|
-
.bg-
|
|
3259
|
+
.bg-grey-md-700 {
|
|
4185
3260
|
background-color: #b0b0b0;
|
|
4186
3261
|
}
|
|
4187
|
-
.bg-
|
|
3262
|
+
.bg-grey-md-800 {
|
|
4188
3263
|
background-color: #a4a4a4;
|
|
4189
3264
|
}
|
|
4190
|
-
.bg-
|
|
3265
|
+
.bg-grey-md-900 {
|
|
4191
3266
|
background-color: #999999;
|
|
4192
3267
|
}
|
|
4193
3268
|
|
|
@@ -4493,47 +3568,47 @@
|
|
|
4493
3568
|
/**
|
|
4494
3569
|
bg-themed ?
|
|
4495
3570
|
*/
|
|
4496
|
-
.bg-themed-
|
|
3571
|
+
.bg-themed-grey-md-100 {
|
|
4497
3572
|
color: black;
|
|
4498
3573
|
text-shadow: 0 0 0.125rem #dbdbdb;
|
|
4499
3574
|
background-color: #f4f4f4;
|
|
4500
3575
|
}
|
|
4501
|
-
.bg-themed-
|
|
3576
|
+
.bg-themed-grey-md-200 {
|
|
4502
3577
|
color: black;
|
|
4503
3578
|
text-shadow: 0 0 0.125rem #d0d0d0;
|
|
4504
3579
|
background-color: #e9e9e9;
|
|
4505
3580
|
}
|
|
4506
|
-
.bg-themed-
|
|
3581
|
+
.bg-themed-grey-md-300 {
|
|
4507
3582
|
color: black;
|
|
4508
3583
|
text-shadow: 0 0 0.125rem #c4c4c4;
|
|
4509
3584
|
background-color: #dddddd;
|
|
4510
3585
|
}
|
|
4511
|
-
.bg-themed-
|
|
3586
|
+
.bg-themed-grey-md-400 {
|
|
4512
3587
|
color: black;
|
|
4513
3588
|
text-shadow: 0 0 0.125rem #b9b9b9;
|
|
4514
3589
|
background-color: #d2d2d2;
|
|
4515
3590
|
}
|
|
4516
|
-
.bg-themed-
|
|
3591
|
+
.bg-themed-grey-md-500 {
|
|
4517
3592
|
color: black;
|
|
4518
3593
|
text-shadow: 0 0 0.125rem #aeaeae;
|
|
4519
3594
|
background-color: #c7c7c7;
|
|
4520
3595
|
}
|
|
4521
|
-
.bg-themed-
|
|
3596
|
+
.bg-themed-grey-md-600 {
|
|
4522
3597
|
color: black;
|
|
4523
3598
|
text-shadow: 0 0 0.125rem #a2a2a2;
|
|
4524
3599
|
background-color: #bbbbbb;
|
|
4525
3600
|
}
|
|
4526
|
-
.bg-themed-
|
|
3601
|
+
.bg-themed-grey-md-700 {
|
|
4527
3602
|
color: black;
|
|
4528
3603
|
text-shadow: 0 0 0.125rem #979797;
|
|
4529
3604
|
background-color: #b0b0b0;
|
|
4530
3605
|
}
|
|
4531
|
-
.bg-themed-
|
|
3606
|
+
.bg-themed-grey-md-800 {
|
|
4532
3607
|
color: black;
|
|
4533
3608
|
text-shadow: 0 0 0.125rem #8b8b8b;
|
|
4534
3609
|
background-color: #a4a4a4;
|
|
4535
3610
|
}
|
|
4536
|
-
.bg-themed-
|
|
3611
|
+
.bg-themed-grey-md-900 {
|
|
4537
3612
|
color: black;
|
|
4538
3613
|
text-shadow: 0 0 0.125rem gray;
|
|
4539
3614
|
background-color: #999999;
|
|
@@ -4595,35 +3670,35 @@
|
|
|
4595
3670
|
/**
|
|
4596
3671
|
border-color ?
|
|
4597
3672
|
*/
|
|
4598
|
-
.border-color-
|
|
3673
|
+
.border-color-grey-md-100 {
|
|
4599
3674
|
border-color: #dbdbdb !important;
|
|
4600
3675
|
}
|
|
4601
|
-
.border-color-
|
|
3676
|
+
.border-color-grey-md-200 {
|
|
4602
3677
|
border-color: #d0d0d0 !important;
|
|
4603
3678
|
}
|
|
4604
|
-
.border-color-
|
|
3679
|
+
.border-color-grey-md-300 {
|
|
4605
3680
|
border-color: #c4c4c4 !important;
|
|
4606
3681
|
}
|
|
4607
|
-
.border-color-
|
|
3682
|
+
.border-color-grey-md-400 {
|
|
4608
3683
|
border-color: #b9b9b9 !important;
|
|
4609
3684
|
}
|
|
4610
|
-
.border-color-
|
|
3685
|
+
.border-color-grey-md-500 {
|
|
4611
3686
|
border-color: #aeaeae !important;
|
|
4612
3687
|
}
|
|
4613
|
-
.border-color-
|
|
3688
|
+
.border-color-grey-md-600 {
|
|
4614
3689
|
border-color: #a2a2a2 !important;
|
|
4615
3690
|
}
|
|
4616
|
-
.border-color-
|
|
3691
|
+
.border-color-grey-md-700 {
|
|
4617
3692
|
border-color: #979797 !important;
|
|
4618
3693
|
}
|
|
4619
|
-
.border-color-
|
|
3694
|
+
.border-color-grey-md-800 {
|
|
4620
3695
|
border-color: #8b8b8b !important;
|
|
4621
3696
|
}
|
|
4622
|
-
.border-color-
|
|
3697
|
+
.border-color-grey-md-900 {
|
|
4623
3698
|
border-color: gray !important;
|
|
4624
3699
|
}
|
|
4625
3700
|
}
|
|
4626
|
-
@media only screen and (max-width:
|
|
3701
|
+
@media only screen and (max-width: 0px) {
|
|
4627
3702
|
/**
|
|
4628
3703
|
color ?
|
|
4629
3704
|
*/
|
|
@@ -4842,31 +3917,31 @@
|
|
|
4842
3917
|
/**
|
|
4843
3918
|
color ?
|
|
4844
3919
|
*/
|
|
4845
|
-
.color-
|
|
3920
|
+
.color-grey-sm-100 {
|
|
4846
3921
|
color: #f4f4f4;
|
|
4847
3922
|
}
|
|
4848
|
-
.color-
|
|
3923
|
+
.color-grey-sm-200 {
|
|
4849
3924
|
color: #e9e9e9;
|
|
4850
3925
|
}
|
|
4851
|
-
.color-
|
|
3926
|
+
.color-grey-sm-300 {
|
|
4852
3927
|
color: #dddddd;
|
|
4853
3928
|
}
|
|
4854
|
-
.color-
|
|
3929
|
+
.color-grey-sm-400 {
|
|
4855
3930
|
color: #d2d2d2;
|
|
4856
3931
|
}
|
|
4857
|
-
.color-
|
|
3932
|
+
.color-grey-sm-500 {
|
|
4858
3933
|
color: #c7c7c7;
|
|
4859
3934
|
}
|
|
4860
|
-
.color-
|
|
3935
|
+
.color-grey-sm-600 {
|
|
4861
3936
|
color: #bbbbbb;
|
|
4862
3937
|
}
|
|
4863
|
-
.color-
|
|
3938
|
+
.color-grey-sm-700 {
|
|
4864
3939
|
color: #b0b0b0;
|
|
4865
3940
|
}
|
|
4866
|
-
.color-
|
|
3941
|
+
.color-grey-sm-800 {
|
|
4867
3942
|
color: #a4a4a4;
|
|
4868
3943
|
}
|
|
4869
|
-
.color-
|
|
3944
|
+
.color-grey-sm-900 {
|
|
4870
3945
|
color: #999999;
|
|
4871
3946
|
}
|
|
4872
3947
|
|
|
@@ -5088,31 +4163,31 @@
|
|
|
5088
4163
|
/**
|
|
5089
4164
|
bg ?
|
|
5090
4165
|
*/
|
|
5091
|
-
.bg-
|
|
4166
|
+
.bg-grey-sm-100 {
|
|
5092
4167
|
background-color: #f4f4f4;
|
|
5093
4168
|
}
|
|
5094
|
-
.bg-
|
|
4169
|
+
.bg-grey-sm-200 {
|
|
5095
4170
|
background-color: #e9e9e9;
|
|
5096
4171
|
}
|
|
5097
|
-
.bg-
|
|
4172
|
+
.bg-grey-sm-300 {
|
|
5098
4173
|
background-color: #dddddd;
|
|
5099
4174
|
}
|
|
5100
|
-
.bg-
|
|
4175
|
+
.bg-grey-sm-400 {
|
|
5101
4176
|
background-color: #d2d2d2;
|
|
5102
4177
|
}
|
|
5103
|
-
.bg-
|
|
4178
|
+
.bg-grey-sm-500 {
|
|
5104
4179
|
background-color: #c7c7c7;
|
|
5105
4180
|
}
|
|
5106
|
-
.bg-
|
|
4181
|
+
.bg-grey-sm-600 {
|
|
5107
4182
|
background-color: #bbbbbb;
|
|
5108
4183
|
}
|
|
5109
|
-
.bg-
|
|
4184
|
+
.bg-grey-sm-700 {
|
|
5110
4185
|
background-color: #b0b0b0;
|
|
5111
4186
|
}
|
|
5112
|
-
.bg-
|
|
4187
|
+
.bg-grey-sm-800 {
|
|
5113
4188
|
background-color: #a4a4a4;
|
|
5114
4189
|
}
|
|
5115
|
-
.bg-
|
|
4190
|
+
.bg-grey-sm-900 {
|
|
5116
4191
|
background-color: #999999;
|
|
5117
4192
|
}
|
|
5118
4193
|
|
|
@@ -5418,47 +4493,47 @@
|
|
|
5418
4493
|
/**
|
|
5419
4494
|
bg-themed ?
|
|
5420
4495
|
*/
|
|
5421
|
-
.bg-themed-
|
|
4496
|
+
.bg-themed-grey-sm-100 {
|
|
5422
4497
|
color: black;
|
|
5423
4498
|
text-shadow: 0 0 0.125rem #dbdbdb;
|
|
5424
4499
|
background-color: #f4f4f4;
|
|
5425
4500
|
}
|
|
5426
|
-
.bg-themed-
|
|
4501
|
+
.bg-themed-grey-sm-200 {
|
|
5427
4502
|
color: black;
|
|
5428
4503
|
text-shadow: 0 0 0.125rem #d0d0d0;
|
|
5429
4504
|
background-color: #e9e9e9;
|
|
5430
4505
|
}
|
|
5431
|
-
.bg-themed-
|
|
4506
|
+
.bg-themed-grey-sm-300 {
|
|
5432
4507
|
color: black;
|
|
5433
4508
|
text-shadow: 0 0 0.125rem #c4c4c4;
|
|
5434
4509
|
background-color: #dddddd;
|
|
5435
4510
|
}
|
|
5436
|
-
.bg-themed-
|
|
4511
|
+
.bg-themed-grey-sm-400 {
|
|
5437
4512
|
color: black;
|
|
5438
4513
|
text-shadow: 0 0 0.125rem #b9b9b9;
|
|
5439
4514
|
background-color: #d2d2d2;
|
|
5440
4515
|
}
|
|
5441
|
-
.bg-themed-
|
|
4516
|
+
.bg-themed-grey-sm-500 {
|
|
5442
4517
|
color: black;
|
|
5443
4518
|
text-shadow: 0 0 0.125rem #aeaeae;
|
|
5444
4519
|
background-color: #c7c7c7;
|
|
5445
4520
|
}
|
|
5446
|
-
.bg-themed-
|
|
4521
|
+
.bg-themed-grey-sm-600 {
|
|
5447
4522
|
color: black;
|
|
5448
4523
|
text-shadow: 0 0 0.125rem #a2a2a2;
|
|
5449
4524
|
background-color: #bbbbbb;
|
|
5450
4525
|
}
|
|
5451
|
-
.bg-themed-
|
|
4526
|
+
.bg-themed-grey-sm-700 {
|
|
5452
4527
|
color: black;
|
|
5453
4528
|
text-shadow: 0 0 0.125rem #979797;
|
|
5454
4529
|
background-color: #b0b0b0;
|
|
5455
4530
|
}
|
|
5456
|
-
.bg-themed-
|
|
4531
|
+
.bg-themed-grey-sm-800 {
|
|
5457
4532
|
color: black;
|
|
5458
4533
|
text-shadow: 0 0 0.125rem #8b8b8b;
|
|
5459
4534
|
background-color: #a4a4a4;
|
|
5460
4535
|
}
|
|
5461
|
-
.bg-themed-
|
|
4536
|
+
.bg-themed-grey-sm-900 {
|
|
5462
4537
|
color: black;
|
|
5463
4538
|
text-shadow: 0 0 0.125rem gray;
|
|
5464
4539
|
background-color: #999999;
|
|
@@ -5520,31 +4595,31 @@
|
|
|
5520
4595
|
/**
|
|
5521
4596
|
border-color ?
|
|
5522
4597
|
*/
|
|
5523
|
-
.border-color-
|
|
4598
|
+
.border-color-grey-sm-100 {
|
|
5524
4599
|
border-color: #dbdbdb !important;
|
|
5525
4600
|
}
|
|
5526
|
-
.border-color-
|
|
4601
|
+
.border-color-grey-sm-200 {
|
|
5527
4602
|
border-color: #d0d0d0 !important;
|
|
5528
4603
|
}
|
|
5529
|
-
.border-color-
|
|
4604
|
+
.border-color-grey-sm-300 {
|
|
5530
4605
|
border-color: #c4c4c4 !important;
|
|
5531
4606
|
}
|
|
5532
|
-
.border-color-
|
|
4607
|
+
.border-color-grey-sm-400 {
|
|
5533
4608
|
border-color: #b9b9b9 !important;
|
|
5534
4609
|
}
|
|
5535
|
-
.border-color-
|
|
4610
|
+
.border-color-grey-sm-500 {
|
|
5536
4611
|
border-color: #aeaeae !important;
|
|
5537
4612
|
}
|
|
5538
|
-
.border-color-
|
|
4613
|
+
.border-color-grey-sm-600 {
|
|
5539
4614
|
border-color: #a2a2a2 !important;
|
|
5540
4615
|
}
|
|
5541
|
-
.border-color-
|
|
4616
|
+
.border-color-grey-sm-700 {
|
|
5542
4617
|
border-color: #979797 !important;
|
|
5543
4618
|
}
|
|
5544
|
-
.border-color-
|
|
4619
|
+
.border-color-grey-sm-800 {
|
|
5545
4620
|
border-color: #8b8b8b !important;
|
|
5546
4621
|
}
|
|
5547
|
-
.border-color-
|
|
4622
|
+
.border-color-grey-sm-900 {
|
|
5548
4623
|
border-color: gray !important;
|
|
5549
4624
|
}
|
|
5550
4625
|
}
|