@department-of-veterans-affairs/css-library 0.7.4 → 0.8.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.
Files changed (50) hide show
  1. package/dist/fonts/bitter-bold.ttf +0 -0
  2. package/dist/fonts/bitter-bold.woff2 +0 -0
  3. package/dist/fonts/bitter-regular.ttf +0 -0
  4. package/dist/fonts/bitter-regular.woff2 +0 -0
  5. package/dist/stylesheets/_mixins.scss +452 -0
  6. package/dist/stylesheets/base/fonts.css +1589 -0
  7. package/dist/stylesheets/base/utils.css +137 -0
  8. package/dist/stylesheets/base/va.css +1843 -0
  9. package/dist/{full.css → stylesheets/core.css} +341 -2299
  10. package/dist/stylesheets/formation-overrides/_variables.scss +170 -0
  11. package/dist/stylesheets/formation-overrides/core/base.css +64 -0
  12. package/dist/stylesheets/formation-overrides/core/fonts.css +46 -0
  13. package/dist/stylesheets/formation-overrides/elements/buttons.css +562 -0
  14. package/dist/stylesheets/formation-overrides/elements/inputs.css +384 -0
  15. package/dist/stylesheets/formation-overrides/elements/labels.css +28 -0
  16. package/dist/stylesheets/formation-overrides/elements/lists.css +57 -0
  17. package/dist/stylesheets/formation-overrides/elements/table.css +78 -0
  18. package/dist/stylesheets/formation-overrides/elements/typography.css +274 -0
  19. package/dist/stylesheets/mobile-typography.css +13 -0
  20. package/dist/stylesheets/modules/m-action-link.css +1443 -0
  21. package/dist/stylesheets/modules/m-additional-info.css +39 -0
  22. package/dist/stylesheets/modules/m-alert.css +254 -0
  23. package/dist/stylesheets/modules/m-breadcrumbs.css +96 -0
  24. package/dist/stylesheets/modules/m-button.css +153 -0
  25. package/dist/stylesheets/modules/m-dropdown.css +47 -0
  26. package/dist/stylesheets/modules/m-emergency-banner.css +33 -0
  27. package/dist/stylesheets/modules/m-external-link.css +14 -0
  28. package/dist/stylesheets/modules/m-form-elements.css +231 -0
  29. package/dist/stylesheets/modules/m-form-process.css +219 -0
  30. package/dist/stylesheets/modules/m-homepage-hero.css +76 -0
  31. package/dist/stylesheets/modules/m-hub-page-link-list.css +40 -0
  32. package/dist/stylesheets/modules/m-loading-indicator.css +41 -0
  33. package/dist/stylesheets/modules/m-maintenance-banner.css +33 -0
  34. package/dist/stylesheets/modules/m-megamenu.css +365 -0
  35. package/dist/stylesheets/modules/m-modal.css +117 -0
  36. package/dist/stylesheets/modules/m-nav-linklist.css +49 -0
  37. package/dist/stylesheets/modules/m-nav-sidebar.css +349 -0
  38. package/dist/stylesheets/modules/m-omb-info.css +15 -0
  39. package/dist/stylesheets/modules/m-overlay.css +72 -0
  40. package/dist/stylesheets/modules/m-print.css +27 -0
  41. package/dist/stylesheets/modules/m-process-list.css +162 -0
  42. package/dist/stylesheets/modules/va-pagination.css +90 -0
  43. package/dist/stylesheets/modules/va-tabs.css +53 -0
  44. package/dist/stylesheets/shame.css +266 -0
  45. package/dist/tokens/css/variables.css +1 -1
  46. package/dist/tokens/scss/variables.scss +1 -1
  47. package/package.json +8 -6
  48. /package/dist/{base → stylesheets/base}/headings.css +0 -0
  49. /package/dist/{uswds-typography.css → stylesheets/uswds-typography.css} +0 -0
  50. /package/dist/{utilities.css → stylesheets/utilities.css} +0 -0
@@ -0,0 +1,1843 @@
1
+ /**
2
+ Variables ported over from Formation so that we can keep those stylesheets
3
+ working while we work on deprecation.
4
+ **/
5
+ /**
6
+ /uswds/dist/scss/lib/addons/_margin.scss
7
+ **/
8
+ /**
9
+ uswds/src/stylesheets/lib/helpers/_directional-values.scss
10
+ **/
11
+ html,
12
+ body {
13
+ padding: 0;
14
+ margin: 0;
15
+ }
16
+
17
+ html {
18
+ font-size: 10px;
19
+ font-weight: 500;
20
+ }
21
+
22
+ body {
23
+ background: #ffffff;
24
+ color: #1b1b1b;
25
+ font-size: 16px;
26
+ font-family: inherit;
27
+ }
28
+ body.modal-open {
29
+ overflow: hidden;
30
+ }
31
+
32
+ .show-on-focus {
33
+ position: absolute;
34
+ top: -10em;
35
+ background: #ffffff;
36
+ padding: 1em;
37
+ margin: 1em;
38
+ color: #162e51;
39
+ display: block;
40
+ font-weight: 600;
41
+ }
42
+ .show-on-focus:focus {
43
+ position: inherit;
44
+ top: auto;
45
+ outline: 2px solid #ffbe2e;
46
+ }
47
+
48
+ body .row.full {
49
+ width: 100%;
50
+ max-width: 100%;
51
+ }
52
+
53
+ .sr-only {
54
+ border: 0;
55
+ clip: rect(0, 0, 0, 0);
56
+ clip-path: inset(50%);
57
+ height: 1px;
58
+ margin: -1px;
59
+ overflow: hidden;
60
+ padding: 0;
61
+ position: absolute !important;
62
+ width: 1px;
63
+ word-wrap: normal !important;
64
+ }
65
+
66
+ .no-print-no-sr {
67
+ display: none !important;
68
+ }
69
+
70
+ #content abbr {
71
+ border-bottom: 0px;
72
+ text-decoration: none;
73
+ font-weight: inherit;
74
+ font-style: inherit;
75
+ color: inherit;
76
+ cursor: pointer;
77
+ }
78
+
79
+ a {
80
+ color: #005ea2;
81
+ text-decoration: underline;
82
+ -webkit-transition-duration: 0.3s;
83
+ transition-duration: 0.3s;
84
+ -webkit-transition-timing-function: ease-in-out;
85
+ transition-timing-function: ease-in-out;
86
+ -webkit-transition-property: color, background-color, border-color;
87
+ transition-property: color, background-color, border-color;
88
+ }
89
+ a:hover {
90
+ background-color: rgba(0, 0, 0, 0.05);
91
+ color: inherit;
92
+ text-decoration: underline;
93
+ }
94
+ a:active {
95
+ background: rgba(0, 0, 0, 0.05);
96
+ }
97
+ a:visited, a:visited abbr {
98
+ color: #54278f;
99
+ }
100
+
101
+ /*
102
+ * * * * * ==============================
103
+ * * * * * ==============================
104
+ * * * * * ==============================
105
+ * * * * * ==============================
106
+ ========================================
107
+ ========================================
108
+ ========================================
109
+ ----------------------------------------
110
+ GENERAL SETTINGS
111
+ ----------------------------------------
112
+ Read more about settings and
113
+ USWDS style tokens in the documentation:
114
+ https://designsystem.digital.gov/design-tokens
115
+ ----------------------------------------
116
+ */
117
+ /*
118
+ ----------------------------------------
119
+ Image path
120
+ ----------------------------------------
121
+ Relative image file path
122
+ ----------------------------------------
123
+ */
124
+ /*
125
+ ----------------------------------------
126
+ Show compile warnings
127
+ ----------------------------------------
128
+ Show Sass warnings when functions and
129
+ mixins use non-standard tokens.
130
+ AND
131
+ Show updates and notifications.
132
+ ----------------------------------------
133
+ */
134
+ /*
135
+ ----------------------------------------
136
+ Namespace
137
+ ----------------------------------------
138
+ */
139
+ /*
140
+ ----------------------------------------
141
+ Prefix separator
142
+ ----------------------------------------
143
+ Set the character the separates
144
+ responsive and state prefixes from the
145
+ main class name.
146
+ The default (":") needs to be preceded
147
+ by two backslashes to be properly
148
+ escaped.
149
+ ----------------------------------------
150
+ */
151
+ /*
152
+ ----------------------------------------
153
+ Layout grid
154
+ ----------------------------------------
155
+ Should the layout grid classes output
156
+ with !important
157
+ ----------------------------------------
158
+ */
159
+ /*
160
+ ----------------------------------------
161
+ Border box sizing
162
+ ----------------------------------------
163
+ When set to true, sets the box-sizing
164
+ property of all site elements to
165
+ `border-box`.
166
+ ----------------------------------------
167
+ */
168
+ /*
169
+ ----------------------------------------
170
+ Focus styles
171
+ ----------------------------------------
172
+ */
173
+ /*
174
+ ----------------------------------------
175
+ Icons
176
+ ----------------------------------------
177
+ */
178
+ /*
179
+ * * * * * ==============================
180
+ * * * * * ==============================
181
+ * * * * * ==============================
182
+ * * * * * ==============================
183
+ ========================================
184
+ ========================================
185
+ ========================================
186
+ ----------------------------------------
187
+ TYPOGRAPHY SETTINGS
188
+ ----------------------------------------
189
+ Read more about settings and
190
+ USWDS typography tokens in the documentation:
191
+ https://designsystem.digital.gov/design-tokens/typesetting/overview/
192
+ ----------------------------------------
193
+ */
194
+ /*
195
+ ----------------------------------------
196
+ Root font size
197
+ ----------------------------------------
198
+ Setting $theme-respect-user-font-size to
199
+ true sets the root font size to 100% and
200
+ uses ems for media queries
201
+ ----------------------------------------
202
+ $theme-root-font-size only applies when
203
+ $theme-respect-user-font-size is set to
204
+ false.
205
+
206
+ This will set the root font size
207
+ as a specific px value and use px values
208
+ for media queries.
209
+
210
+ Accepts true or false
211
+ ----------------------------------------
212
+ */
213
+ /*
214
+ ----------------------------------------
215
+ Global styles
216
+ ----------------------------------------
217
+ Adds basic styling for the following
218
+ unclassed elements:
219
+
220
+ - paragraph: paragraph text
221
+ - link: links
222
+ - content: paragraph text, links,
223
+ headings, lists, and tables
224
+ ----------------------------------------
225
+ */
226
+ /*
227
+ ----------------------------------------
228
+ Broswer compatibility mode
229
+ ----------------------------------------
230
+ When true, outputs woff and ttf font
231
+ formats in addition to woff2
232
+ ----------------------------------------
233
+ */
234
+ /*
235
+ ----------------------------------------
236
+ Font path
237
+ ----------------------------------------
238
+ Relative font file path
239
+ ----------------------------------------
240
+ */
241
+ /*
242
+ ----------------------------------------
243
+ Custom typeface tokens
244
+ ----------------------------------------
245
+ Add a new custom typeface token if
246
+ your project uses a typeface not already
247
+ defined by USWDS.
248
+ ----------------------------------------
249
+ USWDS defines the following tokens
250
+ by default:
251
+ ----------------------------------------
252
+ 'georgia'
253
+ 'helvetica'
254
+ 'merriweather'
255
+ 'open-sans'
256
+ 'public-sans'
257
+ 'roboto-mono'
258
+ 'source-sans-pro'
259
+ 'system'
260
+ 'tahoma'
261
+ 'verdana'
262
+ ----------------------------------------
263
+ Add as many new tokens as you have
264
+ custom typefaces. Reference your new
265
+ token(s) in the type-based font settings
266
+ using the quoted name of the token.
267
+
268
+ For example:
269
+
270
+ $theme-font-type-cond: 'example-font-token';
271
+
272
+ display-name:
273
+ The display name of your font
274
+
275
+ cap-height:
276
+ The height of a 500px `N` in Sketch
277
+ ----------------------------------------
278
+ You should change `example-[style]-token`
279
+ names to something more descriptive.
280
+ ----------------------------------------
281
+ */
282
+ /*
283
+ ----------------------------------------
284
+ Type-based font settings
285
+ ----------------------------------------
286
+ Set the type-based tokens for your
287
+ project from the following tokens,
288
+ or from any new font tokens you added in
289
+ $theme-typeface-tokens.
290
+ ----------------------------------------
291
+ 'georgia'
292
+ 'helvetica'
293
+ 'merriweather'
294
+ 'open-sans'
295
+ 'public-sans'
296
+ 'roboto-mono'
297
+ 'source-sans-pro'
298
+ 'system'
299
+ 'tahoma'
300
+ 'verdana'
301
+ ----------------------------------------
302
+ */
303
+ /*
304
+ ----------------------------------------
305
+ Custom font stacks
306
+ ----------------------------------------
307
+ Add custom font stacks to any of the
308
+ type-based fonts. Any USWDS typeface
309
+ token already has a default stack.
310
+
311
+ Custom stacks don't need to include the
312
+ font's display name. It will
313
+ automatically appear at the start of
314
+ the stack.
315
+ ----------------------------------------
316
+ Example:
317
+ $theme-font-type-sans: 'source-sans-pro';
318
+ $theme-font-sans-custom-stack: "Helvetica Neue", Helvetica, Arial, sans;
319
+
320
+ Output:
321
+ font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans;
322
+ ----------------------------------------
323
+ */
324
+ /*
325
+ ----------------------------------------
326
+ Add any custom font source files
327
+ ----------------------------------------
328
+ If you want USWDS to generate additional
329
+ @font-face declarations, add your font
330
+ data below, following the example that
331
+ follows.
332
+ ----------------------------------------
333
+ USWDS automatically generates @font-face
334
+ declarations for the following
335
+
336
+ 'merriweather'
337
+ 'public-sans'
338
+ 'roboto-mono'
339
+ 'source-sans-pro'
340
+
341
+ These typefaces not require custom
342
+ source files.
343
+ ----------------------------------------
344
+ EXAMPLE
345
+
346
+ - dir:
347
+ Directory relative to $theme-font-path
348
+ - This directory should include fonts saved as
349
+ .woff2
350
+ ExampleSerif-Normal.woff2
351
+
352
+ $theme-font-serif-custom-src: (
353
+ dir: 'custom/example-serif',
354
+ roman: (
355
+ 100: false,
356
+ 200: false,
357
+ 300: 'ExampleSerif-Light',
358
+ 400: 'ExampleSerif-Normal',
359
+ 500: false,
360
+ 600: false,
361
+ 700: 'ExampleSerif-Bold',
362
+ 800: false,
363
+ 900: false,
364
+ ),
365
+ italic: (
366
+ 100: false,
367
+ 200: false,
368
+ 300: 'ExampleSerif-LightItalic',
369
+ 400: 'ExampleSerif-Italic',
370
+ 500: false,
371
+ 600: false,
372
+ 700: 'ExampleSerif-BoldItalic',
373
+ 800: false,
374
+ 900: false,
375
+ ),
376
+ );
377
+ ----------------------------------------
378
+ */
379
+ /*
380
+ ----------------------------------------
381
+ Role-based font settings
382
+ ----------------------------------------
383
+ Set the role-based tokens for your
384
+ project from the following font-type
385
+ tokens.
386
+ ----------------------------------------
387
+ 'cond'
388
+ 'icon'
389
+ 'lang'
390
+ 'mono'
391
+ 'sans'
392
+ 'serif'
393
+ ----------------------------------------
394
+ */
395
+ /*
396
+ ----------------------------------------
397
+ Type scale
398
+ ----------------------------------------
399
+ Define your project's type scale using
400
+ values from the USWDS system type scale
401
+
402
+ 1-20
403
+ ----------------------------------------
404
+ */
405
+ /*
406
+ ----------------------------------------
407
+ Font weights
408
+ ----------------------------------------
409
+ Assign weights 100-900
410
+ Or use `false` for unneeded weights.
411
+ ----------------------------------------
412
+ */
413
+ /*
414
+ ----------------------------------------
415
+ General typography settings
416
+ ----------------------------------------
417
+ Type scale tokens
418
+ ----------------------------------------
419
+ micro: 10px
420
+ 1: 12px
421
+ 2: 13px
422
+ 3: 14px
423
+ 4: 15px
424
+ 5: 16px
425
+ 6: 17px
426
+ 7: 18px
427
+ 8: 20px
428
+ 9: 22px
429
+ 10: 24px
430
+ 11: 28px
431
+ 12: 32px
432
+ 13: 36px
433
+ 14: 40px
434
+ 15: 48px
435
+ 16: 56px
436
+ 17: 64px
437
+ 18: 80px
438
+ 19: 120px
439
+ 20: 140px
440
+ ----------------------------------------
441
+ Line height tokens
442
+ ----------------------------------------
443
+ 1: 1
444
+ 2: 1.15
445
+ 3: 1.35
446
+ 4: 1.5
447
+ 5: 1.62
448
+ 6: 1.75
449
+ ----------------------------------------
450
+ Font role tokens
451
+ ----------------------------------------
452
+ 'ui'
453
+ 'heading'
454
+ 'body'
455
+ 'code'
456
+ 'alt'
457
+ ----------------------------------------
458
+ Measure (max-width) tokens
459
+ ----------------------------------------
460
+ 1: 44ex
461
+ 2: 60ex
462
+ 3: 64ex
463
+ 4: 68ex
464
+ 5: 74ex
465
+ 6: 88ex
466
+ none: none
467
+ ----------------------------------------
468
+ */
469
+ /*
470
+ * * * * * ==============================
471
+ * * * * * ==============================
472
+ * * * * * ==============================
473
+ * * * * * ==============================
474
+ ========================================
475
+ ========================================
476
+ ========================================
477
+ ----------------------------------------
478
+ COLOR SETTINGS
479
+ ----------------------------------------
480
+ Read more about settings and
481
+ USWDS color tokens in the documentation:
482
+ https://designsystem.digital.gov/design-tokens/color
483
+ ----------------------------------------
484
+ */
485
+ /*
486
+ ----------------------------------------
487
+ Theme palette colors
488
+ ----------------------------------------
489
+ */
490
+ /*
491
+ ----------------------------------------
492
+ State palette colors
493
+ ----------------------------------------
494
+ */
495
+ /*
496
+ ----------------------------------------
497
+ General colors
498
+ ----------------------------------------
499
+ */
500
+ /*
501
+ * * * * * ==============================
502
+ * * * * * ==============================
503
+ * * * * * ==============================
504
+ * * * * * ==============================
505
+ ========================================
506
+ ========================================
507
+ ========================================
508
+ ----------------------------------------
509
+ COMPONENT SETTINGS
510
+ ----------------------------------------
511
+ Read more about settings and
512
+ USWDS style tokens in the documentation:
513
+ https://designsystem.digital.gov/design-tokens
514
+ ----------------------------------------
515
+ */
516
+ /*
517
+ * * * * * ==============================
518
+ * * * * * ==============================
519
+ * * * * * ==============================
520
+ * * * * * ==============================
521
+ ========================================
522
+ ========================================
523
+ ========================================
524
+ ----------------------------------------
525
+ SPACING SETTINGS
526
+ ----------------------------------------
527
+ Read more about settings and
528
+ USWDS spacing units tokens in the
529
+ documentation:
530
+ https://designsystem.digital.gov/design-tokens/spacing-units
531
+ ----------------------------------------
532
+ */
533
+ /*
534
+ ----------------------------------------
535
+ Border radius
536
+ ----------------------------------------
537
+ 2px 2px
538
+ 0.5 4px
539
+ 1 8px
540
+ 1.5 12px
541
+ 2 16px
542
+ 2.5 20px
543
+ 3 24px
544
+ 4 32px
545
+ 5 40px
546
+ 6 48px
547
+ 7 56px
548
+ 8 64px
549
+ 9 72px
550
+ ----------------------------------------
551
+ */
552
+ /*
553
+ ----------------------------------------
554
+ Column gap
555
+ ----------------------------------------
556
+ 2px 2px
557
+ 0.5 4px
558
+ 1 8px
559
+ 2 16px
560
+ 3 24px
561
+ 4 32px
562
+ 5 40px
563
+ 6 48px
564
+ ----------------------------------------
565
+ */
566
+ /*
567
+ ----------------------------------------
568
+ Grid container max-width
569
+ ----------------------------------------
570
+ mobile
571
+ mobile-lg
572
+ tablet
573
+ tablet-lg
574
+ desktop
575
+ desktop-lg
576
+ widescreen
577
+ ----------------------------------------
578
+ */
579
+ /*
580
+ ----------------------------------------
581
+ Site
582
+ ----------------------------------------
583
+ */
584
+ /*
585
+ * * * * * ==============================
586
+ * * * * * ==============================
587
+ * * * * * ==============================
588
+ * * * * * ==============================
589
+ ========================================
590
+ ========================================
591
+ ========================================
592
+ ----------------------------------------
593
+ UTILITIES SETTINGS
594
+ ----------------------------------------
595
+ Read more about settings and
596
+ USWDS utilities in the documentation:
597
+ https://designsystem.digital.gov/utilities
598
+ ----------------------------------------
599
+ */
600
+ /*
601
+ ----------------------------------------
602
+ Utility breakpoints
603
+ ----------------------------------------
604
+ Which breakpoints does your project
605
+ need? Select as `true` any breakpoint
606
+ used by utilities or layout grid
607
+ ----------------------------------------
608
+ */
609
+ /*
610
+ ----------------------------------------
611
+ Global colors
612
+ ----------------------------------------
613
+ The following palettes will be added to
614
+ - background-color
615
+ - border-color
616
+ - color
617
+ - text-decoration-color
618
+ ----------------------------------------
619
+ */
620
+ /*
621
+ ----------------------------------------
622
+ Settings
623
+ ----------------------------------------
624
+ */
625
+ /*
626
+ ----------------------------------------
627
+ Values
628
+ ----------------------------------------
629
+ */
630
+ /*
631
+ ----------------------------------------
632
+ advanced-color()
633
+ ----------------------------------------
634
+ Derive a color from a color triplet:
635
+ [family], [grade], [variant]
636
+ ----------------------------------------
637
+ */
638
+ /*
639
+ ----------------------------------------
640
+ append-important()
641
+ ----------------------------------------
642
+ Append `!important` to a list
643
+ ----------------------------------------
644
+ */
645
+ /*
646
+ ----------------------------------------
647
+ get-last()
648
+ ----------------------------------------
649
+ Return the last item of a list,
650
+ Return null if the value is null
651
+ ----------------------------------------
652
+ */
653
+ /*
654
+ ----------------------------------------
655
+ de-list()
656
+ ----------------------------------------
657
+ Transform a one-element list or arglist
658
+ into that single element.
659
+ ----------------------------------------
660
+ (1) => 1
661
+ ((1)) => (1)
662
+ ----------------------------------------
663
+ */
664
+ /*
665
+ ----------------------------------------
666
+ error-not-token()
667
+ ----------------------------------------
668
+ Returns a common not-a-token error.
669
+ ----------------------------------------
670
+ */
671
+ /*
672
+ ----------------------------------------
673
+ uswds-error()
674
+ ----------------------------------------
675
+ Allow the system to pass an error as text
676
+ to test error states in unit testing
677
+ ----------------------------------------
678
+ */
679
+ /*
680
+ ----------------------------------------
681
+ get-default()
682
+ ----------------------------------------
683
+ Returns the default value from a map
684
+ of project defaults
685
+ get-default("bg-color")
686
+ > $theme-body-background-color
687
+ ----------------------------------------
688
+ */
689
+ /*
690
+ ----------------------------------------
691
+ has-important()
692
+ ----------------------------------------
693
+ Check to see if `!important` is
694
+ being passed in a mixin's props
695
+ ----------------------------------------
696
+ */
697
+ /*
698
+ ----------------------------------------
699
+ map-collect()
700
+ ----------------------------------------
701
+ Collect multiple maps into a single
702
+ large map
703
+ source: https://gist.github.com/bigglesrocks/d75091700f8f2be5abfe
704
+ ----------------------------------------
705
+ */
706
+ /*
707
+ ----------------------------------------
708
+ map-deep-get()
709
+ ----------------------------------------
710
+ @author Hugo Giraudel
711
+ @access public
712
+ @param {Map} $map - Map
713
+ @param {Arglist} $keys - Key chain
714
+ @return {*} - Desired value
715
+ ----------------------------------------
716
+ */
717
+ /*
718
+ ----------------------------------------
719
+ multi-cat()
720
+ ----------------------------------------
721
+ Concatenate two lists
722
+ ----------------------------------------
723
+ */
724
+ /*
725
+ ----------------------------------------
726
+ remove()
727
+ ----------------------------------------
728
+ Remove a value from a list
729
+ ----------------------------------------
730
+ */
731
+ /*
732
+ ----------------------------------------
733
+ smart-quote()
734
+ ----------------------------------------
735
+ Quotes strings
736
+ Inspects `px`, `xs`, and `xl` numbers
737
+ Leaves bools as is
738
+ ----------------------------------------
739
+ */
740
+ /*
741
+ ----------------------------------------
742
+ str-replace()
743
+ ----------------------------------------
744
+ Replace any substring with another
745
+ string
746
+ ----------------------------------------
747
+ */
748
+ /*
749
+ ----------------------------------------
750
+ str-split()
751
+ ----------------------------------------
752
+ Split a string at a given separator
753
+ and convert into a list of substrings
754
+ ----------------------------------------
755
+ */
756
+ /*
757
+ ----------------------------------------
758
+ strip-unit()
759
+ ----------------------------------------
760
+ Remove the unit of a length
761
+ @author Hugo Giraudel
762
+ @param {Number} $number - Number to remove unit from
763
+ @return {Number} - Unitless number
764
+ ----------------------------------------
765
+ */
766
+ /*
767
+ ----------------------------------------
768
+ base-to-map()
769
+ @TODO: Deprecate and delete
770
+ ----------------------------------------
771
+ Convert a single base to a USWDS
772
+ value map.
773
+
774
+ Candidate for deprecation if we remove
775
+ isReadable
776
+ ----------------------------------------
777
+ */
778
+ /*
779
+ ----------------------------------------
780
+ to-number()
781
+ ----------------------------------------
782
+ Casts a string into a number
783
+ ----------------------------------------
784
+ @param {String | Number} $value - Value to be parsed
785
+ @return {Number}
786
+ ----------------------------------------
787
+ */
788
+ /*
789
+ ----------------------------------------
790
+ unpack()
791
+ ----------------------------------------
792
+ Create lists of single items from lists
793
+ of lists.
794
+ ----------------------------------------
795
+ (1, (2.1, 2.2), 3) -->
796
+ (1, 2.1, 2.2, 3)
797
+ ----------------------------------------
798
+ */
799
+ /*
800
+ ----------------------------------------
801
+ advanced-color()
802
+ ----------------------------------------
803
+ Derive a color from a color triplet:
804
+ [family], [grade], [variant]
805
+ ----------------------------------------
806
+ */
807
+ /*
808
+ ----------------------------------------
809
+ get-system-color()
810
+ ----------------------------------------
811
+ Derive a system color from its
812
+ family, value, and vivid or a passed
813
+ variable that is, itself, a list
814
+ ----------------------------------------
815
+ */
816
+ /*
817
+ ----------------------------------------
818
+ advanced-color()
819
+ ----------------------------------------
820
+ Derive a color from a color triplet:
821
+ [family], [grade], [variant]
822
+ ----------------------------------------
823
+ */
824
+ /*
825
+ ----------------------------------------
826
+ calculate-grade()
827
+ ----------------------------------------
828
+ Derive the grade equivalent any color,
829
+ even non-token colors
830
+ ----------------------------------------
831
+ */
832
+ /*
833
+ ----------------------------------------
834
+ Luminance ranges
835
+ ----------------------------------------
836
+ */
837
+ /*
838
+ ----------------------------------------
839
+ color-token-assignment()
840
+ ----------------------------------------
841
+ Get the system token equivalent of any
842
+ theme color token
843
+ ----------------------------------------
844
+ */
845
+ /*
846
+ ----------------------------------------
847
+ is-system-color-token()
848
+ ----------------------------------------
849
+ Return whether a token is a system
850
+ color token
851
+ ----------------------------------------
852
+ */
853
+ /*
854
+ ----------------------------------------
855
+ is-theme-color-token()
856
+ ----------------------------------------
857
+ Return whether a token is a theme
858
+ color token
859
+ ----------------------------------------
860
+ */
861
+ /*
862
+ ----------------------------------------
863
+ is-system-color-token()
864
+ ----------------------------------------
865
+ Return whether a token is a system
866
+ color token
867
+ ----------------------------------------
868
+ */
869
+ /*
870
+ ----------------------------------------
871
+ set-theme-color()
872
+ ----------------------------------------
873
+ Derive a color from a system color token
874
+ or a hex value
875
+ ----------------------------------------
876
+ */
877
+ /*
878
+ ----------------------------------------
879
+ color-token-family()
880
+ ----------------------------------------
881
+ Returns the family of a color token.
882
+ Returns: color-family
883
+ color-token-family("accent-warm-vivid")
884
+ > "accent-warm"
885
+ color-token-family("red-50v")
886
+ > "red"
887
+ color-token-variant(("red", 50, "vivid"))
888
+ > "red"
889
+ ----------------------------------------
890
+ */
891
+ /*
892
+ ----------------------------------------
893
+ decompose()
894
+ ----------------------------------------
895
+ Convert a color token into into a list
896
+ of form [family], [grade], [variant]
897
+ Vivid variants return "vivid" as the
898
+ variant.
899
+ If neither grade nor variant exists,
900
+ returns 'null'
901
+ ----------------------------------------
902
+ */
903
+ /*
904
+ ----------------------------------------
905
+ color-token-family()
906
+ ----------------------------------------
907
+ Returns the family of a color token.
908
+ Returns: color-family
909
+ color-token-family("accent-warm-vivid")
910
+ > "accent-warm"
911
+ color-token-family("red-50v")
912
+ > "red"
913
+ color-token-variant(("red", 50, "vivid"))
914
+ > "red"
915
+ ----------------------------------------
916
+ */
917
+ /*
918
+ ----------------------------------------
919
+ color-token-grade()
920
+ ----------------------------------------
921
+ Returns the grade of a USWDS color token.
922
+ Returns: color-grade
923
+ color-token-grade("accent-warm")
924
+ > "root"
925
+ color-token-grade("accent-warm-vivid")
926
+ > "root"
927
+ color-token-grade("accent-warm-darker")
928
+ > "darker"
929
+ color-token-grade("red-50v")
930
+ > 50
931
+ color-token-variant(("red", 50, "vivid"))
932
+ > 50
933
+ ----------------------------------------
934
+ */
935
+ /*
936
+ ----------------------------------------
937
+ color-token-family()
938
+ ----------------------------------------
939
+ Returns the family of a color token.
940
+ Returns: color-family
941
+ color-token-family("accent-warm-vivid")
942
+ > "accent-warm"
943
+ color-token-family("red-50v")
944
+ > "red"
945
+ color-token-variant(("red", 50, "vivid"))
946
+ > "red"
947
+ ----------------------------------------
948
+ */
949
+ /*
950
+ ----------------------------------------
951
+ is-color-token()
952
+ ----------------------------------------
953
+ Returns whether a given string is a
954
+ USWDS color token.
955
+ ----------------------------------------
956
+ */
957
+ /*
958
+ ----------------------------------------
959
+ is-system-color-token()
960
+ ----------------------------------------
961
+ Return whether a token is a system
962
+ color token
963
+ ----------------------------------------
964
+ */
965
+ /*
966
+ ----------------------------------------
967
+ is-theme-color-token()
968
+ ----------------------------------------
969
+ Return whether a token is a theme
970
+ color token
971
+ ----------------------------------------
972
+ */
973
+ /*
974
+ ----------------------------------------
975
+ pow()
976
+ ----------------------------------------
977
+ Raises a unitless number to the power
978
+ of another unitless number
979
+ Includes helper functions
980
+ ----------------------------------------
981
+ */
982
+ /*
983
+ ----------------------------------------
984
+ Helper functions
985
+ ----------------------------------------
986
+ */
987
+ /* factorial()
988
+ ----------------------------------------
989
+ */
990
+ /* summation()
991
+ ----------------------------------------
992
+ */
993
+ /* exp-maclaurin()
994
+ ----------------------------------------
995
+ */
996
+ /* ln()
997
+ ----------------------------------------
998
+ */
999
+ /*
1000
+ ----------------------------------------
1001
+ color-token-type()
1002
+ ----------------------------------------
1003
+ Returns the type of a color token.
1004
+ Returns: "system" | "theme"
1005
+ ----------------------------------------
1006
+ */
1007
+ /*
1008
+ ----------------------------------------
1009
+ color-token-variant()
1010
+ ----------------------------------------
1011
+ Returns the variant of color token.
1012
+ Returns: "vivid" | false
1013
+ color-token-variant("accent-warm")
1014
+ > false
1015
+ color-token-variant("accent-warm-vivid")
1016
+ > "vivid"
1017
+ color-token-variant("red-50v")
1018
+ > "vivid"
1019
+ color-token-variant(("red", 50, "vivid"))
1020
+ > "vivid"
1021
+ ----------------------------------------
1022
+ */
1023
+ /*
1024
+ ----------------------------------------
1025
+ magic-number()
1026
+ ----------------------------------------
1027
+ Returns the magic number of two color
1028
+ grades. Takes numbers or color tokens.
1029
+ magic-number(50, 10)
1030
+ return: 40
1031
+ magic-number("red-50", "red-10")
1032
+ return: 40
1033
+ ----------------------------------------
1034
+ */
1035
+ /*
1036
+ ----------------------------------------
1037
+ is-accessible-magic-number()
1038
+ ----------------------------------------
1039
+ Returns whether two grades achieve
1040
+ specified target color contrast
1041
+ Returns: true | false
1042
+ is-accessible-magic-number(10, 50, "AA")
1043
+ > false
1044
+ is-accessible-magic-number(10, 60, "AA")
1045
+ > true
1046
+ ----------------------------------------
1047
+ */
1048
+ /*
1049
+ ----------------------------------------
1050
+ wcag-magic-number()
1051
+ ----------------------------------------
1052
+ Returns the magic number of a specific
1053
+ wcag grade:
1054
+ "AA"
1055
+ "AA-Large"
1056
+ "AAA"
1057
+ wcag-magic-number("AA")
1058
+ > 50
1059
+ ----------------------------------------
1060
+ */
1061
+ /*
1062
+ ----------------------------------------
1063
+ get-link-tokens-from-bg()
1064
+ ----------------------------------------
1065
+ Get accessible link colors for a given
1066
+ background color
1067
+ returns: link-token, hover-token
1068
+ get-link-tokens-from-bg(
1069
+ "black",
1070
+ "red-60",
1071
+ "red-10",
1072
+ "AA")
1073
+ > "red-10", "red-5"
1074
+ get-link-tokens-from-bg(
1075
+ "black",
1076
+ "red-60v",
1077
+ "red-10v",
1078
+ "AA-large")
1079
+ > "red-60v", "red-50v"
1080
+ get-link-tokens-from-bg(
1081
+ "black",
1082
+ "red-5v",
1083
+ "red-60v",
1084
+ "AA")
1085
+ > "red-5v", "white"
1086
+ get-link-tokens-from-bg(
1087
+ "black",
1088
+ "white",
1089
+ "red-60v",
1090
+ "AA")
1091
+ > "white", "white"
1092
+ ----------------------------------------
1093
+ */
1094
+ /*
1095
+ ----------------------------------------
1096
+ next-token()
1097
+ ----------------------------------------
1098
+ Returns next "darker" or "lighter" color
1099
+ token of the same token type and variant.
1100
+ Returns: color-token | false
1101
+ next-token("accent-warm", "lighter")
1102
+ > "accent-warm-light"
1103
+ next-token("gray-10", "lighter")
1104
+ > "gray-5"
1105
+ next-token("gray-5", "lighter")
1106
+ > "white"
1107
+ next-token("white", "lighter")
1108
+ > false
1109
+ next-token("red-50v", "darker")
1110
+ > "red-60v"
1111
+ next-token("red-50", "darker")
1112
+ > "red-60"
1113
+ next-token("red-80v", "darker")
1114
+ > "red-90"
1115
+ next-token("red-90", "darker")
1116
+ > "black"
1117
+ next-token("white", "darker")
1118
+ > "gray-5"
1119
+ next-token("black", "lighter")
1120
+ > "gray-90"
1121
+ ----------------------------------------
1122
+ */
1123
+ /*
1124
+ ----------------------------------------
1125
+ color()
1126
+ ----------------------------------------
1127
+ Derive a color from a color shortcode
1128
+ ----------------------------------------
1129
+ */
1130
+ /*
1131
+ ----------------------------------------
1132
+ test-colors()
1133
+ ----------------------------------------
1134
+ Check to see if all system colors
1135
+ fall between the proper relative
1136
+ luminance range for their grade.
1137
+ Has a couple quirks, as the luminance()
1138
+ function returns slightly different
1139
+ results than expected.
1140
+ ----------------------------------------
1141
+ */
1142
+ /*
1143
+ ----------------------------------------
1144
+ cap-height()
1145
+ ----------------------------------------
1146
+ Get the cap height of a valid typeface
1147
+ ----------------------------------------
1148
+ */
1149
+ /*
1150
+ ----------------------------------------
1151
+ Line height
1152
+ ----------------------------------------
1153
+ */
1154
+ /*
1155
+ ----------------------------------------
1156
+ Measure
1157
+ ----------------------------------------
1158
+ */
1159
+ /*
1160
+ ----------------------------------------
1161
+ spacing-multiple()
1162
+ ----------------------------------------
1163
+ Converts a spacing unit multiple into
1164
+ the desired final units (currently rem)
1165
+ ----------------------------------------
1166
+ */
1167
+ /*
1168
+ ----------------------------------------
1169
+ cap-height()
1170
+ ----------------------------------------
1171
+ Get the cap height of a valid typeface
1172
+ ----------------------------------------
1173
+ */
1174
+ /*
1175
+ ----------------------------------------
1176
+ validate-typeface-token()
1177
+ ----------------------------------------
1178
+ Check to see if a typeface-token exists.
1179
+ Throw an error if a passed token does
1180
+ not exist in the typeface-token map.
1181
+ ----------------------------------------
1182
+ */
1183
+ /*
1184
+ ----------------------------------------
1185
+ convert-to-font-type()
1186
+ ----------------------------------------
1187
+ Converts a font-role token into a
1188
+ font-type token. Leaves font-type tokens
1189
+ unchanged.
1190
+ ----------------------------------------
1191
+ */
1192
+ /*
1193
+ ----------------------------------------
1194
+ font-sources()
1195
+ ----------------------------------------
1196
+ Outputs a list of font sources used in
1197
+ a @font-face declaration.
1198
+
1199
+ $theme-font-browser-compatibility: true - output woff2, woff, ttf
1200
+ $theme-font-browser-compatibility: false - output woff2
1201
+
1202
+ @param stem: string - [font path]/[custom-src.dir]/[custom-src.[style].[weight]]
1203
+ @output: string
1204
+
1205
+ filetypes must be one of the filetypes set in variables/$project-font-face-filetypes (woff, woff2, ttf)
1206
+ ----------------------------------------
1207
+ */
1208
+ /*
1209
+ ----------------------------------------
1210
+ get-font-stack()
1211
+ ----------------------------------------
1212
+ Get a font stack from a style- or
1213
+ role-based font token.
1214
+ ----------------------------------------
1215
+ */
1216
+ /*
1217
+ ----------------------------------------
1218
+ Project fonts
1219
+ ----------------------------------------
1220
+ Collects font settings in a map for
1221
+ looping.
1222
+ ----------------------------------------
1223
+ */
1224
+ /*
1225
+ ----------------------------------------
1226
+ get-typeface-token()
1227
+ ----------------------------------------
1228
+ Get a typeface token from a font-type or
1229
+ font-role token.
1230
+ ----------------------------------------
1231
+ */
1232
+ /*
1233
+ ----------------------------------------
1234
+ normalize-type-scale()
1235
+ ----------------------------------------
1236
+ Normalizes a specific face's optical size
1237
+ to a set target
1238
+ ----------------------------------------
1239
+ */
1240
+ /*
1241
+ ----------------------------------------
1242
+ px-to-rem()
1243
+ ----------------------------------------
1244
+ Converts a value in px to a value in rem
1245
+ ----------------------------------------
1246
+ */
1247
+ /*
1248
+ ----------------------------------------
1249
+ rem-to-px()
1250
+ ----------------------------------------
1251
+ Converts a value in rem to a value in px
1252
+ ----------------------------------------
1253
+ */
1254
+ /*
1255
+ ----------------------------------------
1256
+ rem-to-user-em()
1257
+ ----------------------------------------
1258
+ Converts a value in rem to a value in
1259
+ [user-settings] em for use in media
1260
+ queries
1261
+ ----------------------------------------
1262
+ */
1263
+ /*
1264
+ ----------------------------------------
1265
+ units()
1266
+ ----------------------------------------
1267
+ Converts a spacing unit into
1268
+ the desired final units (currently rem)
1269
+ ----------------------------------------
1270
+ */
1271
+ /*
1272
+ ----------------------------------------
1273
+ number-to-token()
1274
+ ----------------------------------------
1275
+ Converts an integer or numeric value
1276
+ into a system value
1277
+
1278
+ Ex: 0.5 --> '05'
1279
+ -1px --> 'neg-1px'
1280
+ ----------------------------------------
1281
+ */
1282
+ /*
1283
+ ----------------------------------------
1284
+ system-type-scale()
1285
+ ----------------------------------------
1286
+ Get a value from the system type scale
1287
+ ----------------------------------------
1288
+ */
1289
+ /*
1290
+ ----------------------------------------
1291
+ columns()
1292
+ ----------------------------------------
1293
+ outputs a grid-col number based on
1294
+ the number of desired columns in the
1295
+ 12-column grid
1296
+
1297
+ Ex: columns(2) --> 6
1298
+ grid-col(columns(2))
1299
+ ----------------------------------------
1300
+ */
1301
+ /*
1302
+ ----------------------------------------
1303
+ USWDS Properties
1304
+ ----------------------------------------
1305
+ */
1306
+ /*
1307
+ ----------------------------------------
1308
+ get-uswds-value()
1309
+ ----------------------------------------
1310
+ Finds and outputs a value from the
1311
+ USWDS standard values.
1312
+
1313
+ Used to build other standard utility
1314
+ functions and mixins.
1315
+ ----------------------------------------
1316
+ */
1317
+ /*
1318
+ ----------------------------------------
1319
+ get-standard-values()
1320
+ ----------------------------------------
1321
+ Gets a map of USWDS standard values
1322
+ for a property
1323
+ ----------------------------------------
1324
+ */
1325
+ /*
1326
+ ----------------------------------------
1327
+ ns()
1328
+ ----------------------------------------
1329
+ Add a namesspace of $type if that
1330
+ namespace is set to output
1331
+ ----------------------------------------
1332
+ */
1333
+ /*
1334
+ ----------------------------------------
1335
+ border-radius()
1336
+ ----------------------------------------
1337
+ Get a border-radius from the system
1338
+ border-radii
1339
+ ----------------------------------------
1340
+ */
1341
+ /*
1342
+ ----------------------------------------
1343
+ font-weight()
1344
+ fw()
1345
+ ----------------------------------------
1346
+ Get a font-weight value from the
1347
+ system font-weight
1348
+ ----------------------------------------
1349
+ */
1350
+ /*
1351
+ ----------------------------------------
1352
+ feature()
1353
+ ----------------------------------------
1354
+ Gets a valid USWDS font feature setting
1355
+ ----------------------------------------
1356
+ */
1357
+ /*
1358
+ ----------------------------------------
1359
+ flex()
1360
+ ----------------------------------------
1361
+ Gets a valid USWDS flex value
1362
+ ----------------------------------------
1363
+ */
1364
+ /*
1365
+ ----------------------------------------
1366
+ font-family()
1367
+ family()
1368
+ ----------------------------------------
1369
+ Get a font-family stack from a
1370
+ role-based or type-based font family
1371
+ ----------------------------------------
1372
+ */
1373
+ /*
1374
+ ----------------------------------------
1375
+ letter-spacing()
1376
+ ls()
1377
+ ----------------------------------------
1378
+ Get a letter-spacing value from the
1379
+ system letter-spacing
1380
+ ----------------------------------------
1381
+ */
1382
+ /*
1383
+ ----------------------------------------
1384
+ measure()
1385
+ ----------------------------------------
1386
+ Gets a valid USWDS reading line length
1387
+ ----------------------------------------
1388
+ */
1389
+ /*
1390
+ ----------------------------------------
1391
+ opacity()
1392
+ ----------------------------------------
1393
+ Get an opacity from the system
1394
+ opacities
1395
+ ----------------------------------------
1396
+ */
1397
+ /*
1398
+ ----------------------------------------
1399
+ order()
1400
+ ----------------------------------------
1401
+ Get an order value from the
1402
+ system orders
1403
+ ----------------------------------------
1404
+ */
1405
+ /*
1406
+ ----------------------------------------
1407
+ radius()
1408
+ ----------------------------------------
1409
+ Get a border-radius value from the
1410
+ system letter-spacing
1411
+ ----------------------------------------
1412
+ */
1413
+ /*
1414
+ ----------------------------------------
1415
+ font-size()
1416
+ ----------------------------------------
1417
+ Get type scale value from a [family] and
1418
+ [scale]
1419
+ ----------------------------------------
1420
+ */
1421
+ /*
1422
+ ----------------------------------------
1423
+ z-index()
1424
+ z()
1425
+ ----------------------------------------
1426
+ Get a z-index value from the
1427
+ system z-index
1428
+ ----------------------------------------
1429
+ */
1430
+ /*
1431
+ ----------------------------------------
1432
+ utility-font()
1433
+ ----------------------------------------
1434
+ Get a normalized font-size in rem from
1435
+ a family and a type size in either
1436
+ system scale or project scale
1437
+ ----------------------------------------
1438
+ Not the public-facing function.
1439
+ Used for building the utilities and
1440
+ withholds certain errors.
1441
+ ----------------------------------------
1442
+ */
1443
+ /*
1444
+ ----------------------------------------
1445
+ family()
1446
+ ----------------------------------------
1447
+ Get a font-family stack
1448
+ ----------------------------------------
1449
+ */
1450
+ /*
1451
+ ----------------------------------------
1452
+ size()
1453
+ ----------------------------------------
1454
+ Get a normalized font-size in rem from
1455
+ a family and a type size in either
1456
+ system scale or project scale
1457
+ ----------------------------------------
1458
+ */
1459
+ /*
1460
+ ----------------------------------------
1461
+ font()
1462
+ ----------------------------------------
1463
+ Get a font-family stack
1464
+ AND
1465
+ Get a normalized font-size in rem from
1466
+ a family and a type size in either
1467
+ system scale or project scale
1468
+ ----------------------------------------
1469
+ */
1470
+ /*
1471
+ ----------------------------------------
1472
+ typeset()
1473
+ ----------------------------------------
1474
+ Sets:
1475
+ - family
1476
+ - size
1477
+ - line-height
1478
+ ----------------------------------------
1479
+ */
1480
+ /*
1481
+ ----------------------------------------
1482
+ Easing
1483
+ ----------------------------------------
1484
+ */
1485
+ h1 {
1486
+ margin-top: 0;
1487
+ }
1488
+
1489
+ h1,
1490
+ h2,
1491
+ h3,
1492
+ h4,
1493
+ h5,
1494
+ h6 {
1495
+ margin-bottom: 0;
1496
+ margin-top: 0;
1497
+ clear: both;
1498
+ }
1499
+ * + h1,
1500
+ * + h2,
1501
+ * + h3,
1502
+ * + h4,
1503
+ * + h5,
1504
+ * + h6 {
1505
+ margin-top: 1.5em;
1506
+ }
1507
+ h1 + *,
1508
+ h2 + *,
1509
+ h3 + *,
1510
+ h4 + *,
1511
+ h5 + *,
1512
+ h6 + * {
1513
+ margin-top: 1em;
1514
+ }
1515
+
1516
+ h1 {
1517
+ font-family: Merriweather Web, Georgia, Cambria, Times New Roman, Times, serif;
1518
+ font-size: 2.44rem;
1519
+ line-height: 1.2;
1520
+ font-weight: 700;
1521
+ }
1522
+
1523
+ h2 {
1524
+ font-family: Merriweather Web, Georgia, Cambria, Times New Roman, Times, serif;
1525
+ font-size: 1.95rem;
1526
+ line-height: 1.2;
1527
+ font-weight: 700;
1528
+ }
1529
+
1530
+ h3 {
1531
+ font-family: Merriweather Web, Georgia, Cambria, Times New Roman, Times, serif;
1532
+ font-size: 1.34rem;
1533
+ line-height: 1.2;
1534
+ font-weight: 700;
1535
+ }
1536
+
1537
+ h4 {
1538
+ font-family: Merriweather Web, Georgia, Cambria, Times New Roman, Times, serif;
1539
+ font-size: 0.98rem;
1540
+ line-height: 1.2;
1541
+ font-weight: 700;
1542
+ }
1543
+
1544
+ h5 {
1545
+ font-family: Merriweather Web, Georgia, Cambria, Times New Roman, Times, serif;
1546
+ font-size: 0.91rem;
1547
+ line-height: 1.2;
1548
+ font-weight: 700;
1549
+ }
1550
+
1551
+ h6 {
1552
+ font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
1553
+ font-size: 0.87rem;
1554
+ line-height: 1.1;
1555
+ font-weight: normal;
1556
+ letter-spacing: 0.025em;
1557
+ text-transform: uppercase;
1558
+ }
1559
+
1560
+ h1, h2, h3, h4, h5 {
1561
+ font-family: Bitter, Georgia, Cambria, "Times New Roman", Times, serif;
1562
+ font-weight: 700;
1563
+ }
1564
+
1565
+ h6 {
1566
+ font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
1567
+ font-weight: 700;
1568
+ }
1569
+
1570
+ h1 {
1571
+ margin-top: 0;
1572
+ font-size: 2.5rem;
1573
+ }
1574
+
1575
+ h2 {
1576
+ font-size: 1.875rem;
1577
+ }
1578
+
1579
+ h3 {
1580
+ font-size: 1.25rem;
1581
+ }
1582
+
1583
+ h4 {
1584
+ font-size: 1.0625rem;
1585
+ }
1586
+
1587
+ h5 {
1588
+ font-size: 0.9375rem;
1589
+ }
1590
+
1591
+ h6 {
1592
+ font-size: 0.9375rem;
1593
+ }
1594
+
1595
+ @media (max-width: 481px) {
1596
+ h1 {
1597
+ font-size: 30px;
1598
+ }
1599
+ h2 {
1600
+ font-size: 24px;
1601
+ }
1602
+ }
1603
+ h6 {
1604
+ margin: 0.5em 0 0;
1605
+ text-transform: none;
1606
+ font-weight: 700;
1607
+ }
1608
+
1609
+ @media (max-width: 481px) {
1610
+ h1 {
1611
+ font-size: 30px;
1612
+ }
1613
+ h2 {
1614
+ font-size: 24px;
1615
+ }
1616
+ }
1617
+ h6 {
1618
+ margin: 0.5em 0 0;
1619
+ text-transform: none;
1620
+ font-weight: 700;
1621
+ }
1622
+
1623
+ ul {
1624
+ padding: 0 0 0 1.5em;
1625
+ list-style: square;
1626
+ }
1627
+
1628
+ ol {
1629
+ margin: 0 0 0 1.25em;
1630
+ list-style-position: outside;
1631
+ }
1632
+
1633
+ ul > ul,
1634
+ ul ol,
1635
+ ol > ul,
1636
+ ol ol {
1637
+ margin: 0.5em 0 0.5em 1.2em;
1638
+ }
1639
+
1640
+ dd {
1641
+ margin-left: 0;
1642
+ }
1643
+
1644
+ dd + dt {
1645
+ margin-top: 1.5em;
1646
+ }
1647
+
1648
+ figure {
1649
+ font-size: 0.85em;
1650
+ margin-left: -15px;
1651
+ margin-right: -15px;
1652
+ }
1653
+ @media screen and (min-width: 1201px), print and (min-width: 1201px) {
1654
+ figure {
1655
+ margin-left: -16.66667%;
1656
+ margin-right: -16.66667%;
1657
+ }
1658
+ }
1659
+
1660
+ figcaption {
1661
+ color: #162e51;
1662
+ }
1663
+
1664
+ input::-webkit-input-placeholder {
1665
+ color: #565c65;
1666
+ }
1667
+
1668
+ input::-moz-placeholder {
1669
+ color: #565c65;
1670
+ }
1671
+
1672
+ input:-ms-input-placeholder {
1673
+ color: #565c65;
1674
+ }
1675
+
1676
+ input:focus::-webkit-input-placeholder {
1677
+ color: transparent;
1678
+ }
1679
+
1680
+ input:focus::-moz-placeholder {
1681
+ color: transparent;
1682
+ }
1683
+
1684
+ input:focus:-ms-input-placeholder {
1685
+ color: transparent;
1686
+ }
1687
+
1688
+ input.va-input-medium-large {
1689
+ max-width: 11.25rem;
1690
+ }
1691
+
1692
+ hr {
1693
+ margin: 2.5em 0;
1694
+ margin: 48px 0 40px;
1695
+ border: 1px solid #a9aeb1;
1696
+ }
1697
+
1698
+ table {
1699
+ width: 100%;
1700
+ }
1701
+
1702
+ .va-pos-fixed {
1703
+ position: fixed;
1704
+ }
1705
+
1706
+ .header {
1707
+ background: #162e51;
1708
+ clear: both;
1709
+ margin: 0;
1710
+ padding: 0;
1711
+ min-height: 189.19px;
1712
+ }
1713
+ @media screen and (min-width: 481px), print and (min-width: 481px) {
1714
+ .header {
1715
+ min-height: 167.19px;
1716
+ }
1717
+ }
1718
+ @media screen and (min-width: 768px), print and (min-width: 768px) {
1719
+ .header {
1720
+ position: relative;
1721
+ min-height: 159px;
1722
+ }
1723
+ }
1724
+ .header .login-container {
1725
+ background: #162e51;
1726
+ flex-wrap: wrap;
1727
+ white-space: nowrap;
1728
+ }
1729
+ .header .login-container .row {
1730
+ padding: 0;
1731
+ }
1732
+ @media screen and (min-width: 640px), print and (min-width: 640px) {
1733
+ .header .login-container {
1734
+ flex: 1 0 100%;
1735
+ }
1736
+ }
1737
+
1738
+ #va-header-logo-menu {
1739
+ flex-wrap: wrap;
1740
+ padding: 1em 0.75em 0;
1741
+ }
1742
+ @media screen and (min-width: 640px), print and (min-width: 640px) {
1743
+ #va-header-logo-menu {
1744
+ padding-bottom: 0;
1745
+ }
1746
+ }
1747
+
1748
+ .va-header-logo-wrapper {
1749
+ flex: 1 0 164px;
1750
+ }
1751
+ @media screen and (min-width: 640px), print and (min-width: 640px) {
1752
+ .va-header-logo-wrapper {
1753
+ flex-basis: 3.75rem;
1754
+ }
1755
+ }
1756
+
1757
+ .va-header-logo {
1758
+ background-color: transparent;
1759
+ border-bottom: none;
1760
+ display: block;
1761
+ height: 40px;
1762
+ margin: 0;
1763
+ width: 164px;
1764
+ }
1765
+ .va-header-logo:hover .vets-logo-va path {
1766
+ fill: #ffbe2e;
1767
+ }
1768
+
1769
+ .va-notice--banner {
1770
+ background: #ffffff;
1771
+ margin: 0 0 0.75em 0;
1772
+ padding: 0;
1773
+ font-weight: 400;
1774
+ }
1775
+ @media screen and (min-width: 768px), print and (min-width: 768px) {
1776
+ .va-notice--banner {
1777
+ background: #f1f1f1;
1778
+ }
1779
+ .va-notice--banner .usa-banner-inner {
1780
+ padding-left: 0.9375rem;
1781
+ }
1782
+ .va-notice--banner .usa-banner-content {
1783
+ padding-left: 0;
1784
+ padding-right: 0;
1785
+ }
1786
+ }
1787
+ @media screen and (min-width: 1008px), print and (min-width: 1008px) {
1788
+ .va-notice--banner .usa-banner-inner {
1789
+ padding-left: 0;
1790
+ }
1791
+ }
1792
+ .va-notice--banner-inner {
1793
+ margin: auto;
1794
+ max-width: 1000px;
1795
+ position: relative;
1796
+ }
1797
+
1798
+ .va-notice--banner p {
1799
+ font-size: 16px;
1800
+ margin: 0;
1801
+ }
1802
+ .va-notice--banner a {
1803
+ background-image: none;
1804
+ color: inherit;
1805
+ padding: 0;
1806
+ }
1807
+
1808
+ .vets-logo {
1809
+ display: block;
1810
+ height: inherit;
1811
+ width: inherit;
1812
+ }
1813
+ .vets-logo-vetsdotgov path,
1814
+ .vets-logo-vetsdotgov rect, .vets-logo-va path,
1815
+ .vets-logo-va rect {
1816
+ fill: #ffffff;
1817
+ }
1818
+
1819
+ article > h1 {
1820
+ margin-top: 0;
1821
+ }
1822
+
1823
+ #content {
1824
+ margin: 0;
1825
+ padding: 0;
1826
+ color: #1b1b1b;
1827
+ overflow: hidden;
1828
+ }
1829
+
1830
+ .va-introtext {
1831
+ font-family: Bitter, Georgia, Cambria, "Times New Roman", Times, serif;
1832
+ font-size: 1.25rem;
1833
+ font-weight: 400;
1834
+ line-height: 1.7;
1835
+ max-width: 48.125rem;
1836
+ }
1837
+ .va-introtext p {
1838
+ font-size: 1.25rem;
1839
+ font-weight: 400;
1840
+ line-height: 1.7;
1841
+ }
1842
+
1843
+ /*# sourceMappingURL=va.css.map */