@symphony-talent/component-library 3.0.0 → 3.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/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +4 -4
- package/esm2020/lib/templates/setting-list-template/setting-list-template.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +4 -4
- package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.mjs +3 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +4 -4
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +4 -4
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +4 -4
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +4 -4
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/package.json +1 -1
- package/projects/component-library/global-assets/iconography/{fonts/iconography.eot → library-fonts/library-icons.eot} +0 -0
- package/projects/component-library/global-assets/iconography/{fonts/iconography.svg → library-fonts/library-icons.svg} +0 -0
- package/projects/component-library/global-assets/iconography/{fonts/iconography.ttf → library-fonts/library-icons.ttf} +0 -0
- package/projects/component-library/global-assets/iconography/{fonts/iconography.woff → library-fonts/library-icons.woff} +0 -0
- package/projects/component-library/global-assets/iconography/{iconography.css → library-icons.css} +5 -5
- package/projects/component-library/global.scss +478 -476
|
@@ -117,7 +117,7 @@ $space-40: 2.5rem;
|
|
|
117
117
|
$space-50: 3.125rem;
|
|
118
118
|
$space-75: 4.688rem;
|
|
119
119
|
// Iconography
|
|
120
|
-
@import "global-assets/iconography/
|
|
120
|
+
@import "global-assets/iconography/library-icons.css";
|
|
121
121
|
// End Iconography
|
|
122
122
|
@import "node_modules/ag-grid-community/src/styles/ag-grid.scss";
|
|
123
123
|
@import "node_modules/ag-grid-community/src/styles/ag-theme-alpine/sass/ag-theme-alpine-mixin.scss";
|
|
@@ -131,483 +131,485 @@ body {
|
|
|
131
131
|
overflow-x: hidden;
|
|
132
132
|
background: $color-white;
|
|
133
133
|
color: $color-black;
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
134
|
+
.sfx {
|
|
135
|
+
a {
|
|
136
|
+
font-size: $font-14;
|
|
137
|
+
color: $color-st-link;
|
|
138
|
+
text-decoration: none;
|
|
139
|
+
&:hover {
|
|
140
|
+
-webkit-transition: 0.3s ease-in-out;
|
|
141
|
+
-moz-transition: 0.3s ease-in-out;
|
|
142
|
+
-o-transition: 0.3s ease-in-out;
|
|
143
|
+
transition: 0.3s ease-in-out;
|
|
144
|
+
outline: 0 !important;
|
|
145
|
+
}
|
|
144
146
|
}
|
|
147
|
+
p {
|
|
148
|
+
font-size: $font-14;
|
|
149
|
+
font-family: $font-reg;
|
|
150
|
+
}
|
|
151
|
+
h5 {
|
|
152
|
+
font-size: $font-14;
|
|
153
|
+
font-family: $font-bold;
|
|
154
|
+
}
|
|
155
|
+
h4 {
|
|
156
|
+
font-size: $font-24;
|
|
157
|
+
font-family: $font-bold;
|
|
158
|
+
}
|
|
159
|
+
h3 {
|
|
160
|
+
font-size: $font-30;
|
|
161
|
+
font-family: $font-bold;
|
|
162
|
+
}
|
|
163
|
+
h2 {
|
|
164
|
+
font-size: $font-46;
|
|
165
|
+
font-family: $font-black;
|
|
166
|
+
}
|
|
167
|
+
h1 {
|
|
168
|
+
font-size: $font-56;
|
|
169
|
+
font-family: $font-black;
|
|
170
|
+
}
|
|
171
|
+
// End Typography
|
|
172
|
+
// Utilities
|
|
173
|
+
// Fonts
|
|
174
|
+
.sfx-font12 {
|
|
175
|
+
font-size: $font-12;
|
|
176
|
+
}
|
|
177
|
+
.sfx-font14 {
|
|
178
|
+
font-size: $font-14;
|
|
179
|
+
}
|
|
180
|
+
.sfx-font18 {
|
|
181
|
+
font-size: $font-18;
|
|
182
|
+
}
|
|
183
|
+
.sfx-font24 {
|
|
184
|
+
font-size: $font-24;
|
|
185
|
+
}
|
|
186
|
+
.sfx-font30 {
|
|
187
|
+
font-size: $font-30;
|
|
188
|
+
}
|
|
189
|
+
.sfx-font-40 {
|
|
190
|
+
font-size: $font-40;
|
|
191
|
+
}
|
|
192
|
+
.sfx-font46 {
|
|
193
|
+
font-size: $font-46;
|
|
194
|
+
}
|
|
195
|
+
.sfx-font56 {
|
|
196
|
+
font-size: $font-56;
|
|
197
|
+
}
|
|
198
|
+
.sfx-font400 {
|
|
199
|
+
font-weight: 400;
|
|
200
|
+
}
|
|
201
|
+
.sfx-font600 {
|
|
202
|
+
font-weight: 600;
|
|
203
|
+
}
|
|
204
|
+
.sfx-font700 {
|
|
205
|
+
font-weight: 600;
|
|
206
|
+
}
|
|
207
|
+
.sfx-font-light {
|
|
208
|
+
font-family: $font-light;
|
|
209
|
+
}
|
|
210
|
+
.sfx-font-bold {
|
|
211
|
+
font-family: $font-bold;
|
|
212
|
+
}
|
|
213
|
+
.sfx-font-black {
|
|
214
|
+
font-family: $font-black;
|
|
215
|
+
}
|
|
216
|
+
// End Fonts
|
|
217
|
+
// Color
|
|
218
|
+
.sfx-txt-white {
|
|
219
|
+
color: $color-white;
|
|
220
|
+
}
|
|
221
|
+
.sfx-txt-black {
|
|
222
|
+
color: $color-black;
|
|
223
|
+
}
|
|
224
|
+
.sfx-txt-mdm-black {
|
|
225
|
+
color: $color-mdm-black;
|
|
226
|
+
}
|
|
227
|
+
.sfx-txt-gray {
|
|
228
|
+
color: $color-gray;
|
|
229
|
+
}
|
|
230
|
+
.sfx-txt-light-gray {
|
|
231
|
+
color: $color-light-gray;
|
|
232
|
+
}
|
|
233
|
+
.sfx-txt-light-gray2 {
|
|
234
|
+
color: $color-light-gray2;
|
|
235
|
+
}
|
|
236
|
+
.sfx-txt-fuchsia {
|
|
237
|
+
color: $color-st-fuchsia;
|
|
238
|
+
}
|
|
239
|
+
.sfx-txt-purple {
|
|
240
|
+
color: $color-purple;
|
|
241
|
+
}
|
|
242
|
+
.sfx-txt-pink {
|
|
243
|
+
color: $color-pink;
|
|
244
|
+
}
|
|
245
|
+
.sfx-txt-turq {
|
|
246
|
+
color: $color-turquoise;
|
|
247
|
+
}
|
|
248
|
+
.sfx-txt-blue {
|
|
249
|
+
color: $color-blue;
|
|
250
|
+
}
|
|
251
|
+
.sfx-txt-green {
|
|
252
|
+
color: $color-green;
|
|
253
|
+
}
|
|
254
|
+
.sfx-txt-orange {
|
|
255
|
+
color: $color-orange;
|
|
256
|
+
}
|
|
257
|
+
.sfx-txt-yellow {
|
|
258
|
+
color: $color-yellow;
|
|
259
|
+
}
|
|
260
|
+
.sfx-txt-red {
|
|
261
|
+
color: $color-red;
|
|
262
|
+
}
|
|
263
|
+
.sfx-link {
|
|
264
|
+
color: $color-st-link;
|
|
265
|
+
}
|
|
266
|
+
// Background Color
|
|
267
|
+
.sfx-bg-black {
|
|
268
|
+
background: $color-black;
|
|
269
|
+
}
|
|
270
|
+
.sfx-bg-white {
|
|
271
|
+
background: $color-white;
|
|
272
|
+
}
|
|
273
|
+
// End Background Color
|
|
274
|
+
// End Color
|
|
275
|
+
|
|
276
|
+
// Padding
|
|
277
|
+
.sfx-p-0 {
|
|
278
|
+
padding: $space-0;
|
|
279
|
+
}
|
|
280
|
+
.sfx-p-5 {
|
|
281
|
+
padding: $space-5;
|
|
282
|
+
}
|
|
283
|
+
.sfx-p-10 {
|
|
284
|
+
padding: $space-10;
|
|
285
|
+
}
|
|
286
|
+
.sfx-p-15 {
|
|
287
|
+
padding: $space-15;
|
|
288
|
+
}
|
|
289
|
+
.sfx-p-20 {
|
|
290
|
+
padding: $space-20;
|
|
291
|
+
}
|
|
292
|
+
// End Padding
|
|
293
|
+
// Padding top
|
|
294
|
+
.sfx-pt-0 {
|
|
295
|
+
padding-top: $space-0;
|
|
296
|
+
}
|
|
297
|
+
.sfx-pt-5 {
|
|
298
|
+
padding-top: $space-5;
|
|
299
|
+
}
|
|
300
|
+
.sfx-pt-10 {
|
|
301
|
+
padding-top: $space-10;
|
|
302
|
+
}
|
|
303
|
+
.sfx-pt-15 {
|
|
304
|
+
padding-top: $space-15;
|
|
305
|
+
}
|
|
306
|
+
.sfx-pt-20 {
|
|
307
|
+
padding-top: $space-20;
|
|
308
|
+
}
|
|
309
|
+
.sfx-pt-25 {
|
|
310
|
+
padding-top: $space-25;
|
|
311
|
+
}
|
|
312
|
+
.sfx-pt-30 {
|
|
313
|
+
padding-top: $space-30;
|
|
314
|
+
}
|
|
315
|
+
.sfx-pt-40 {
|
|
316
|
+
padding-top: $space-40;
|
|
317
|
+
}
|
|
318
|
+
.sfx-pt-50 {
|
|
319
|
+
padding-top: $space-50;
|
|
320
|
+
}
|
|
321
|
+
// End Padding top
|
|
322
|
+
// Padding bottom
|
|
323
|
+
.sfx-pb-0 {
|
|
324
|
+
padding-bottom: $space-0;
|
|
325
|
+
}
|
|
326
|
+
.sfx-pb-5 {
|
|
327
|
+
padding-bottom: $space-5;
|
|
328
|
+
}
|
|
329
|
+
.sfx-pb-10 {
|
|
330
|
+
padding-bottom: $space-10;
|
|
331
|
+
}
|
|
332
|
+
.sfx-pb-15 {
|
|
333
|
+
padding-bottom: $space-15;
|
|
334
|
+
}
|
|
335
|
+
.sfx-pb-20 {
|
|
336
|
+
padding-bottom: $space-20;
|
|
337
|
+
}
|
|
338
|
+
.sfx-pb-25 {
|
|
339
|
+
padding-bottom: $space-25;
|
|
340
|
+
}
|
|
341
|
+
.sfx-pb-30 {
|
|
342
|
+
padding-bottom: $space-30;
|
|
343
|
+
}
|
|
344
|
+
.sfx-pb-40 {
|
|
345
|
+
padding-bottom: $space-40;
|
|
346
|
+
}
|
|
347
|
+
.sfx-pb-50 {
|
|
348
|
+
padding-bottom: $space-50;
|
|
349
|
+
}
|
|
350
|
+
// End Padding bottom
|
|
351
|
+
// Padding left
|
|
352
|
+
.sfx-pl-0 {
|
|
353
|
+
padding-left: $space-0;
|
|
354
|
+
}
|
|
355
|
+
.sfx-pl-5 {
|
|
356
|
+
padding-left: $space-5;
|
|
357
|
+
}
|
|
358
|
+
.sfx-pl-10 {
|
|
359
|
+
padding-left: $space-10;
|
|
360
|
+
}
|
|
361
|
+
.sfx-pl-15 {
|
|
362
|
+
padding-left: $space-15;
|
|
363
|
+
}
|
|
364
|
+
.sfx-pl-20 {
|
|
365
|
+
padding-left: $space-20;
|
|
366
|
+
}
|
|
367
|
+
.sfx-pl-25 {
|
|
368
|
+
padding-left: $space-25;
|
|
369
|
+
}
|
|
370
|
+
.sfx-pl-30 {
|
|
371
|
+
padding-left: $space-30;
|
|
372
|
+
}
|
|
373
|
+
// End Padding left
|
|
374
|
+
// Padding right
|
|
375
|
+
.sfx-pr-0 {
|
|
376
|
+
padding-right: $space-0;
|
|
377
|
+
}
|
|
378
|
+
.sfx-pr-5 {
|
|
379
|
+
padding-right: $space-5;
|
|
380
|
+
}
|
|
381
|
+
.sfx-pr-10 {
|
|
382
|
+
padding-right: $space-10;
|
|
383
|
+
}
|
|
384
|
+
.sfx-pr-15 {
|
|
385
|
+
padding-right: $space-15;
|
|
386
|
+
}
|
|
387
|
+
.sfx-pr-20 {
|
|
388
|
+
padding-right: $space-20;
|
|
389
|
+
}
|
|
390
|
+
.sfx-pr-25 {
|
|
391
|
+
padding-right: $space-25;
|
|
392
|
+
}
|
|
393
|
+
.sfx-pr-30 {
|
|
394
|
+
padding-right: $space-30;
|
|
395
|
+
}
|
|
396
|
+
// End Padding right
|
|
397
|
+
// Margin
|
|
398
|
+
.sfx-m-0 {
|
|
399
|
+
margin: $space-0;
|
|
400
|
+
}
|
|
401
|
+
.sfx-m-5 {
|
|
402
|
+
margin: $space-5;
|
|
403
|
+
}
|
|
404
|
+
.sfx-m-10 {
|
|
405
|
+
margin: $space-10;
|
|
406
|
+
}
|
|
407
|
+
.sfx-m-15 {
|
|
408
|
+
margin: $space-15;
|
|
409
|
+
}
|
|
410
|
+
.sfx-m-20 {
|
|
411
|
+
margin: $space-20;
|
|
412
|
+
}
|
|
413
|
+
.sfx-m-auto {
|
|
414
|
+
margin: 0 auto;
|
|
415
|
+
}
|
|
416
|
+
// End Margin
|
|
417
|
+
// Margin top
|
|
418
|
+
.sfx-mt-0 {
|
|
419
|
+
margin-top: $space-0;
|
|
420
|
+
}
|
|
421
|
+
.sfx-mt-5 {
|
|
422
|
+
margin-top: $space-5;
|
|
423
|
+
}
|
|
424
|
+
.sfx-mt-10 {
|
|
425
|
+
margin-top: $space-10;
|
|
426
|
+
}
|
|
427
|
+
.sfx-mt-15 {
|
|
428
|
+
margin-top: $space-15;
|
|
429
|
+
}
|
|
430
|
+
.sfx-mt-20 {
|
|
431
|
+
margin-top: $space-20;
|
|
432
|
+
}
|
|
433
|
+
.sfx-mt-25 {
|
|
434
|
+
margin-top: $space-25;
|
|
435
|
+
}
|
|
436
|
+
.sfx-mt-30 {
|
|
437
|
+
margin-top: $space-30;
|
|
438
|
+
}
|
|
439
|
+
.sfx-mt-40 {
|
|
440
|
+
margin-top: $space-40;
|
|
441
|
+
}
|
|
442
|
+
// End Margin top
|
|
443
|
+
// Margin bottom
|
|
444
|
+
.sfx-mb-0 {
|
|
445
|
+
margin-bottom: $space-0;
|
|
446
|
+
}
|
|
447
|
+
.sfx-mb-5 {
|
|
448
|
+
margin-bottom: $space-5;
|
|
449
|
+
}
|
|
450
|
+
.sfx-mb-10 {
|
|
451
|
+
margin-bottom: $space-10;
|
|
452
|
+
}
|
|
453
|
+
.sfx-mb-15 {
|
|
454
|
+
margin-bottom: $space-15;
|
|
455
|
+
}
|
|
456
|
+
.sfx-mb-20 {
|
|
457
|
+
margin-bottom: $space-20;
|
|
458
|
+
}
|
|
459
|
+
.sfx-mb-25 {
|
|
460
|
+
margin-bottom: $space-25;
|
|
461
|
+
}
|
|
462
|
+
.sfx-mb-30 {
|
|
463
|
+
margin-bottom: $space-30;
|
|
464
|
+
}
|
|
465
|
+
.sfx-mb-40 {
|
|
466
|
+
margin-bottom: $space-40;
|
|
467
|
+
}
|
|
468
|
+
// End Padding bottom
|
|
469
|
+
// Padding left
|
|
470
|
+
.sfx-ml-0 {
|
|
471
|
+
margin-left: $space-0;
|
|
472
|
+
}
|
|
473
|
+
.sfx-ml-5 {
|
|
474
|
+
margin-left: $space-5;
|
|
475
|
+
}
|
|
476
|
+
.sfx-ml-10 {
|
|
477
|
+
margin-left: $space-10;
|
|
478
|
+
}
|
|
479
|
+
.sfx-ml-15 {
|
|
480
|
+
margin-left: $space-15;
|
|
481
|
+
}
|
|
482
|
+
.sfx-ml-20 {
|
|
483
|
+
margin-left: $space-20;
|
|
484
|
+
}
|
|
485
|
+
.sfx-ml-auto {
|
|
486
|
+
margin-left: auto;
|
|
487
|
+
}
|
|
488
|
+
// End Paddimargin
|
|
489
|
+
// Padding right
|
|
490
|
+
.sfx-mr-0 {
|
|
491
|
+
margin-right: $space-0;
|
|
492
|
+
}
|
|
493
|
+
.sfx-mr-5 {
|
|
494
|
+
margin-right: $space-5;
|
|
495
|
+
}
|
|
496
|
+
.sfx-mr-10 {
|
|
497
|
+
margin-right: $space-10;
|
|
498
|
+
}
|
|
499
|
+
.sfx-mr-15 {
|
|
500
|
+
margin-right: $space-15;
|
|
501
|
+
}
|
|
502
|
+
.sfx-mr-20 {
|
|
503
|
+
margin-right: $space-20;
|
|
504
|
+
}
|
|
505
|
+
.sfx-mr-25 {
|
|
506
|
+
margin-right: $space-25;
|
|
507
|
+
}
|
|
508
|
+
.sfx-mr-30 {
|
|
509
|
+
margin-right: $space-30;
|
|
510
|
+
}
|
|
511
|
+
.sfx-mr-40 {
|
|
512
|
+
margin-right: $space-40;
|
|
513
|
+
}
|
|
514
|
+
// End Padding right
|
|
515
|
+
// End Spacing
|
|
516
|
+
// Border
|
|
517
|
+
.sfx-border-0 {
|
|
518
|
+
border: 0;
|
|
519
|
+
}
|
|
520
|
+
.sfx-border-top-0 {
|
|
521
|
+
border-top: 0;
|
|
522
|
+
}
|
|
523
|
+
.sfx-border-bottom-0 {
|
|
524
|
+
border-bottom: 0;
|
|
525
|
+
}
|
|
526
|
+
.sfx-border-left-0 {
|
|
527
|
+
border-left: 0;
|
|
528
|
+
}
|
|
529
|
+
.sfx-border-right-0 {
|
|
530
|
+
border-right: 0;
|
|
531
|
+
}
|
|
532
|
+
.sfx-border-gray-1 {
|
|
533
|
+
border: 1px solid $color-light-gray2;
|
|
534
|
+
}
|
|
535
|
+
.sfx-border-black-1 {
|
|
536
|
+
border: 1px solid $color-black;
|
|
537
|
+
}
|
|
538
|
+
.sfx-border-bottom-gray-1 {
|
|
539
|
+
border-bottom: 1px solid $color-light-gray2;
|
|
540
|
+
}
|
|
541
|
+
.sfx-border-bottom-black-1 {
|
|
542
|
+
border-bottom: 1px solid $color-black;
|
|
543
|
+
}
|
|
544
|
+
.sfx-border-bottom-mdm-black-1 {
|
|
545
|
+
border-bottom: 1px solid $color-mdm-black;
|
|
546
|
+
}
|
|
547
|
+
.sfx-border-bottom-black-5 {
|
|
548
|
+
border-bottom: 5px solid $color-black;
|
|
549
|
+
}
|
|
550
|
+
.sfx-border-bottom-white-5 {
|
|
551
|
+
border-bottom: 5px solid $color-white;
|
|
552
|
+
}
|
|
553
|
+
.sfx-border-top-gray-1 {
|
|
554
|
+
border-top: 1px solid $color-light-gray2;
|
|
555
|
+
}
|
|
556
|
+
.sfx-border-top-black-1 {
|
|
557
|
+
border-top: 1px solid $color-black;
|
|
558
|
+
}
|
|
559
|
+
.sfx-border-top-black-5 {
|
|
560
|
+
border-top: 5px solid $color-black;
|
|
561
|
+
}
|
|
562
|
+
.sfx-border-radius-0 {
|
|
563
|
+
border-radius: 0;
|
|
564
|
+
}
|
|
565
|
+
// End Border
|
|
566
|
+
// Display
|
|
567
|
+
.sfx-d-none {
|
|
568
|
+
display: none;
|
|
569
|
+
}
|
|
570
|
+
.sfx-d-block {
|
|
571
|
+
display: block;
|
|
572
|
+
}
|
|
573
|
+
.sfx-d-inline-block {
|
|
574
|
+
display: inline-block;
|
|
575
|
+
}
|
|
576
|
+
.sfx-d-flex {
|
|
577
|
+
display: flex;
|
|
578
|
+
}
|
|
579
|
+
.sfx-d-table {
|
|
580
|
+
display: table;
|
|
581
|
+
}
|
|
582
|
+
.sfx-d-grid {
|
|
583
|
+
display: grid;
|
|
584
|
+
}
|
|
585
|
+
// End Display
|
|
586
|
+
.sfx-wid-100 {
|
|
587
|
+
width: 100%;
|
|
588
|
+
}
|
|
589
|
+
.sfx-wid-100px {
|
|
590
|
+
width: 100px;
|
|
591
|
+
}
|
|
592
|
+
// Position
|
|
593
|
+
.sfx-position-relative {
|
|
594
|
+
position: relative;
|
|
595
|
+
}
|
|
596
|
+
.sfx-position-absolute {
|
|
597
|
+
position: absolute;
|
|
598
|
+
}
|
|
599
|
+
.sfx-position-fixed {
|
|
600
|
+
position: fixed;
|
|
601
|
+
}
|
|
602
|
+
.sfx-position-sticky {
|
|
603
|
+
position: sticky;
|
|
604
|
+
}
|
|
605
|
+
// End Position
|
|
606
|
+
// Helper Classes
|
|
607
|
+
.sfx-cursor-pointer {
|
|
608
|
+
cursor: pointer;
|
|
609
|
+
}
|
|
610
|
+
// End Helper Classes
|
|
611
|
+
// End Utilities
|
|
145
612
|
}
|
|
146
|
-
p {
|
|
147
|
-
font-size: $font-14;
|
|
148
|
-
font-family: $font-reg;
|
|
149
|
-
}
|
|
150
|
-
h5 {
|
|
151
|
-
font-size: $font-14;
|
|
152
|
-
font-family: $font-bold;
|
|
153
|
-
}
|
|
154
|
-
h4 {
|
|
155
|
-
font-size: $font-24;
|
|
156
|
-
font-family: $font-bold;
|
|
157
|
-
}
|
|
158
|
-
h3 {
|
|
159
|
-
font-size: $font-30;
|
|
160
|
-
font-family: $font-bold;
|
|
161
|
-
}
|
|
162
|
-
h2 {
|
|
163
|
-
font-size: $font-46;
|
|
164
|
-
font-family: $font-black;
|
|
165
|
-
}
|
|
166
|
-
h1 {
|
|
167
|
-
font-size: $font-56;
|
|
168
|
-
font-family: $font-black;
|
|
169
|
-
}
|
|
170
|
-
// End Typography
|
|
171
|
-
// Utilities
|
|
172
|
-
// Fonts
|
|
173
|
-
.sfx-font12 {
|
|
174
|
-
font-size: $font-12;
|
|
175
|
-
}
|
|
176
|
-
.sfx-font14 {
|
|
177
|
-
font-size: $font-14;
|
|
178
|
-
}
|
|
179
|
-
.sfx-font18 {
|
|
180
|
-
font-size: $font-18;
|
|
181
|
-
}
|
|
182
|
-
.sfx-font24 {
|
|
183
|
-
font-size: $font-24;
|
|
184
|
-
}
|
|
185
|
-
.sfx-font30 {
|
|
186
|
-
font-size: $font-30;
|
|
187
|
-
}
|
|
188
|
-
.sfx-font-40 {
|
|
189
|
-
font-size: $font-40;
|
|
190
|
-
}
|
|
191
|
-
.sfx-font46 {
|
|
192
|
-
font-size: $font-46;
|
|
193
|
-
}
|
|
194
|
-
.sfx-font56 {
|
|
195
|
-
font-size: $font-56;
|
|
196
|
-
}
|
|
197
|
-
.sfx-font400 {
|
|
198
|
-
font-weight: 400;
|
|
199
|
-
}
|
|
200
|
-
.sfx-font600 {
|
|
201
|
-
font-weight: 600;
|
|
202
|
-
}
|
|
203
|
-
.sfx-font700 {
|
|
204
|
-
font-weight: 600;
|
|
205
|
-
}
|
|
206
|
-
.sfx-font-light {
|
|
207
|
-
font-family: $font-light;
|
|
208
|
-
}
|
|
209
|
-
.sfx-font-bold {
|
|
210
|
-
font-family: $font-bold;
|
|
211
|
-
}
|
|
212
|
-
.sfx-font-black {
|
|
213
|
-
font-family: $font-black;
|
|
214
|
-
}
|
|
215
|
-
// End Fonts
|
|
216
|
-
// Color
|
|
217
|
-
.sfx-txt-white {
|
|
218
|
-
color: $color-white;
|
|
219
|
-
}
|
|
220
|
-
.sfx-txt-black {
|
|
221
|
-
color: $color-black;
|
|
222
|
-
}
|
|
223
|
-
.sfx-txt-mdm-black {
|
|
224
|
-
color: $color-mdm-black;
|
|
225
|
-
}
|
|
226
|
-
.sfx-txt-gray {
|
|
227
|
-
color: $color-gray;
|
|
228
|
-
}
|
|
229
|
-
.sfx-txt-light-gray {
|
|
230
|
-
color: $color-light-gray;
|
|
231
|
-
}
|
|
232
|
-
.sfx-txt-light-gray2 {
|
|
233
|
-
color: $color-light-gray2;
|
|
234
|
-
}
|
|
235
|
-
.sfx-txt-fuchsia {
|
|
236
|
-
color: $color-st-fuchsia;
|
|
237
|
-
}
|
|
238
|
-
.sfx-txt-purple {
|
|
239
|
-
color: $color-purple;
|
|
240
|
-
}
|
|
241
|
-
.sfx-txt-pink {
|
|
242
|
-
color: $color-pink;
|
|
243
|
-
}
|
|
244
|
-
.sfx-txt-turq {
|
|
245
|
-
color: $color-turquoise;
|
|
246
|
-
}
|
|
247
|
-
.sfx-txt-blue {
|
|
248
|
-
color: $color-blue;
|
|
249
|
-
}
|
|
250
|
-
.sfx-txt-green {
|
|
251
|
-
color: $color-green;
|
|
252
|
-
}
|
|
253
|
-
.sfx-txt-orange {
|
|
254
|
-
color: $color-orange;
|
|
255
|
-
}
|
|
256
|
-
.sfx-txt-yellow {
|
|
257
|
-
color: $color-yellow;
|
|
258
|
-
}
|
|
259
|
-
.sfx-txt-red {
|
|
260
|
-
color: $color-red;
|
|
261
|
-
}
|
|
262
|
-
.sfx-link {
|
|
263
|
-
color: $color-st-link;
|
|
264
|
-
}
|
|
265
|
-
// Background Color
|
|
266
|
-
.sfx-bg-black {
|
|
267
|
-
background: $color-black;
|
|
268
|
-
}
|
|
269
|
-
.sfx-bg-white {
|
|
270
|
-
background: $color-white;
|
|
271
|
-
}
|
|
272
|
-
// End Background Color
|
|
273
|
-
// End Color
|
|
274
|
-
|
|
275
|
-
// Padding
|
|
276
|
-
.sfx-p-0 {
|
|
277
|
-
padding: $space-0;
|
|
278
|
-
}
|
|
279
|
-
.sfx-p-5 {
|
|
280
|
-
padding: $space-5;
|
|
281
|
-
}
|
|
282
|
-
.sfx-p-10 {
|
|
283
|
-
padding: $space-10;
|
|
284
|
-
}
|
|
285
|
-
.sfx-p-15 {
|
|
286
|
-
padding: $space-15;
|
|
287
|
-
}
|
|
288
|
-
.sfx-p-20 {
|
|
289
|
-
padding: $space-20;
|
|
290
|
-
}
|
|
291
|
-
// End Padding
|
|
292
|
-
// Padding top
|
|
293
|
-
.sfx-pt-0 {
|
|
294
|
-
padding-top: $space-0;
|
|
295
|
-
}
|
|
296
|
-
.sfx-pt-5 {
|
|
297
|
-
padding-top: $space-5;
|
|
298
|
-
}
|
|
299
|
-
.sfx-pt-10 {
|
|
300
|
-
padding-top: $space-10;
|
|
301
|
-
}
|
|
302
|
-
.sfx-pt-15 {
|
|
303
|
-
padding-top: $space-15;
|
|
304
|
-
}
|
|
305
|
-
.sfx-pt-20 {
|
|
306
|
-
padding-top: $space-20;
|
|
307
|
-
}
|
|
308
|
-
.sfx-pt-25 {
|
|
309
|
-
padding-top: $space-25;
|
|
310
|
-
}
|
|
311
|
-
.sfx-pt-30 {
|
|
312
|
-
padding-top: $space-30;
|
|
313
|
-
}
|
|
314
|
-
.sfx-pt-40 {
|
|
315
|
-
padding-top: $space-40;
|
|
316
|
-
}
|
|
317
|
-
.sfx-pt-50 {
|
|
318
|
-
padding-top: $space-50;
|
|
319
|
-
}
|
|
320
|
-
// End Padding top
|
|
321
|
-
// Padding bottom
|
|
322
|
-
.sfx-pb-0 {
|
|
323
|
-
padding-bottom: $space-0;
|
|
324
|
-
}
|
|
325
|
-
.sfx-pb-5 {
|
|
326
|
-
padding-bottom: $space-5;
|
|
327
|
-
}
|
|
328
|
-
.sfx-pb-10 {
|
|
329
|
-
padding-bottom: $space-10;
|
|
330
|
-
}
|
|
331
|
-
.sfx-pb-15 {
|
|
332
|
-
padding-bottom: $space-15;
|
|
333
|
-
}
|
|
334
|
-
.sfx-pb-20 {
|
|
335
|
-
padding-bottom: $space-20;
|
|
336
|
-
}
|
|
337
|
-
.sfx-pb-25 {
|
|
338
|
-
padding-bottom: $space-25;
|
|
339
|
-
}
|
|
340
|
-
.sfx-pb-30 {
|
|
341
|
-
padding-bottom: $space-30;
|
|
342
|
-
}
|
|
343
|
-
.sfx-pb-40 {
|
|
344
|
-
padding-bottom: $space-40;
|
|
345
|
-
}
|
|
346
|
-
.sfx-pb-50 {
|
|
347
|
-
padding-bottom: $space-50;
|
|
348
|
-
}
|
|
349
|
-
// End Padding bottom
|
|
350
|
-
// Padding left
|
|
351
|
-
.sfx-pl-0 {
|
|
352
|
-
padding-left: $space-0;
|
|
353
|
-
}
|
|
354
|
-
.sfx-pl-5 {
|
|
355
|
-
padding-left: $space-5;
|
|
356
|
-
}
|
|
357
|
-
.sfx-pl-10 {
|
|
358
|
-
padding-left: $space-10;
|
|
359
|
-
}
|
|
360
|
-
.sfx-pl-15 {
|
|
361
|
-
padding-left: $space-15;
|
|
362
|
-
}
|
|
363
|
-
.sfx-pl-20 {
|
|
364
|
-
padding-left: $space-20;
|
|
365
|
-
}
|
|
366
|
-
.sfx-pl-25 {
|
|
367
|
-
padding-left: $space-25;
|
|
368
|
-
}
|
|
369
|
-
.sfx-pl-30 {
|
|
370
|
-
padding-left: $space-30;
|
|
371
|
-
}
|
|
372
|
-
// End Padding left
|
|
373
|
-
// Padding right
|
|
374
|
-
.sfx-pr-0 {
|
|
375
|
-
padding-right: $space-0;
|
|
376
|
-
}
|
|
377
|
-
.sfx-pr-5 {
|
|
378
|
-
padding-right: $space-5;
|
|
379
|
-
}
|
|
380
|
-
.sfx-pr-10 {
|
|
381
|
-
padding-right: $space-10;
|
|
382
|
-
}
|
|
383
|
-
.sfx-pr-15 {
|
|
384
|
-
padding-right: $space-15;
|
|
385
|
-
}
|
|
386
|
-
.sfx-pr-20 {
|
|
387
|
-
padding-right: $space-20;
|
|
388
|
-
}
|
|
389
|
-
.sfx-pr-25 {
|
|
390
|
-
padding-right: $space-25;
|
|
391
|
-
}
|
|
392
|
-
.sfx-pr-30 {
|
|
393
|
-
padding-right: $space-30;
|
|
394
|
-
}
|
|
395
|
-
// End Padding right
|
|
396
|
-
// Margin
|
|
397
|
-
.sfx-m-0 {
|
|
398
|
-
margin: $space-0;
|
|
399
|
-
}
|
|
400
|
-
.sfx-m-5 {
|
|
401
|
-
margin: $space-5;
|
|
402
|
-
}
|
|
403
|
-
.sfx-m-10 {
|
|
404
|
-
margin: $space-10;
|
|
405
|
-
}
|
|
406
|
-
.sfx-m-15 {
|
|
407
|
-
margin: $space-15;
|
|
408
|
-
}
|
|
409
|
-
.sfx-m-20 {
|
|
410
|
-
margin: $space-20;
|
|
411
|
-
}
|
|
412
|
-
.sfx-m-auto {
|
|
413
|
-
margin: 0 auto;
|
|
414
|
-
}
|
|
415
|
-
// End Margin
|
|
416
|
-
// Margin top
|
|
417
|
-
.sfx-mt-0 {
|
|
418
|
-
margin-top: $space-0;
|
|
419
|
-
}
|
|
420
|
-
.sfx-mt-5 {
|
|
421
|
-
margin-top: $space-5;
|
|
422
|
-
}
|
|
423
|
-
.sfx-mt-10 {
|
|
424
|
-
margin-top: $space-10;
|
|
425
|
-
}
|
|
426
|
-
.sfx-mt-15 {
|
|
427
|
-
margin-top: $space-15;
|
|
428
|
-
}
|
|
429
|
-
.sfx-mt-20 {
|
|
430
|
-
margin-top: $space-20;
|
|
431
|
-
}
|
|
432
|
-
.sfx-mt-25 {
|
|
433
|
-
margin-top: $space-25;
|
|
434
|
-
}
|
|
435
|
-
.sfx-mt-30 {
|
|
436
|
-
margin-top: $space-30;
|
|
437
|
-
}
|
|
438
|
-
.sfx-mt-40 {
|
|
439
|
-
margin-top: $space-40;
|
|
440
|
-
}
|
|
441
|
-
// End Margin top
|
|
442
|
-
// Margin bottom
|
|
443
|
-
.sfx-mb-0 {
|
|
444
|
-
margin-bottom: $space-0;
|
|
445
|
-
}
|
|
446
|
-
.sfx-mb-5 {
|
|
447
|
-
margin-bottom: $space-5;
|
|
448
|
-
}
|
|
449
|
-
.sfx-mb-10 {
|
|
450
|
-
margin-bottom: $space-10;
|
|
451
|
-
}
|
|
452
|
-
.sfx-mb-15 {
|
|
453
|
-
margin-bottom: $space-15;
|
|
454
|
-
}
|
|
455
|
-
.sfx-mb-20 {
|
|
456
|
-
margin-bottom: $space-20;
|
|
457
|
-
}
|
|
458
|
-
.sfx-mb-25 {
|
|
459
|
-
margin-bottom: $space-25;
|
|
460
|
-
}
|
|
461
|
-
.sfx-mb-30 {
|
|
462
|
-
margin-bottom: $space-30;
|
|
463
|
-
}
|
|
464
|
-
.sfx-mb-40 {
|
|
465
|
-
margin-bottom: $space-40;
|
|
466
|
-
}
|
|
467
|
-
// End Padding bottom
|
|
468
|
-
// Padding left
|
|
469
|
-
.sfx-ml-0 {
|
|
470
|
-
margin-left: $space-0;
|
|
471
|
-
}
|
|
472
|
-
.sfx-ml-5 {
|
|
473
|
-
margin-left: $space-5;
|
|
474
|
-
}
|
|
475
|
-
.sfx-ml-10 {
|
|
476
|
-
margin-left: $space-10;
|
|
477
|
-
}
|
|
478
|
-
.sfx-ml-15 {
|
|
479
|
-
margin-left: $space-15;
|
|
480
|
-
}
|
|
481
|
-
.sfx-ml-20 {
|
|
482
|
-
margin-left: $space-20;
|
|
483
|
-
}
|
|
484
|
-
.sfx-ml-auto {
|
|
485
|
-
margin-left: auto;
|
|
486
|
-
}
|
|
487
|
-
// End Paddimargin
|
|
488
|
-
// Padding right
|
|
489
|
-
.sfx-mr-0 {
|
|
490
|
-
margin-right: $space-0;
|
|
491
|
-
}
|
|
492
|
-
.sfx-mr-5 {
|
|
493
|
-
margin-right: $space-5;
|
|
494
|
-
}
|
|
495
|
-
.sfx-mr-10 {
|
|
496
|
-
margin-right: $space-10;
|
|
497
|
-
}
|
|
498
|
-
.sfx-mr-15 {
|
|
499
|
-
margin-right: $space-15;
|
|
500
|
-
}
|
|
501
|
-
.sfx-mr-20 {
|
|
502
|
-
margin-right: $space-20;
|
|
503
|
-
}
|
|
504
|
-
.sfx-mr-25 {
|
|
505
|
-
margin-right: $space-25;
|
|
506
|
-
}
|
|
507
|
-
.sfx-mr-30 {
|
|
508
|
-
margin-right: $space-30;
|
|
509
|
-
}
|
|
510
|
-
.sfx-mr-40 {
|
|
511
|
-
margin-right: $space-40;
|
|
512
|
-
}
|
|
513
|
-
// End Padding right
|
|
514
|
-
// End Spacing
|
|
515
|
-
// Border
|
|
516
|
-
.sfx-border-0 {
|
|
517
|
-
border: 0;
|
|
518
|
-
}
|
|
519
|
-
.sfx-border-top-0 {
|
|
520
|
-
border-top: 0;
|
|
521
|
-
}
|
|
522
|
-
.sfx-border-bottom-0 {
|
|
523
|
-
border-bottom: 0;
|
|
524
|
-
}
|
|
525
|
-
.sfx-border-left-0 {
|
|
526
|
-
border-left: 0;
|
|
527
|
-
}
|
|
528
|
-
.sfx-border-right-0 {
|
|
529
|
-
border-right: 0;
|
|
530
|
-
}
|
|
531
|
-
.sfx-border-gray-1 {
|
|
532
|
-
border: 1px solid $color-light-gray2;
|
|
533
|
-
}
|
|
534
|
-
.sfx-border-black-1 {
|
|
535
|
-
border: 1px solid $color-black;
|
|
536
|
-
}
|
|
537
|
-
.sfx-border-bottom-gray-1 {
|
|
538
|
-
border-bottom: 1px solid $color-light-gray2;
|
|
539
|
-
}
|
|
540
|
-
.sfx-border-bottom-black-1 {
|
|
541
|
-
border-bottom: 1px solid $color-black;
|
|
542
|
-
}
|
|
543
|
-
.sfx-border-bottom-mdm-black-1 {
|
|
544
|
-
border-bottom: 1px solid $color-mdm-black;
|
|
545
|
-
}
|
|
546
|
-
.sfx-border-bottom-black-5 {
|
|
547
|
-
border-bottom: 5px solid $color-black;
|
|
548
|
-
}
|
|
549
|
-
.sfx-border-bottom-white-5 {
|
|
550
|
-
border-bottom: 5px solid $color-white;
|
|
551
|
-
}
|
|
552
|
-
.sfx-border-top-gray-1 {
|
|
553
|
-
border-top: 1px solid $color-light-gray2;
|
|
554
|
-
}
|
|
555
|
-
.sfx-border-top-black-1 {
|
|
556
|
-
border-top: 1px solid $color-black;
|
|
557
|
-
}
|
|
558
|
-
.sfx-border-top-black-5 {
|
|
559
|
-
border-top: 5px solid $color-black;
|
|
560
|
-
}
|
|
561
|
-
.sfx-border-radius-0 {
|
|
562
|
-
border-radius: 0;
|
|
563
|
-
}
|
|
564
|
-
// End Border
|
|
565
|
-
// Display
|
|
566
|
-
.sfx-d-none {
|
|
567
|
-
display: none;
|
|
568
|
-
}
|
|
569
|
-
.sfx-d-block {
|
|
570
|
-
display: block;
|
|
571
|
-
}
|
|
572
|
-
.sfx-d-inline-block {
|
|
573
|
-
display: inline-block;
|
|
574
|
-
}
|
|
575
|
-
.sfx-d-flex {
|
|
576
|
-
display: flex;
|
|
577
|
-
}
|
|
578
|
-
.sfx-d-table {
|
|
579
|
-
display: table;
|
|
580
|
-
}
|
|
581
|
-
.sfx-d-grid {
|
|
582
|
-
display: grid;
|
|
583
|
-
}
|
|
584
|
-
// End Display
|
|
585
|
-
.sfx-wid-100 {
|
|
586
|
-
width: 100%;
|
|
587
|
-
}
|
|
588
|
-
.sfx-wid-100px {
|
|
589
|
-
width: 100px;
|
|
590
|
-
}
|
|
591
|
-
// Position
|
|
592
|
-
.sfx-position-relative {
|
|
593
|
-
position: relative;
|
|
594
|
-
}
|
|
595
|
-
.sfx-position-absolute {
|
|
596
|
-
position: absolute;
|
|
597
|
-
}
|
|
598
|
-
.sfx-position-fixed {
|
|
599
|
-
position: fixed;
|
|
600
|
-
}
|
|
601
|
-
.sfx-position-sticky {
|
|
602
|
-
position: sticky;
|
|
603
|
-
}
|
|
604
|
-
// End Position
|
|
605
|
-
// Helper Classes
|
|
606
|
-
.sfx-cursor-pointer {
|
|
607
|
-
cursor: pointer;
|
|
608
|
-
}
|
|
609
|
-
// End Helper Classes
|
|
610
|
-
// End Utilities
|
|
611
613
|
}
|
|
612
614
|
// Grid
|
|
613
615
|
.ag-theme-alpine {
|