uswds-jekyll 2.0.1 → 2.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.
- checksums.yaml +4 -4
- data/README.md +28 -3
- data/_includes/analytics.html +20 -0
- data/_includes/components/header--basic.html +2 -2
- data/_includes/components/header--extended.html +3 -3
- data/_includes/components/hero.html +1 -1
- data/_includes/subnav.html +1 -1
- data/_layouts/default.html +3 -0
- data/_sass/uswds/components/_accordions.scss +11 -11
- data/_sass/uswds/components/_alerts.scss +60 -29
- data/_sass/uswds/components/_footer.scss +176 -40
- data/_sass/uswds/components/_header.scss +6 -9
- data/_sass/uswds/components/_hero.scss +1 -7
- data/_sass/uswds/components/_navigation.scss +115 -20
- data/_sass/uswds/components/_search.scss +32 -27
- data/_sass/uswds/core/_base.scss +5 -0
- data/_sass/uswds/core/_utilities.scss +25 -5
- data/_sass/uswds/core/_variables.scss +77 -45
- data/_sass/uswds/elements/_buttons.scss +76 -50
- data/_sass/uswds/elements/_inputs.scss +49 -44
- data/_sass/uswds/elements/_labels.scss +2 -2
- data/_sass/uswds/elements/_table.scss +30 -22
- data/_sass/uswds/elements/_typography.scss +11 -8
- data/_sass/uswds/uswds.scss +1 -1
- data/assets/uswds/CONTRIBUTING.md +33 -0
- data/assets/uswds/LICENSE.md +0 -8
- data/assets/uswds/README.md +2 -2
- data/assets/uswds/css/uswds.css +862 -476
- data/assets/uswds/css/uswds.min.css +2 -2
- data/assets/uswds/css/uswds.min.css.map +1 -1
- data/assets/uswds/img/arrow-both.png +0 -0
- data/assets/uswds/img/arrow-both.svg +1 -0
- data/assets/uswds/img/close-primary.png +0 -0
- data/assets/uswds/img/close-primary.svg +16 -0
- data/assets/uswds/img/close.png +0 -0
- data/assets/uswds/img/close.svg +12 -1
- data/assets/uswds/img/search-primary.png +0 -0
- data/assets/uswds/img/search-primary.svg +12 -0
- data/assets/uswds/js/uswds.js +45 -13
- data/assets/uswds/js/uswds.min.js +1 -1
- data/assets/uswds/js/uswds.min.js.map +1 -1
- data/assets/uswds/scss/components/_accordions.scss +11 -11
- data/assets/uswds/scss/components/_alerts.scss +60 -29
- data/assets/uswds/scss/components/_footer.scss +176 -40
- data/assets/uswds/scss/components/_header.scss +6 -9
- data/assets/uswds/scss/components/_hero.scss +1 -7
- data/assets/uswds/scss/components/_navigation.scss +115 -20
- data/assets/uswds/scss/components/_search.scss +32 -27
- data/assets/uswds/scss/core/_base.scss +5 -0
- data/assets/uswds/scss/core/_utilities.scss +25 -5
- data/assets/uswds/scss/core/_variables.scss +77 -45
- data/assets/uswds/scss/elements/_buttons.scss +76 -50
- data/assets/uswds/scss/elements/_inputs.scss +49 -44
- data/assets/uswds/scss/elements/_labels.scss +2 -2
- data/assets/uswds/scss/elements/_table.scss +30 -22
- data/assets/uswds/scss/elements/_typography.scss +11 -8
- data/assets/uswds/scss/uswds.scss +1 -1
- data/assets/uswds/{uswds-1.3.1.zip → uswds-1.4.3.zip} +0 -0
- metadata +11 -4
@@ -32,15 +32,9 @@ select {
|
|
32
32
|
line-height: $input-line-height;
|
33
33
|
margin: 0.2em 0;
|
34
34
|
max-width: $input-max-width;
|
35
|
-
outline: none;
|
36
35
|
padding: $input-padding-vertical 0.7em;
|
37
36
|
width: 100%;
|
38
37
|
|
39
|
-
&:focus,
|
40
|
-
&.usa-input-focus {
|
41
|
-
box-shadow: $focus-shadow;
|
42
|
-
}
|
43
|
-
|
44
38
|
&.usa-input-success {
|
45
39
|
border: 3px solid $color-green-light;
|
46
40
|
}
|
@@ -94,7 +88,12 @@ select {
|
|
94
88
|
|
95
89
|
.usa-input-required:after {
|
96
90
|
color: $color-secondary-darkest;
|
97
|
-
content: ' (*
|
91
|
+
content: ' (*required)';
|
92
|
+
}
|
93
|
+
|
94
|
+
.usa-input-optional:after {
|
95
|
+
color: $color-gray-medium;
|
96
|
+
content: ' (optional)';
|
98
97
|
}
|
99
98
|
|
100
99
|
label {
|
@@ -112,11 +111,31 @@ select {
|
|
112
111
|
-webkit-appearance: none;
|
113
112
|
appearance: none;
|
114
113
|
background-color: $color-white;
|
115
|
-
background-image: url('#{$image-path}/arrow-
|
116
|
-
background-image: url('#{$image-path}/arrow-
|
114
|
+
background-image: url('#{$image-path}/arrow-both.png');
|
115
|
+
background-image: url('#{$image-path}/arrow-both.svg');
|
117
116
|
background-position: right 1.3rem center;
|
118
117
|
background-repeat: no-repeat;
|
119
|
-
background-size:
|
118
|
+
background-size: 1rem;
|
119
|
+
padding-right: 3rem;
|
120
|
+
|
121
|
+
&::-ms-expand {
|
122
|
+
display: none;
|
123
|
+
}
|
124
|
+
|
125
|
+
// Show default webkit style on select element when autofilled to show icon
|
126
|
+
&:-webkit-autofill {
|
127
|
+
appearance: menulist;
|
128
|
+
}
|
129
|
+
|
130
|
+
// Remove dotted outline from select element on focus in Firefox
|
131
|
+
&:-moz-focusring {
|
132
|
+
color: transparent;
|
133
|
+
text-shadow: 0 0 0 $color-black;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
option:first-child {
|
138
|
+
font-weight: $font-bold;
|
120
139
|
}
|
121
140
|
|
122
141
|
legend {
|
@@ -159,30 +178,31 @@ legend {
|
|
159
178
|
[type=radio] + label {
|
160
179
|
cursor: pointer;
|
161
180
|
font-weight: 400;
|
162
|
-
margin-bottom: 0.
|
181
|
+
margin-bottom: 0.65em;
|
163
182
|
}
|
164
183
|
|
165
184
|
[type=checkbox] + label::before,
|
166
185
|
[type=radio] + label::before {
|
167
186
|
background: $color-white;
|
168
|
-
border-radius: $border-radius;
|
187
|
+
border-radius: $checkbox-border-radius;
|
169
188
|
box-shadow: 0 0 0 1px $color-gray-medium;
|
170
189
|
content: '\a0';
|
171
190
|
display: inline-block;
|
172
|
-
height:
|
173
|
-
line-height:
|
191
|
+
height: $spacing-medium;
|
192
|
+
line-height: $spacing-medium;
|
174
193
|
margin-right: 0.6em;
|
175
194
|
text-indent: 0.15em;
|
176
195
|
vertical-align: middle\0; // Target IE 11 and below to vertically center inputs
|
177
|
-
width:
|
196
|
+
width: $spacing-medium;
|
178
197
|
}
|
179
198
|
|
180
199
|
[type=radio] + label::before {
|
181
|
-
box-shadow: 0 0 0 2px $color-white, 0 0 0 3px $color-gray-medium;
|
182
|
-
height: 1.6rem;
|
183
|
-
line-height: 1.6rem;
|
184
|
-
width: 1.6rem;
|
185
200
|
border-radius: 100%;
|
201
|
+
box-shadow: 0 0 0 2px $color-white, 0 0 0 3px $color-gray-medium;
|
202
|
+
height: 1.4rem; // Size overrides to account for shape + checked styling
|
203
|
+
line-height: 1.4rem;
|
204
|
+
margin-right: 0.75em;
|
205
|
+
width: 1.4rem;
|
186
206
|
}
|
187
207
|
|
188
208
|
[type=checkbox]:checked + label::before,
|
@@ -195,10 +215,6 @@ legend {
|
|
195
215
|
box-shadow: 0 0 0 2px $color-white, 0 0 0 4px $color-primary;
|
196
216
|
}
|
197
217
|
|
198
|
-
[type=radio]:focus + label::before {
|
199
|
-
box-shadow: 0 0 0 2px $color-white, 0 0 0 4px $color-primary, 0 0 3px 4px $color-focus, 0 0 7px 4px $color-focus;
|
200
|
-
}
|
201
|
-
|
202
218
|
[type=checkbox]:checked + label::before,
|
203
219
|
[type=checkbox]:checked:disabled + label::before {
|
204
220
|
background-image: url('#{$image-path}/correct8.png');
|
@@ -207,17 +223,23 @@ legend {
|
|
207
223
|
background-repeat: no-repeat;
|
208
224
|
}
|
209
225
|
|
210
|
-
[type=
|
211
|
-
|
226
|
+
[type=radio]:focus + label::before {
|
227
|
+
outline: $focus-outline;
|
228
|
+
outline-offset: $focus-spacing * 2; // Double the offset to account for circular shape
|
212
229
|
}
|
213
230
|
|
214
231
|
[type=checkbox]:disabled + label {
|
215
|
-
color: $color-gray;
|
232
|
+
color: $color-gray-lighter;
|
233
|
+
}
|
234
|
+
|
235
|
+
[type=checkbox]:focus + label::before {
|
236
|
+
outline: $focus-outline;
|
237
|
+
outline-offset: $focus-spacing;
|
216
238
|
}
|
217
239
|
|
218
240
|
[type=checkbox]:disabled + label::before,
|
219
241
|
[type=radio]:disabled + label::before {
|
220
|
-
background: $color-gray-
|
242
|
+
background: $color-gray-lightest;
|
221
243
|
box-shadow: 0 0 0 1px $color-gray-light;
|
222
244
|
cursor: not-allowed;
|
223
245
|
}
|
@@ -231,11 +253,6 @@ legend {
|
|
231
253
|
width: 100%;
|
232
254
|
}
|
233
255
|
|
234
|
-
[type=range]:focus {
|
235
|
-
box-shadow: none;
|
236
|
-
outline: none;
|
237
|
-
}
|
238
|
-
|
239
256
|
[type=range]::-webkit-slider-runnable-track {
|
240
257
|
background: $color-gray-light;
|
241
258
|
border: 1px solid $color-gray-medium;
|
@@ -301,18 +318,6 @@ legend {
|
|
301
318
|
border-radius: 2rem;
|
302
319
|
}
|
303
320
|
|
304
|
-
[type=range]:focus::-webkit-slider-thumb {
|
305
|
-
border: 2px solid $color-focus;
|
306
|
-
}
|
307
|
-
|
308
|
-
[type=range]:focus::-moz-range-thumb {
|
309
|
-
border: 2px solid $color-focus;
|
310
|
-
}
|
311
|
-
|
312
|
-
[type=range]:focus::-ms-thumb {
|
313
|
-
border: 2px solid $color-focus;
|
314
|
-
}
|
315
|
-
|
316
321
|
// Memorable dates
|
317
322
|
|
318
323
|
.usa-date-of-birth {
|
@@ -1,40 +1,35 @@
|
|
1
1
|
table {
|
2
2
|
border-spacing: 0;
|
3
3
|
margin: 2em 0;
|
4
|
-
|
5
|
-
|
6
|
-
thead {
|
7
|
-
th,
|
8
|
-
td {
|
9
|
-
background-color: $color-gray-lightest;
|
10
|
-
}
|
11
|
-
}
|
4
|
+
}
|
12
5
|
|
6
|
+
thead {
|
13
7
|
th {
|
14
|
-
|
15
|
-
}
|
16
|
-
|
17
|
-
tbody {
|
18
|
-
th {
|
19
|
-
font-weight: $font-normal;
|
20
|
-
}
|
8
|
+
font-weight: $font-bold;
|
21
9
|
}
|
22
10
|
|
23
11
|
th,
|
24
12
|
td {
|
25
|
-
background-color: $color-
|
26
|
-
border: 1px solid $color-gray;
|
27
|
-
padding: 1.5rem;
|
13
|
+
background-color: $color-gray-lightest;
|
28
14
|
}
|
29
15
|
}
|
30
16
|
|
17
|
+
th {
|
18
|
+
text-align: left;
|
19
|
+
}
|
20
|
+
|
21
|
+
th,
|
22
|
+
td {
|
23
|
+
background-color: $color-white;
|
24
|
+
border: 1px solid $color-gray;
|
25
|
+
font-weight: $font-normal;
|
26
|
+
padding: 1rem 1.5rem;
|
27
|
+
}
|
28
|
+
|
31
29
|
.usa-table-borderless {
|
32
30
|
thead {
|
33
|
-
tr {
|
34
|
-
background-color: transparent;
|
35
|
-
}
|
36
|
-
|
37
31
|
th {
|
32
|
+
background-color: transparent;
|
38
33
|
border-top: 0;
|
39
34
|
}
|
40
35
|
}
|
@@ -44,4 +39,17 @@ table {
|
|
44
39
|
border-left: 0;
|
45
40
|
border-right: 0;
|
46
41
|
}
|
42
|
+
|
43
|
+
th {
|
44
|
+
&:first-child {
|
45
|
+
padding-left: 0;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
caption {
|
51
|
+
@include h5;
|
52
|
+
font-family: $font-serif;
|
53
|
+
margin-bottom: 1.2rem;
|
54
|
+
text-align: left;
|
47
55
|
}
|
@@ -22,13 +22,12 @@ a {
|
|
22
22
|
color: $color-primary-darker;
|
23
23
|
}
|
24
24
|
|
25
|
-
&:
|
26
|
-
|
25
|
+
&:focus {
|
26
|
+
@include focus;
|
27
27
|
}
|
28
28
|
|
29
|
-
&:
|
30
|
-
|
31
|
-
outline: 0;
|
29
|
+
&:visited {
|
30
|
+
color: $color-visited;
|
32
31
|
}
|
33
32
|
}
|
34
33
|
|
@@ -67,8 +66,7 @@ h1,
|
|
67
66
|
h2,
|
68
67
|
h3,
|
69
68
|
h4,
|
70
|
-
h5
|
71
|
-
h6 {
|
69
|
+
h5 {
|
72
70
|
clear: both;
|
73
71
|
font-family: $font-serif;
|
74
72
|
line-height: $heading-line-height;
|
@@ -76,6 +74,10 @@ h6 {
|
|
76
74
|
margin-top: 1.5em;
|
77
75
|
}
|
78
76
|
|
77
|
+
h6 {
|
78
|
+
font-family: $font-sans;
|
79
|
+
}
|
80
|
+
|
79
81
|
h1 {
|
80
82
|
@include h1();
|
81
83
|
}
|
@@ -112,7 +114,7 @@ dfn {
|
|
112
114
|
// Custom typography
|
113
115
|
|
114
116
|
.usa-content {
|
115
|
-
p
|
117
|
+
p,
|
116
118
|
ul:not(.usa-accordion):not(.usa-accordion-bordered),
|
117
119
|
ol:not(.usa-accordion):not(.usa-accordion-bordered) {
|
118
120
|
max-width: $text-max-width;
|
@@ -162,6 +164,7 @@ dfn {
|
|
162
164
|
.usa-font-lead {
|
163
165
|
font-family: $font-serif;
|
164
166
|
font-size: $lead-font-size;
|
167
|
+
font-weight: $font-normal;
|
165
168
|
line-height: $lead-line-height;
|
166
169
|
max-width: $lead-max-width;
|
167
170
|
}
|
data/_sass/uswds/uswds.scss
CHANGED
@@ -85,6 +85,39 @@ gulp stylelint
|
|
85
85
|
(Or, if you don't want to install Gulp globally, you can run `$(npm
|
86
86
|
bin)/gulp` instead of `gulp`.)
|
87
87
|
|
88
|
+
Note that running the tests also requires an installation of
|
89
|
+
Chrome v59 or higher (v60 if you're on Windows).
|
90
|
+
|
91
|
+
#### Visual regression testing
|
92
|
+
|
93
|
+
The Standards come with optional tooling for detecting visual regressions,
|
94
|
+
which can be especially useful if you're refactoring CSS.
|
95
|
+
|
96
|
+
These tests work by comparing current screenshots of the Standards' Fractal
|
97
|
+
components to "golden" screenshots that represent what the components are
|
98
|
+
supposed to look like.
|
99
|
+
|
100
|
+
Golden screenshots are stored on your local development system *only*;
|
101
|
+
they're not version controlled.
|
102
|
+
|
103
|
+
To generate the golden screenshots, run:
|
104
|
+
|
105
|
+
```
|
106
|
+
node spec/visual-regression-tester.js test --updateGolden
|
107
|
+
```
|
108
|
+
|
109
|
+
Then, make any CSS refactorings (or switch to a branch that has them).
|
110
|
+
|
111
|
+
To compare the current state of your CSS to the golden screenshots, run:
|
112
|
+
|
113
|
+
```
|
114
|
+
node spec/visual-regression-tester.js test
|
115
|
+
```
|
116
|
+
|
117
|
+
If the current screenshots don't match their golden counterparts, you will
|
118
|
+
be directed to an HTML file that visually shows the differences between
|
119
|
+
any conflicting screenshots.
|
120
|
+
|
88
121
|
### Building
|
89
122
|
|
90
123
|
To build the `uswds` package in preparation for releases, run:
|
data/assets/uswds/LICENSE.md
CHANGED
@@ -16,14 +16,6 @@ The files in `src/stylesheets/lib` are from:
|
|
16
16
|
* [Neat](http://neat.bourbon.io/), copyright [thoughtbot](https://thoughtbot.com/), inc., also under the [MIT license](https://github.com/thoughtbot/neat/blob/master/LICENSE.md).
|
17
17
|
* [Normalize.css](https://github.com/necolas/normalize.css), copyright Nicolas Gallagher and Jonathan Neal, under the [MIT license](https://github.com/necolas/normalize.css/blob/master/LICENSE.md).
|
18
18
|
|
19
|
-
The file `src/js/vendor/html5shiv.js` is from [HTML5 Shiv](https://github.com/afarkas/html5shiv), copyright Alexander Farkas (aFarkas), under the [MIT license](https://github.com/aFarkas/html5shiv/blob/master/MIT%20and%20GPL2%20licenses.md).
|
20
|
-
|
21
|
-
The file `src/js/vendor/rem.min.js` is from [REM unit polyfill](https://github.com/chuckcarpenter/REM-unit-polyfill), copyright Chuck Carpenter, under the [MIT license](https://github.com/chuckcarpenter/REM-unit-polyfill/blob/master/LICENSE.md).
|
22
|
-
|
23
|
-
The file `src/js/vendor/respond.js` is from [Respond.js](https://github.com/scottjehl/Respond), copyright Scott Jehl, under the [MIT license](https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT).
|
24
|
-
|
25
|
-
The file `src/js/vendor/selectivizr-min.js` is from [Selectivizr](http://selectivizr.com/), copyright Keith Clark, under the [MIT license](http://opensource.org/licenses/mit-license.php).
|
26
|
-
|
27
19
|
#### Full license text for the MIT licensed files:
|
28
20
|
|
29
21
|
```
|
data/assets/uswds/README.md
CHANGED
@@ -22,7 +22,7 @@ This repository is for the Standards themselves. 18F maintains [another reposito
|
|
22
22
|
* [Fractal](#fractal)
|
23
23
|
* [Template compatibility](#template-compatibility)
|
24
24
|
* [Need installation help?](#need-installation-help)
|
25
|
-
* [Contributing to the code base](#contributing-to-the-
|
25
|
+
* [Contributing to the code base](#contributing-to-the-code-base)
|
26
26
|
* [Reuse of open-source style guides](#reuse-of-open-source-style-guides)
|
27
27
|
* [Licenses and attribution](#licenses-and-attribution)
|
28
28
|
|
@@ -230,7 +230,7 @@ You can also email us directly at uswebdesignstandards@gsa.gov.
|
|
230
230
|
|
231
231
|
For complete instructions on how to contribute code, please read [CONTRIBUTING.md](CONTRIBUTING.md). These instructions also include guidance on how to set up your own copy of the Standards style guide website for development.
|
232
232
|
|
233
|
-
If you would like to learn more about our workflow process, check out the [Workflow](https://github.com/18F/web-design-standards/wiki/Workflow) and [
|
233
|
+
If you would like to learn more about our workflow process, check out the [Workflow](https://github.com/18F/web-design-standards/wiki/Workflow) and [Issue label Glossary](https://github.com/18F/web-design-standards/wiki/Issue-label-glossary) pages on the wiki.
|
234
234
|
|
235
235
|
If you have questions or concerns about our contributing workflow, please contact us by [filing a GitHub issue](https://github.com/18F/web-design-standards/issues) or [emailing our team](mailto:uswebdesignstandards@gsa.gov).
|
236
236
|
|
data/assets/uswds/css/uswds.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! uswds v1.3
|
1
|
+
/*! uswds v1.4.3 */
|
2
2
|
html {
|
3
3
|
box-sizing: border-box;
|
4
4
|
}
|
@@ -460,32 +460,6 @@ th {
|
|
460
460
|
}
|
461
461
|
|
462
462
|
/* stylelint-enable */
|
463
|
-
html {
|
464
|
-
box-sizing: border-box;
|
465
|
-
}
|
466
|
-
|
467
|
-
*,
|
468
|
-
*::before,
|
469
|
-
*::after {
|
470
|
-
box-sizing: inherit;
|
471
|
-
}
|
472
|
-
|
473
|
-
body {
|
474
|
-
background-color: #ffffff;
|
475
|
-
overflow-x: hidden;
|
476
|
-
}
|
477
|
-
|
478
|
-
.lt-ie9 * {
|
479
|
-
-webkit-filter: none !important;
|
480
|
-
filter: none !important;
|
481
|
-
/* stylelint-disable-line declaration-no-important */
|
482
|
-
}
|
483
|
-
|
484
|
-
[hidden] {
|
485
|
-
display: none !important;
|
486
|
-
/* stylelint-disable-line declaration-no-important */
|
487
|
-
}
|
488
|
-
|
489
463
|
.usa-grid,
|
490
464
|
.usa-grid-full {
|
491
465
|
max-width: 1200px;
|
@@ -819,6 +793,38 @@ body {
|
|
819
793
|
left: -999em;
|
820
794
|
}
|
821
795
|
|
796
|
+
html {
|
797
|
+
box-sizing: border-box;
|
798
|
+
}
|
799
|
+
|
800
|
+
*,
|
801
|
+
*::before,
|
802
|
+
*::after {
|
803
|
+
box-sizing: inherit;
|
804
|
+
}
|
805
|
+
|
806
|
+
body {
|
807
|
+
background-color: #ffffff;
|
808
|
+
overflow-x: hidden;
|
809
|
+
}
|
810
|
+
|
811
|
+
.lt-ie9 * {
|
812
|
+
-webkit-filter: none !important;
|
813
|
+
filter: none !important;
|
814
|
+
/* stylelint-disable-line declaration-no-important */
|
815
|
+
}
|
816
|
+
|
817
|
+
[hidden] {
|
818
|
+
display: none !important;
|
819
|
+
/* stylelint-disable-line declaration-no-important */
|
820
|
+
}
|
821
|
+
|
822
|
+
*:focus,
|
823
|
+
.usa-focus {
|
824
|
+
outline: 2px dotted #aeb0b5;
|
825
|
+
outline-offset: 3px;
|
826
|
+
}
|
827
|
+
|
822
828
|
/* stylelint-disable selector-no-qualifying-type */
|
823
829
|
.usa-button,
|
824
830
|
.usa-button-primary,
|
@@ -839,7 +845,7 @@ button,
|
|
839
845
|
appearance: none;
|
840
846
|
background-color: #0071bc;
|
841
847
|
border: 0;
|
842
|
-
border-radius:
|
848
|
+
border-radius: 5px;
|
843
849
|
color: #ffffff;
|
844
850
|
cursor: pointer;
|
845
851
|
display: inline-block;
|
@@ -847,7 +853,6 @@ button,
|
|
847
853
|
font-size: 1.7rem;
|
848
854
|
font-weight: 700;
|
849
855
|
line-height: 1;
|
850
|
-
outline: none;
|
851
856
|
padding: 1rem 2rem;
|
852
857
|
text-align: center;
|
853
858
|
text-decoration: none;
|
@@ -891,26 +896,6 @@ button.usa-button-hover,
|
|
891
896
|
text-decoration: none;
|
892
897
|
}
|
893
898
|
|
894
|
-
.usa-button:focus, .usa-button.usa-button-focus,
|
895
|
-
.usa-button-primary:focus,
|
896
|
-
.usa-button-primary.usa-button-focus,
|
897
|
-
.usa-button:visited:focus,
|
898
|
-
.usa-button:visited.usa-button-focus,
|
899
|
-
.usa-button-primary:visited:focus,
|
900
|
-
.usa-button-primary:visited.usa-button-focus,
|
901
|
-
button:focus,
|
902
|
-
button.usa-button-focus,
|
903
|
-
[type=button]:focus,
|
904
|
-
[type=button].usa-button-focus,
|
905
|
-
[type=submit]:focus,
|
906
|
-
[type=submit].usa-button-focus,
|
907
|
-
[type=reset]:focus,
|
908
|
-
[type=reset].usa-button-focus,
|
909
|
-
[type=image]:focus,
|
910
|
-
[type=image].usa-button-focus {
|
911
|
-
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
|
912
|
-
}
|
913
|
-
|
914
899
|
.usa-button:active, .usa-button.usa-button-active,
|
915
900
|
.usa-button-primary:active,
|
916
901
|
.usa-button-primary.usa-button-active,
|
@@ -994,7 +979,9 @@ button.usa-button-secondary,
|
|
994
979
|
[type=submit].usa-button-secondary,
|
995
980
|
[type=reset].usa-button-secondary,
|
996
981
|
[type=image].usa-button-secondary {
|
997
|
-
background-color: #
|
982
|
+
background-color: #ffffff;
|
983
|
+
box-shadow: inset 0 0 0 2px #0071bc;
|
984
|
+
color: #0071bc;
|
998
985
|
}
|
999
986
|
|
1000
987
|
.usa-button.usa-button-secondary:hover, .usa-button.usa-button-secondary.usa-button-hover,
|
@@ -1014,7 +1001,8 @@ button.usa-button-secondary.usa-button-hover,
|
|
1014
1001
|
[type=reset].usa-button-secondary.usa-button-hover,
|
1015
1002
|
[type=image].usa-button-secondary:hover,
|
1016
1003
|
[type=image].usa-button-secondary.usa-button-hover {
|
1017
|
-
|
1004
|
+
box-shadow: inset 0 0 0 2px #205493;
|
1005
|
+
color: #205493;
|
1018
1006
|
}
|
1019
1007
|
|
1020
1008
|
.usa-button.usa-button-secondary:active, .usa-button.usa-button-secondary.usa-button-active,
|
@@ -1034,7 +1022,104 @@ button.usa-button-secondary.usa-button-active,
|
|
1034
1022
|
[type=reset].usa-button-secondary.usa-button-active,
|
1035
1023
|
[type=image].usa-button-secondary:active,
|
1036
1024
|
[type=image].usa-button-secondary.usa-button-active {
|
1037
|
-
|
1025
|
+
box-shadow: inset 0 0 0 2px #112e51;
|
1026
|
+
color: #112e51;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
.usa-button.usa-button-secondary-inverse, .usa-button.usa-button-outline-inverse,
|
1030
|
+
.usa-button-primary.usa-button-secondary-inverse,
|
1031
|
+
.usa-button-primary.usa-button-outline-inverse,
|
1032
|
+
.usa-button:visited.usa-button-secondary-inverse,
|
1033
|
+
.usa-button:visited.usa-button-outline-inverse,
|
1034
|
+
.usa-button-primary:visited.usa-button-secondary-inverse,
|
1035
|
+
.usa-button-primary:visited.usa-button-outline-inverse,
|
1036
|
+
button.usa-button-secondary-inverse,
|
1037
|
+
button.usa-button-outline-inverse,
|
1038
|
+
[type=button].usa-button-secondary-inverse,
|
1039
|
+
[type=button].usa-button-outline-inverse,
|
1040
|
+
[type=submit].usa-button-secondary-inverse,
|
1041
|
+
[type=submit].usa-button-outline-inverse,
|
1042
|
+
[type=reset].usa-button-secondary-inverse,
|
1043
|
+
[type=reset].usa-button-outline-inverse,
|
1044
|
+
[type=image].usa-button-secondary-inverse,
|
1045
|
+
[type=image].usa-button-outline-inverse {
|
1046
|
+
background: transparent;
|
1047
|
+
box-shadow: inset 0 0 0 2px #ffffff;
|
1048
|
+
color: #ffffff;
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
.usa-button.usa-button-secondary-inverse:hover, .usa-button.usa-button-secondary-inverse.usa-button-hover, .usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
|
1052
|
+
.usa-button-primary.usa-button-secondary-inverse:hover,
|
1053
|
+
.usa-button-primary.usa-button-secondary-inverse.usa-button-hover,
|
1054
|
+
.usa-button-primary.usa-button-outline-inverse:hover,
|
1055
|
+
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
|
1056
|
+
.usa-button:visited.usa-button-secondary-inverse:hover,
|
1057
|
+
.usa-button:visited.usa-button-secondary-inverse.usa-button-hover,
|
1058
|
+
.usa-button:visited.usa-button-outline-inverse:hover,
|
1059
|
+
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
|
1060
|
+
.usa-button-primary:visited.usa-button-secondary-inverse:hover,
|
1061
|
+
.usa-button-primary:visited.usa-button-secondary-inverse.usa-button-hover,
|
1062
|
+
.usa-button-primary:visited.usa-button-outline-inverse:hover,
|
1063
|
+
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
|
1064
|
+
button.usa-button-secondary-inverse:hover,
|
1065
|
+
button.usa-button-secondary-inverse.usa-button-hover,
|
1066
|
+
button.usa-button-outline-inverse:hover,
|
1067
|
+
button.usa-button-outline-inverse.usa-button-hover,
|
1068
|
+
[type=button].usa-button-secondary-inverse:hover,
|
1069
|
+
[type=button].usa-button-secondary-inverse.usa-button-hover,
|
1070
|
+
[type=button].usa-button-outline-inverse:hover,
|
1071
|
+
[type=button].usa-button-outline-inverse.usa-button-hover,
|
1072
|
+
[type=submit].usa-button-secondary-inverse:hover,
|
1073
|
+
[type=submit].usa-button-secondary-inverse.usa-button-hover,
|
1074
|
+
[type=submit].usa-button-outline-inverse:hover,
|
1075
|
+
[type=submit].usa-button-outline-inverse.usa-button-hover,
|
1076
|
+
[type=reset].usa-button-secondary-inverse:hover,
|
1077
|
+
[type=reset].usa-button-secondary-inverse.usa-button-hover,
|
1078
|
+
[type=reset].usa-button-outline-inverse:hover,
|
1079
|
+
[type=reset].usa-button-outline-inverse.usa-button-hover,
|
1080
|
+
[type=image].usa-button-secondary-inverse:hover,
|
1081
|
+
[type=image].usa-button-secondary-inverse.usa-button-hover,
|
1082
|
+
[type=image].usa-button-outline-inverse:hover,
|
1083
|
+
[type=image].usa-button-outline-inverse.usa-button-hover {
|
1084
|
+
box-shadow: inset 0 0 0 2px #d6d7d9;
|
1085
|
+
color: #d6d7d9;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.usa-button.usa-button-secondary-inverse:active, .usa-button.usa-button-secondary-inverse.usa-button-active, .usa-button.usa-button-outline-inverse:active, .usa-button.usa-button-outline-inverse.usa-button-active,
|
1089
|
+
.usa-button-primary.usa-button-secondary-inverse:active,
|
1090
|
+
.usa-button-primary.usa-button-secondary-inverse.usa-button-active,
|
1091
|
+
.usa-button-primary.usa-button-outline-inverse:active,
|
1092
|
+
.usa-button-primary.usa-button-outline-inverse.usa-button-active,
|
1093
|
+
.usa-button:visited.usa-button-secondary-inverse:active,
|
1094
|
+
.usa-button:visited.usa-button-secondary-inverse.usa-button-active,
|
1095
|
+
.usa-button:visited.usa-button-outline-inverse:active,
|
1096
|
+
.usa-button:visited.usa-button-outline-inverse.usa-button-active,
|
1097
|
+
.usa-button-primary:visited.usa-button-secondary-inverse:active,
|
1098
|
+
.usa-button-primary:visited.usa-button-secondary-inverse.usa-button-active,
|
1099
|
+
.usa-button-primary:visited.usa-button-outline-inverse:active,
|
1100
|
+
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-active,
|
1101
|
+
button.usa-button-secondary-inverse:active,
|
1102
|
+
button.usa-button-secondary-inverse.usa-button-active,
|
1103
|
+
button.usa-button-outline-inverse:active,
|
1104
|
+
button.usa-button-outline-inverse.usa-button-active,
|
1105
|
+
[type=button].usa-button-secondary-inverse:active,
|
1106
|
+
[type=button].usa-button-secondary-inverse.usa-button-active,
|
1107
|
+
[type=button].usa-button-outline-inverse:active,
|
1108
|
+
[type=button].usa-button-outline-inverse.usa-button-active,
|
1109
|
+
[type=submit].usa-button-secondary-inverse:active,
|
1110
|
+
[type=submit].usa-button-secondary-inverse.usa-button-active,
|
1111
|
+
[type=submit].usa-button-outline-inverse:active,
|
1112
|
+
[type=submit].usa-button-outline-inverse.usa-button-active,
|
1113
|
+
[type=reset].usa-button-secondary-inverse:active,
|
1114
|
+
[type=reset].usa-button-secondary-inverse.usa-button-active,
|
1115
|
+
[type=reset].usa-button-outline-inverse:active,
|
1116
|
+
[type=reset].usa-button-outline-inverse.usa-button-active,
|
1117
|
+
[type=image].usa-button-secondary-inverse:active,
|
1118
|
+
[type=image].usa-button-secondary-inverse.usa-button-active,
|
1119
|
+
[type=image].usa-button-outline-inverse:active,
|
1120
|
+
[type=image].usa-button-outline-inverse.usa-button-active {
|
1121
|
+
box-shadow: inset 0 0 0 2px #aeb0b5;
|
1122
|
+
color: #d6d7d9;
|
1038
1123
|
}
|
1039
1124
|
|
1040
1125
|
.usa-button.usa-button-gray,
|
@@ -1089,156 +1174,56 @@ button.usa-button-gray.usa-button-active,
|
|
1089
1174
|
background-color: #212121;
|
1090
1175
|
}
|
1091
1176
|
|
1092
|
-
.usa-button.usa-button-
|
1093
|
-
.usa-button-primary.usa-button-
|
1094
|
-
.usa-button:visited.usa-button-
|
1095
|
-
.usa-button-primary:visited.usa-button-
|
1096
|
-
button.usa-button-
|
1097
|
-
[type=button].usa-button-
|
1098
|
-
[type=submit].usa-button-
|
1099
|
-
[type=reset].usa-button-
|
1100
|
-
[type=image].usa-button-
|
1101
|
-
background-color: #
|
1102
|
-
box-shadow: inset 0 0 0 2px #0071bc;
|
1103
|
-
color: #0071bc;
|
1104
|
-
}
|
1105
|
-
|
1106
|
-
.usa-button.usa-button-outline:hover, .usa-button.usa-button-outline.usa-button-hover,
|
1107
|
-
.usa-button-primary.usa-button-outline:hover,
|
1108
|
-
.usa-button-primary.usa-button-outline.usa-button-hover,
|
1109
|
-
.usa-button:visited.usa-button-outline:hover,
|
1110
|
-
.usa-button:visited.usa-button-outline.usa-button-hover,
|
1111
|
-
.usa-button-primary:visited.usa-button-outline:hover,
|
1112
|
-
.usa-button-primary:visited.usa-button-outline.usa-button-hover,
|
1113
|
-
button.usa-button-outline:hover,
|
1114
|
-
button.usa-button-outline.usa-button-hover,
|
1115
|
-
[type=button].usa-button-outline:hover,
|
1116
|
-
[type=button].usa-button-outline.usa-button-hover,
|
1117
|
-
[type=submit].usa-button-outline:hover,
|
1118
|
-
[type=submit].usa-button-outline.usa-button-hover,
|
1119
|
-
[type=reset].usa-button-outline:hover,
|
1120
|
-
[type=reset].usa-button-outline.usa-button-hover,
|
1121
|
-
[type=image].usa-button-outline:hover,
|
1122
|
-
[type=image].usa-button-outline.usa-button-hover {
|
1123
|
-
box-shadow: inset 0 0 0 2px #205493;
|
1124
|
-
color: #205493;
|
1125
|
-
}
|
1126
|
-
|
1127
|
-
.usa-button.usa-button-outline:active, .usa-button.usa-button-outline.usa-button-active,
|
1128
|
-
.usa-button-primary.usa-button-outline:active,
|
1129
|
-
.usa-button-primary.usa-button-outline.usa-button-active,
|
1130
|
-
.usa-button:visited.usa-button-outline:active,
|
1131
|
-
.usa-button:visited.usa-button-outline.usa-button-active,
|
1132
|
-
.usa-button-primary:visited.usa-button-outline:active,
|
1133
|
-
.usa-button-primary:visited.usa-button-outline.usa-button-active,
|
1134
|
-
button.usa-button-outline:active,
|
1135
|
-
button.usa-button-outline.usa-button-active,
|
1136
|
-
[type=button].usa-button-outline:active,
|
1137
|
-
[type=button].usa-button-outline.usa-button-active,
|
1138
|
-
[type=submit].usa-button-outline:active,
|
1139
|
-
[type=submit].usa-button-outline.usa-button-active,
|
1140
|
-
[type=reset].usa-button-outline:active,
|
1141
|
-
[type=reset].usa-button-outline.usa-button-active,
|
1142
|
-
[type=image].usa-button-outline:active,
|
1143
|
-
[type=image].usa-button-outline.usa-button-active {
|
1144
|
-
box-shadow: inset 0 0 0 2px #112e51;
|
1145
|
-
color: #112e51;
|
1146
|
-
}
|
1147
|
-
|
1148
|
-
.usa-button.usa-button-outline:focus, .usa-button.usa-button-outline.usa-button-focus,
|
1149
|
-
.usa-button-primary.usa-button-outline:focus,
|
1150
|
-
.usa-button-primary.usa-button-outline.usa-button-focus,
|
1151
|
-
.usa-button:visited.usa-button-outline:focus,
|
1152
|
-
.usa-button:visited.usa-button-outline.usa-button-focus,
|
1153
|
-
.usa-button-primary:visited.usa-button-outline:focus,
|
1154
|
-
.usa-button-primary:visited.usa-button-outline.usa-button-focus,
|
1155
|
-
button.usa-button-outline:focus,
|
1156
|
-
button.usa-button-outline.usa-button-focus,
|
1157
|
-
[type=button].usa-button-outline:focus,
|
1158
|
-
[type=button].usa-button-outline.usa-button-focus,
|
1159
|
-
[type=submit].usa-button-outline:focus,
|
1160
|
-
[type=submit].usa-button-outline.usa-button-focus,
|
1161
|
-
[type=reset].usa-button-outline:focus,
|
1162
|
-
[type=reset].usa-button-outline.usa-button-focus,
|
1163
|
-
[type=image].usa-button-outline:focus,
|
1164
|
-
[type=image].usa-button-outline.usa-button-focus {
|
1165
|
-
box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #3e94cf, 0 0 7px #3e94cf;
|
1166
|
-
}
|
1167
|
-
|
1168
|
-
.usa-button.usa-button-outline-inverse,
|
1169
|
-
.usa-button-primary.usa-button-outline-inverse,
|
1170
|
-
.usa-button:visited.usa-button-outline-inverse,
|
1171
|
-
.usa-button-primary:visited.usa-button-outline-inverse,
|
1172
|
-
button.usa-button-outline-inverse,
|
1173
|
-
[type=button].usa-button-outline-inverse,
|
1174
|
-
[type=submit].usa-button-outline-inverse,
|
1175
|
-
[type=reset].usa-button-outline-inverse,
|
1176
|
-
[type=image].usa-button-outline-inverse {
|
1177
|
-
background: transparent;
|
1178
|
-
box-shadow: inset 0 0 0 2px #ffffff;
|
1179
|
-
color: #ffffff;
|
1180
|
-
}
|
1181
|
-
|
1182
|
-
.usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
|
1183
|
-
.usa-button-primary.usa-button-outline-inverse:hover,
|
1184
|
-
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
|
1185
|
-
.usa-button:visited.usa-button-outline-inverse:hover,
|
1186
|
-
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
|
1187
|
-
.usa-button-primary:visited.usa-button-outline-inverse:hover,
|
1188
|
-
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
|
1189
|
-
button.usa-button-outline-inverse:hover,
|
1190
|
-
button.usa-button-outline-inverse.usa-button-hover,
|
1191
|
-
[type=button].usa-button-outline-inverse:hover,
|
1192
|
-
[type=button].usa-button-outline-inverse.usa-button-hover,
|
1193
|
-
[type=submit].usa-button-outline-inverse:hover,
|
1194
|
-
[type=submit].usa-button-outline-inverse.usa-button-hover,
|
1195
|
-
[type=reset].usa-button-outline-inverse:hover,
|
1196
|
-
[type=reset].usa-button-outline-inverse.usa-button-hover,
|
1197
|
-
[type=image].usa-button-outline-inverse:hover,
|
1198
|
-
[type=image].usa-button-outline-inverse.usa-button-hover {
|
1199
|
-
box-shadow: inset 0 0 0 2px #d6d7d9;
|
1200
|
-
color: #d6d7d9;
|
1177
|
+
.usa-button.usa-button-red,
|
1178
|
+
.usa-button-primary.usa-button-red,
|
1179
|
+
.usa-button:visited.usa-button-red,
|
1180
|
+
.usa-button-primary:visited.usa-button-red,
|
1181
|
+
button.usa-button-red,
|
1182
|
+
[type=button].usa-button-red,
|
1183
|
+
[type=submit].usa-button-red,
|
1184
|
+
[type=reset].usa-button-red,
|
1185
|
+
[type=image].usa-button-red {
|
1186
|
+
background-color: #e31c3d;
|
1201
1187
|
}
|
1202
1188
|
|
1203
|
-
.usa-button.usa-button-
|
1204
|
-
.usa-button-primary.usa-button-
|
1205
|
-
.usa-button-primary.usa-button-
|
1206
|
-
.usa-button:visited.usa-button-
|
1207
|
-
.usa-button:visited.usa-button-
|
1208
|
-
.usa-button-primary:visited.usa-button-
|
1209
|
-
.usa-button-primary:visited.usa-button-
|
1210
|
-
button.usa-button-
|
1211
|
-
button.usa-button-
|
1212
|
-
[type=button].usa-button-
|
1213
|
-
[type=button].usa-button-
|
1214
|
-
[type=submit].usa-button-
|
1215
|
-
[type=submit].usa-button-
|
1216
|
-
[type=reset].usa-button-
|
1217
|
-
[type=reset].usa-button-
|
1218
|
-
[type=image].usa-button-
|
1219
|
-
[type=image].usa-button-
|
1220
|
-
|
1221
|
-
color: #d6d7d9;
|
1189
|
+
.usa-button.usa-button-red:hover, .usa-button.usa-button-red.usa-button-hover,
|
1190
|
+
.usa-button-primary.usa-button-red:hover,
|
1191
|
+
.usa-button-primary.usa-button-red.usa-button-hover,
|
1192
|
+
.usa-button:visited.usa-button-red:hover,
|
1193
|
+
.usa-button:visited.usa-button-red.usa-button-hover,
|
1194
|
+
.usa-button-primary:visited.usa-button-red:hover,
|
1195
|
+
.usa-button-primary:visited.usa-button-red.usa-button-hover,
|
1196
|
+
button.usa-button-red:hover,
|
1197
|
+
button.usa-button-red.usa-button-hover,
|
1198
|
+
[type=button].usa-button-red:hover,
|
1199
|
+
[type=button].usa-button-red.usa-button-hover,
|
1200
|
+
[type=submit].usa-button-red:hover,
|
1201
|
+
[type=submit].usa-button-red.usa-button-hover,
|
1202
|
+
[type=reset].usa-button-red:hover,
|
1203
|
+
[type=reset].usa-button-red.usa-button-hover,
|
1204
|
+
[type=image].usa-button-red:hover,
|
1205
|
+
[type=image].usa-button-red.usa-button-hover {
|
1206
|
+
background-color: #cd2026;
|
1222
1207
|
}
|
1223
1208
|
|
1224
|
-
.usa-button.usa-button-
|
1225
|
-
.usa-button-primary.usa-button-
|
1226
|
-
.usa-button-primary.usa-button-
|
1227
|
-
.usa-button:visited.usa-button-
|
1228
|
-
.usa-button:visited.usa-button-
|
1229
|
-
.usa-button-primary:visited.usa-button-
|
1230
|
-
.usa-button-primary:visited.usa-button-
|
1231
|
-
button.usa-button-
|
1232
|
-
button.usa-button-
|
1233
|
-
[type=button].usa-button-
|
1234
|
-
[type=button].usa-button-
|
1235
|
-
[type=submit].usa-button-
|
1236
|
-
[type=submit].usa-button-
|
1237
|
-
[type=reset].usa-button-
|
1238
|
-
[type=reset].usa-button-
|
1239
|
-
[type=image].usa-button-
|
1240
|
-
[type=image].usa-button-
|
1241
|
-
|
1209
|
+
.usa-button.usa-button-red:active, .usa-button.usa-button-red.usa-button-active,
|
1210
|
+
.usa-button-primary.usa-button-red:active,
|
1211
|
+
.usa-button-primary.usa-button-red.usa-button-active,
|
1212
|
+
.usa-button:visited.usa-button-red:active,
|
1213
|
+
.usa-button:visited.usa-button-red.usa-button-active,
|
1214
|
+
.usa-button-primary:visited.usa-button-red:active,
|
1215
|
+
.usa-button-primary:visited.usa-button-red.usa-button-active,
|
1216
|
+
button.usa-button-red:active,
|
1217
|
+
button.usa-button-red.usa-button-active,
|
1218
|
+
[type=button].usa-button-red:active,
|
1219
|
+
[type=button].usa-button-red.usa-button-active,
|
1220
|
+
[type=submit].usa-button-red:active,
|
1221
|
+
[type=submit].usa-button-red.usa-button-active,
|
1222
|
+
[type=reset].usa-button-red:active,
|
1223
|
+
[type=reset].usa-button-red.usa-button-active,
|
1224
|
+
[type=image].usa-button-red:active,
|
1225
|
+
[type=image].usa-button-red.usa-button-active {
|
1226
|
+
background-color: #981b1e;
|
1242
1227
|
}
|
1243
1228
|
|
1244
1229
|
.usa-button.usa-button-big,
|
@@ -1250,28 +1235,139 @@ button.usa-button-big,
|
|
1250
1235
|
[type=submit].usa-button-big,
|
1251
1236
|
[type=reset].usa-button-big,
|
1252
1237
|
[type=image].usa-button-big {
|
1253
|
-
|
1238
|
+
border-radius: 8px;
|
1239
|
+
font-size: 2.4rem;
|
1254
1240
|
padding: 1.5rem 3rem;
|
1255
1241
|
}
|
1256
1242
|
|
1257
|
-
/* stylelint-disable */
|
1258
1243
|
.usa-button:disabled,
|
1244
|
+
.usa-button-primary:disabled,
|
1245
|
+
.usa-button:visited:disabled,
|
1246
|
+
.usa-button-primary:visited:disabled,
|
1247
|
+
button:disabled,
|
1248
|
+
[type=button]:disabled,
|
1249
|
+
[type=submit]:disabled,
|
1250
|
+
[type=reset]:disabled,
|
1251
|
+
[type=image]:disabled {
|
1252
|
+
background-color: #d6d7d9;
|
1253
|
+
pointer-events: none;
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
.usa-button:disabled:hover, .usa-button:disabled.usa-button-hover, .usa-button:disabled:active, .usa-button:disabled.usa-button-active, .usa-button:disabled:focus, .usa-button:disabled.usa-focus,
|
1257
|
+
.usa-button-primary:disabled:hover,
|
1258
|
+
.usa-button-primary:disabled.usa-button-hover,
|
1259
|
+
.usa-button-primary:disabled:active,
|
1260
|
+
.usa-button-primary:disabled.usa-button-active,
|
1261
|
+
.usa-button-primary:disabled:focus,
|
1262
|
+
.usa-button-primary:disabled.usa-focus,
|
1263
|
+
.usa-button:visited:disabled:hover,
|
1264
|
+
.usa-button:visited:disabled.usa-button-hover,
|
1265
|
+
.usa-button:visited:disabled:active,
|
1266
|
+
.usa-button:visited:disabled.usa-button-active,
|
1267
|
+
.usa-button:visited:disabled:focus,
|
1268
|
+
.usa-button:visited:disabled.usa-focus,
|
1269
|
+
.usa-button-primary:visited:disabled:hover,
|
1270
|
+
.usa-button-primary:visited:disabled.usa-button-hover,
|
1271
|
+
.usa-button-primary:visited:disabled:active,
|
1272
|
+
.usa-button-primary:visited:disabled.usa-button-active,
|
1273
|
+
.usa-button-primary:visited:disabled:focus,
|
1274
|
+
.usa-button-primary:visited:disabled.usa-focus,
|
1275
|
+
button:disabled:hover,
|
1276
|
+
button:disabled.usa-button-hover,
|
1277
|
+
button:disabled:active,
|
1278
|
+
button:disabled.usa-button-active,
|
1279
|
+
button:disabled:focus,
|
1280
|
+
button:disabled.usa-focus,
|
1281
|
+
[type=button]:disabled:hover,
|
1282
|
+
[type=button]:disabled.usa-button-hover,
|
1283
|
+
[type=button]:disabled:active,
|
1284
|
+
[type=button]:disabled.usa-button-active,
|
1285
|
+
[type=button]:disabled:focus,
|
1286
|
+
[type=button]:disabled.usa-focus,
|
1287
|
+
[type=submit]:disabled:hover,
|
1288
|
+
[type=submit]:disabled.usa-button-hover,
|
1289
|
+
[type=submit]:disabled:active,
|
1290
|
+
[type=submit]:disabled.usa-button-active,
|
1291
|
+
[type=submit]:disabled:focus,
|
1292
|
+
[type=submit]:disabled.usa-focus,
|
1293
|
+
[type=reset]:disabled:hover,
|
1294
|
+
[type=reset]:disabled.usa-button-hover,
|
1295
|
+
[type=reset]:disabled:active,
|
1296
|
+
[type=reset]:disabled.usa-button-active,
|
1297
|
+
[type=reset]:disabled:focus,
|
1298
|
+
[type=reset]:disabled.usa-focus,
|
1299
|
+
[type=image]:disabled:hover,
|
1300
|
+
[type=image]:disabled.usa-button-hover,
|
1301
|
+
[type=image]:disabled:active,
|
1302
|
+
[type=image]:disabled.usa-button-active,
|
1303
|
+
[type=image]:disabled:focus,
|
1304
|
+
[type=image]:disabled.usa-focus {
|
1305
|
+
background-color: #d6d7d9;
|
1306
|
+
border: 0;
|
1307
|
+
box-shadow: none;
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
/* stylelint-disable */
|
1259
1311
|
.usa-button-disabled {
|
1260
1312
|
background-color: #d6d7d9;
|
1261
|
-
color: #323a45;
|
1262
1313
|
pointer-events: none;
|
1263
1314
|
}
|
1264
1315
|
|
1265
|
-
.usa-button
|
1266
|
-
.usa-button-disabled:hover,
|
1267
|
-
.usa-button-disabled.usa-button-hover,
|
1268
|
-
.usa-button-disabled:active,
|
1269
|
-
.usa-button-disabled.usa-button-active,
|
1270
|
-
.usa-button-disabled:focus {
|
1316
|
+
.usa-button-disabled:hover, .usa-button-disabled.usa-button-hover, .usa-button-disabled:active, .usa-button-disabled.usa-button-active, .usa-button-disabled:focus, .usa-button-disabled.usa-focus {
|
1271
1317
|
background-color: #d6d7d9;
|
1272
1318
|
border: 0;
|
1273
1319
|
box-shadow: none;
|
1274
|
-
|
1320
|
+
}
|
1321
|
+
|
1322
|
+
.usa-button-secondary-disabled,
|
1323
|
+
.usa-button-secondary-inverse-disabled,
|
1324
|
+
.usa-button-secondary:disabled,
|
1325
|
+
.usa-button-secondary-inverse:disabled,
|
1326
|
+
.usa-button-outline-inverse:disabled {
|
1327
|
+
box-shadow: inset 0 0 0 2px #d6d7d9;
|
1328
|
+
pointer-events: none;
|
1329
|
+
color: #d6d7d9;
|
1330
|
+
}
|
1331
|
+
|
1332
|
+
.usa-button-secondary-disabled:hover, .usa-button-secondary-disabled.usa-button-hover, .usa-button-secondary-disabled:active, .usa-button-secondary-disabled.usa-button-active, .usa-button-secondary-disabled:focus, .usa-button-secondary-disabled.usa-focus,
|
1333
|
+
.usa-button-secondary-inverse-disabled:hover,
|
1334
|
+
.usa-button-secondary-inverse-disabled.usa-button-hover,
|
1335
|
+
.usa-button-secondary-inverse-disabled:active,
|
1336
|
+
.usa-button-secondary-inverse-disabled.usa-button-active,
|
1337
|
+
.usa-button-secondary-inverse-disabled:focus,
|
1338
|
+
.usa-button-secondary-inverse-disabled.usa-focus,
|
1339
|
+
.usa-button-secondary:disabled:hover,
|
1340
|
+
.usa-button-secondary:disabled.usa-button-hover,
|
1341
|
+
.usa-button-secondary:disabled:active,
|
1342
|
+
.usa-button-secondary:disabled.usa-button-active,
|
1343
|
+
.usa-button-secondary:disabled:focus,
|
1344
|
+
.usa-button-secondary:disabled.usa-focus,
|
1345
|
+
.usa-button-secondary-inverse:disabled:hover,
|
1346
|
+
.usa-button-secondary-inverse:disabled.usa-button-hover,
|
1347
|
+
.usa-button-secondary-inverse:disabled:active,
|
1348
|
+
.usa-button-secondary-inverse:disabled.usa-button-active,
|
1349
|
+
.usa-button-secondary-inverse:disabled:focus,
|
1350
|
+
.usa-button-secondary-inverse:disabled.usa-focus,
|
1351
|
+
.usa-button-outline-inverse:disabled:hover,
|
1352
|
+
.usa-button-outline-inverse:disabled.usa-button-hover,
|
1353
|
+
.usa-button-outline-inverse:disabled:active,
|
1354
|
+
.usa-button-outline-inverse:disabled.usa-button-active,
|
1355
|
+
.usa-button-outline-inverse:disabled:focus,
|
1356
|
+
.usa-button-outline-inverse:disabled.usa-focus {
|
1357
|
+
background-color: #ffffff;
|
1358
|
+
border: 0;
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
html .usa-button-secondary-disabled,
|
1362
|
+
.usa-button-secondary:disabled {
|
1363
|
+
background-color: #ffffff;
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
html .usa-button-secondary-inverse-disabled,
|
1367
|
+
.usa-button-secondary-inverse:disabled {
|
1368
|
+
background-color: transparent;
|
1369
|
+
color: #5b616b;
|
1370
|
+
box-shadow: inset 0 0 0 2px #5b616b;
|
1275
1371
|
}
|
1276
1372
|
|
1277
1373
|
.usa-button-unstyled {
|
@@ -1280,7 +1376,6 @@ button.usa-button-big,
|
|
1280
1376
|
border-radius: 0;
|
1281
1377
|
font-weight: 400;
|
1282
1378
|
margin: 0;
|
1283
|
-
outline: 0;
|
1284
1379
|
padding: 0;
|
1285
1380
|
text-align: left;
|
1286
1381
|
-webkit-font-smoothing: auto;
|
@@ -1334,19 +1429,10 @@ select {
|
|
1334
1429
|
line-height: 1.3;
|
1335
1430
|
margin: 0.2em 0;
|
1336
1431
|
max-width: 46rem;
|
1337
|
-
outline: none;
|
1338
1432
|
padding: 1rem 0.7em;
|
1339
1433
|
width: 100%;
|
1340
1434
|
}
|
1341
1435
|
|
1342
|
-
input:focus, input.usa-input-focus,
|
1343
|
-
textarea:focus,
|
1344
|
-
textarea.usa-input-focus,
|
1345
|
-
select:focus,
|
1346
|
-
select.usa-input-focus {
|
1347
|
-
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
|
1348
|
-
}
|
1349
|
-
|
1350
1436
|
input.usa-input-success,
|
1351
1437
|
textarea.usa-input-success,
|
1352
1438
|
select.usa-input-success {
|
@@ -1401,7 +1487,12 @@ select.usa-input-success {
|
|
1401
1487
|
|
1402
1488
|
.usa-input-required:after {
|
1403
1489
|
color: #981b1e;
|
1404
|
-
content: ' (*
|
1490
|
+
content: ' (*required)';
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
.usa-input-optional:after {
|
1494
|
+
color: #757575;
|
1495
|
+
content: ' (optional)';
|
1405
1496
|
}
|
1406
1497
|
|
1407
1498
|
label {
|
@@ -1419,11 +1510,30 @@ select {
|
|
1419
1510
|
-webkit-appearance: none;
|
1420
1511
|
appearance: none;
|
1421
1512
|
background-color: #ffffff;
|
1422
|
-
background-image: url("../img/arrow-
|
1423
|
-
background-image: url("../img/arrow-
|
1513
|
+
background-image: url("../img/arrow-both.png");
|
1514
|
+
background-image: url("../img/arrow-both.svg");
|
1424
1515
|
background-position: right 1.3rem center;
|
1425
1516
|
background-repeat: no-repeat;
|
1426
|
-
background-size:
|
1517
|
+
background-size: 1rem;
|
1518
|
+
padding-right: 3rem;
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
select::-ms-expand {
|
1522
|
+
display: none;
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
select:-webkit-autofill {
|
1526
|
+
-webkit-appearance: menulist;
|
1527
|
+
appearance: menulist;
|
1528
|
+
}
|
1529
|
+
|
1530
|
+
select:-moz-focusring {
|
1531
|
+
color: transparent;
|
1532
|
+
text-shadow: 0 0 0 #000000;
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
option:first-child {
|
1536
|
+
font-weight: 700;
|
1427
1537
|
}
|
1428
1538
|
|
1429
1539
|
legend {
|
@@ -1460,30 +1570,31 @@ legend {
|
|
1460
1570
|
[type=radio] + label {
|
1461
1571
|
cursor: pointer;
|
1462
1572
|
font-weight: 400;
|
1463
|
-
margin-bottom: 0.
|
1573
|
+
margin-bottom: 0.65em;
|
1464
1574
|
}
|
1465
1575
|
|
1466
1576
|
[type=checkbox] + label::before,
|
1467
1577
|
[type=radio] + label::before {
|
1468
1578
|
background: #ffffff;
|
1469
|
-
border-radius:
|
1579
|
+
border-radius: 2px;
|
1470
1580
|
box-shadow: 0 0 0 1px #757575;
|
1471
1581
|
content: '\a0';
|
1472
1582
|
display: inline-block;
|
1473
|
-
height:
|
1474
|
-
line-height:
|
1583
|
+
height: 2rem;
|
1584
|
+
line-height: 2rem;
|
1475
1585
|
margin-right: 0.6em;
|
1476
1586
|
text-indent: 0.15em;
|
1477
1587
|
vertical-align: middle\0;
|
1478
|
-
width:
|
1588
|
+
width: 2rem;
|
1479
1589
|
}
|
1480
1590
|
|
1481
1591
|
[type=radio] + label::before {
|
1482
|
-
box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #757575;
|
1483
|
-
height: 1.6rem;
|
1484
|
-
line-height: 1.6rem;
|
1485
|
-
width: 1.6rem;
|
1486
1592
|
border-radius: 100%;
|
1593
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #757575;
|
1594
|
+
height: 1.4rem;
|
1595
|
+
line-height: 1.4rem;
|
1596
|
+
margin-right: 0.75em;
|
1597
|
+
width: 1.4rem;
|
1487
1598
|
}
|
1488
1599
|
|
1489
1600
|
[type=checkbox]:checked + label::before,
|
@@ -1496,10 +1607,6 @@ legend {
|
|
1496
1607
|
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0071bc;
|
1497
1608
|
}
|
1498
1609
|
|
1499
|
-
[type=radio]:focus + label::before {
|
1500
|
-
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0071bc, 0 0 3px 4px #3e94cf, 0 0 7px 4px #3e94cf;
|
1501
|
-
}
|
1502
|
-
|
1503
1610
|
[type=checkbox]:checked + label::before,
|
1504
1611
|
[type=checkbox]:checked:disabled + label::before {
|
1505
1612
|
background-image: url("../img/correct8.png");
|
@@ -1508,17 +1615,23 @@ legend {
|
|
1508
1615
|
background-repeat: no-repeat;
|
1509
1616
|
}
|
1510
1617
|
|
1511
|
-
[type=
|
1512
|
-
|
1618
|
+
[type=radio]:focus + label::before {
|
1619
|
+
outline: 2px dotted #aeb0b5;
|
1620
|
+
outline-offset: 6px;
|
1513
1621
|
}
|
1514
1622
|
|
1515
1623
|
[type=checkbox]:disabled + label {
|
1516
|
-
color: #
|
1624
|
+
color: #d6d7d9;
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
[type=checkbox]:focus + label::before {
|
1628
|
+
outline: 2px dotted #aeb0b5;
|
1629
|
+
outline-offset: 3px;
|
1517
1630
|
}
|
1518
1631
|
|
1519
1632
|
[type=checkbox]:disabled + label::before,
|
1520
1633
|
[type=radio]:disabled + label::before {
|
1521
|
-
background: #
|
1634
|
+
background: #f1f1f1;
|
1522
1635
|
box-shadow: 0 0 0 1px #aeb0b5;
|
1523
1636
|
cursor: not-allowed;
|
1524
1637
|
}
|
@@ -1530,11 +1643,6 @@ legend {
|
|
1530
1643
|
width: 100%;
|
1531
1644
|
}
|
1532
1645
|
|
1533
|
-
[type=range]:focus {
|
1534
|
-
box-shadow: none;
|
1535
|
-
outline: none;
|
1536
|
-
}
|
1537
|
-
|
1538
1646
|
[type=range]::-webkit-slider-runnable-track {
|
1539
1647
|
background: #aeb0b5;
|
1540
1648
|
border: 1px solid #757575;
|
@@ -1600,18 +1708,6 @@ legend {
|
|
1600
1708
|
border-radius: 2rem;
|
1601
1709
|
}
|
1602
1710
|
|
1603
|
-
[type=range]:focus::-webkit-slider-thumb {
|
1604
|
-
border: 2px solid #3e94cf;
|
1605
|
-
}
|
1606
|
-
|
1607
|
-
[type=range]:focus::-moz-range-thumb {
|
1608
|
-
border: 2px solid #3e94cf;
|
1609
|
-
}
|
1610
|
-
|
1611
|
-
[type=range]:focus::-ms-thumb {
|
1612
|
-
border: 2px solid #3e94cf;
|
1613
|
-
}
|
1614
|
-
|
1615
1711
|
.usa-date-of-birth label {
|
1616
1712
|
margin-top: 0;
|
1617
1713
|
}
|
@@ -1641,8 +1737,8 @@ legend {
|
|
1641
1737
|
}
|
1642
1738
|
|
1643
1739
|
.usa-label, .usa-label-big {
|
1644
|
-
background-color: #
|
1645
|
-
border-radius:
|
1740
|
+
background-color: #5b616b;
|
1741
|
+
border-radius: 2px;
|
1646
1742
|
color: #ffffff;
|
1647
1743
|
font-size: 1.5rem;
|
1648
1744
|
margin-right: 0.5rem;
|
@@ -1707,34 +1803,31 @@ p + ol {
|
|
1707
1803
|
table {
|
1708
1804
|
border-spacing: 0;
|
1709
1805
|
margin: 2em 0;
|
1710
|
-
min-width: 100%;
|
1711
1806
|
}
|
1712
1807
|
|
1713
|
-
|
1714
|
-
|
1715
|
-
background-color: #f1f1f1;
|
1808
|
+
thead th {
|
1809
|
+
font-weight: 700;
|
1716
1810
|
}
|
1717
1811
|
|
1718
|
-
|
1719
|
-
|
1812
|
+
thead th,
|
1813
|
+
thead td {
|
1814
|
+
background-color: #f1f1f1;
|
1720
1815
|
}
|
1721
1816
|
|
1722
|
-
|
1723
|
-
|
1817
|
+
th {
|
1818
|
+
text-align: left;
|
1724
1819
|
}
|
1725
1820
|
|
1726
|
-
|
1727
|
-
|
1821
|
+
th,
|
1822
|
+
td {
|
1728
1823
|
background-color: #ffffff;
|
1729
1824
|
border: 1px solid #5b616b;
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
.usa-table-borderless thead tr {
|
1734
|
-
background-color: transparent;
|
1825
|
+
font-weight: 400;
|
1826
|
+
padding: 1rem 1.5rem;
|
1735
1827
|
}
|
1736
1828
|
|
1737
1829
|
.usa-table-borderless thead th {
|
1830
|
+
background-color: transparent;
|
1738
1831
|
border-top: 0;
|
1739
1832
|
}
|
1740
1833
|
|
@@ -1744,6 +1837,18 @@ table td {
|
|
1744
1837
|
border-right: 0;
|
1745
1838
|
}
|
1746
1839
|
|
1840
|
+
.usa-table-borderless th:first-child {
|
1841
|
+
padding-left: 0;
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
caption {
|
1845
|
+
font-size: 1.5rem;
|
1846
|
+
font-weight: 700;
|
1847
|
+
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
|
1848
|
+
margin-bottom: 1.2rem;
|
1849
|
+
text-align: left;
|
1850
|
+
}
|
1851
|
+
|
1747
1852
|
html {
|
1748
1853
|
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
1749
1854
|
font-size: 10px;
|
@@ -1768,13 +1873,13 @@ a:hover, a:active {
|
|
1768
1873
|
color: #205493;
|
1769
1874
|
}
|
1770
1875
|
|
1771
|
-
a:
|
1772
|
-
|
1876
|
+
a:focus {
|
1877
|
+
outline: 2px dotted #aeb0b5;
|
1878
|
+
outline-offset: 3px;
|
1773
1879
|
}
|
1774
1880
|
|
1775
|
-
a:
|
1776
|
-
|
1777
|
-
outline: 0;
|
1881
|
+
a:visited {
|
1882
|
+
color: #4c2c92;
|
1778
1883
|
}
|
1779
1884
|
|
1780
1885
|
.usa-external_link::after {
|
@@ -1815,8 +1920,7 @@ h1,
|
|
1815
1920
|
h2,
|
1816
1921
|
h3,
|
1817
1922
|
h4,
|
1818
|
-
h5
|
1819
|
-
h6 {
|
1923
|
+
h5 {
|
1820
1924
|
clear: both;
|
1821
1925
|
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
|
1822
1926
|
line-height: 1.3;
|
@@ -1824,6 +1928,10 @@ h6 {
|
|
1824
1928
|
margin-top: 1.5em;
|
1825
1929
|
}
|
1826
1930
|
|
1931
|
+
h6 {
|
1932
|
+
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
1933
|
+
}
|
1934
|
+
|
1827
1935
|
h1 {
|
1828
1936
|
font-size: 4rem;
|
1829
1937
|
font-weight: 700;
|
@@ -1850,9 +1958,9 @@ h5 {
|
|
1850
1958
|
}
|
1851
1959
|
|
1852
1960
|
h6 {
|
1853
|
-
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
1854
1961
|
font-size: 1.3rem;
|
1855
1962
|
font-weight: 400;
|
1963
|
+
line-height: 1.5;
|
1856
1964
|
text-transform: uppercase;
|
1857
1965
|
}
|
1858
1966
|
|
@@ -1863,14 +1971,14 @@ dfn {
|
|
1863
1971
|
font-style: normal;
|
1864
1972
|
}
|
1865
1973
|
|
1866
|
-
.usa-content p
|
1974
|
+
.usa-content p,
|
1867
1975
|
.usa-content ul:not(.usa-accordion):not(.usa-accordion-bordered),
|
1868
1976
|
.usa-content ol:not(.usa-accordion):not(.usa-accordion-bordered) {
|
1869
|
-
max-width:
|
1977
|
+
max-width: 66ch;
|
1870
1978
|
}
|
1871
1979
|
|
1872
1980
|
.usa-content-list {
|
1873
|
-
max-width:
|
1981
|
+
max-width: 66ch;
|
1874
1982
|
}
|
1875
1983
|
|
1876
1984
|
.usa-sans p,
|
@@ -1915,6 +2023,7 @@ dfn {
|
|
1915
2023
|
.usa-font-lead {
|
1916
2024
|
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
|
1917
2025
|
font-size: 2rem;
|
2026
|
+
font-weight: 400;
|
1918
2027
|
line-height: 1.7;
|
1919
2028
|
max-width: 77rem;
|
1920
2029
|
}
|
@@ -2086,7 +2195,7 @@ dfn {
|
|
2086
2195
|
background-color: #f1f1f1;
|
2087
2196
|
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2088
2197
|
list-style: none;
|
2089
|
-
margin-bottom:
|
2198
|
+
margin-bottom: 0.5rem;
|
2090
2199
|
width: 100%;
|
2091
2200
|
}
|
2092
2201
|
|
@@ -2097,23 +2206,22 @@ dfn {
|
|
2097
2206
|
border-radius: 0;
|
2098
2207
|
font-weight: 400;
|
2099
2208
|
margin: 0;
|
2100
|
-
outline: 0;
|
2101
2209
|
padding: 0;
|
2102
2210
|
text-align: left;
|
2103
2211
|
-webkit-font-smoothing: auto;
|
2104
2212
|
background-color: #f1f1f1;
|
2105
2213
|
background-image: url("../img/minus.png");
|
2106
2214
|
background-image: url("../img/minus.svg");
|
2107
|
-
background-position: right
|
2215
|
+
background-position: right 2rem center;
|
2108
2216
|
background-repeat: no-repeat;
|
2109
|
-
background-size:
|
2217
|
+
background-size: 1.5rem;
|
2110
2218
|
color: #212121;
|
2111
2219
|
cursor: pointer;
|
2112
2220
|
display: inline-block;
|
2113
2221
|
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2114
2222
|
font-weight: 700;
|
2115
2223
|
margin: 0;
|
2116
|
-
padding: 1.5rem 5.5rem 1.5rem
|
2224
|
+
padding: 1.5rem 5.5rem 1.5rem 2rem;
|
2117
2225
|
width: 100%;
|
2118
2226
|
}
|
2119
2227
|
|
@@ -2122,11 +2230,6 @@ dfn {
|
|
2122
2230
|
background-color: transparent;
|
2123
2231
|
}
|
2124
2232
|
|
2125
|
-
.usa-accordion > ul button:focus,
|
2126
|
-
.usa-accordion-bordered > ul button:focus {
|
2127
|
-
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
|
2128
|
-
}
|
2129
|
-
|
2130
2233
|
.usa-accordion > ul button:hover,
|
2131
2234
|
.usa-accordion-bordered > ul button:hover {
|
2132
2235
|
background-color: #d6d7d9;
|
@@ -2153,7 +2256,7 @@ dfn {
|
|
2153
2256
|
background-image: url("../img/plus.png");
|
2154
2257
|
background-image: url("../img/plus.svg");
|
2155
2258
|
background-repeat: no-repeat;
|
2156
|
-
background-size: 1.
|
2259
|
+
background-size: 1.5rem;
|
2157
2260
|
}
|
2158
2261
|
|
2159
2262
|
.usa-accordion > li,
|
@@ -2161,7 +2264,7 @@ dfn {
|
|
2161
2264
|
background-color: #f1f1f1;
|
2162
2265
|
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2163
2266
|
list-style: none;
|
2164
|
-
margin-bottom:
|
2267
|
+
margin-bottom: 0.5rem;
|
2165
2268
|
width: 100%;
|
2166
2269
|
}
|
2167
2270
|
|
@@ -2174,7 +2277,7 @@ dfn {
|
|
2174
2277
|
.usa-accordion-content {
|
2175
2278
|
background-color: #ffffff;
|
2176
2279
|
overflow: auto;
|
2177
|
-
padding:
|
2280
|
+
padding: 1.5rem 2rem;
|
2178
2281
|
}
|
2179
2282
|
|
2180
2283
|
.usa-accordion-content > *:first-child {
|
@@ -2200,23 +2303,22 @@ dfn {
|
|
2200
2303
|
border-radius: 0;
|
2201
2304
|
font-weight: 400;
|
2202
2305
|
margin: 0;
|
2203
|
-
outline: 0;
|
2204
2306
|
padding: 0;
|
2205
2307
|
text-align: left;
|
2206
2308
|
-webkit-font-smoothing: auto;
|
2207
2309
|
background-color: #f1f1f1;
|
2208
2310
|
background-image: url("../img/minus.png");
|
2209
2311
|
background-image: url("../img/minus.svg");
|
2210
|
-
background-position: right
|
2312
|
+
background-position: right 2rem center;
|
2211
2313
|
background-repeat: no-repeat;
|
2212
|
-
background-size:
|
2314
|
+
background-size: 1.5rem;
|
2213
2315
|
color: #212121;
|
2214
2316
|
cursor: pointer;
|
2215
2317
|
display: inline-block;
|
2216
2318
|
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2217
2319
|
font-weight: 700;
|
2218
2320
|
margin: 0;
|
2219
|
-
padding: 1.5rem 5.5rem 1.5rem
|
2321
|
+
padding: 1.5rem 5.5rem 1.5rem 2rem;
|
2220
2322
|
width: 100%;
|
2221
2323
|
}
|
2222
2324
|
|
@@ -2224,10 +2326,6 @@ dfn {
|
|
2224
2326
|
background-color: transparent;
|
2225
2327
|
}
|
2226
2328
|
|
2227
|
-
.usa-accordion-button:focus {
|
2228
|
-
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
|
2229
|
-
}
|
2230
|
-
|
2231
2329
|
.usa-accordion-button:hover {
|
2232
2330
|
background-color: #d6d7d9;
|
2233
2331
|
color: #212121;
|
@@ -2246,22 +2344,29 @@ dfn {
|
|
2246
2344
|
background-image: url("../img/plus.png");
|
2247
2345
|
background-image: url("../img/plus.svg");
|
2248
2346
|
background-repeat: no-repeat;
|
2249
|
-
background-size: 1.
|
2347
|
+
background-size: 1.5rem;
|
2250
2348
|
}
|
2251
2349
|
|
2252
2350
|
.usa-alert {
|
2253
2351
|
background-color: #f1f1f1;
|
2254
|
-
background-position:
|
2352
|
+
background-position: 2rem 2rem;
|
2255
2353
|
background-repeat: no-repeat;
|
2256
|
-
background-size:
|
2257
|
-
|
2258
|
-
padding:
|
2354
|
+
background-size: 5.2rem;
|
2355
|
+
padding-bottom: 1.4rem;
|
2356
|
+
padding-left: 3rem;
|
2357
|
+
padding-right: 2rem;
|
2358
|
+
padding-top: 2rem;
|
2359
|
+
position: relative;
|
2259
2360
|
}
|
2260
2361
|
|
2261
|
-
|
2262
|
-
|
2263
|
-
|
2264
|
-
|
2362
|
+
.usa-alert::before {
|
2363
|
+
background-color: #8b8b8b;
|
2364
|
+
content: '';
|
2365
|
+
height: 100%;
|
2366
|
+
left: 0;
|
2367
|
+
position: absolute;
|
2368
|
+
top: 0;
|
2369
|
+
width: 1rem;
|
2265
2370
|
}
|
2266
2371
|
|
2267
2372
|
.usa-alert a {
|
@@ -2274,8 +2379,19 @@ dfn {
|
|
2274
2379
|
|
2275
2380
|
.usa-alert ul {
|
2276
2381
|
margin-bottom: 0;
|
2277
|
-
margin-top:
|
2278
|
-
padding-left:
|
2382
|
+
margin-top: 1rem;
|
2383
|
+
padding-left: 1rem;
|
2384
|
+
}
|
2385
|
+
|
2386
|
+
.usa-alert-slim {
|
2387
|
+
background-position: 2rem 1rem;
|
2388
|
+
padding-bottom: 1rem;
|
2389
|
+
padding-top: 1rem;
|
2390
|
+
}
|
2391
|
+
|
2392
|
+
.usa-alert-slim .usa-alert-text:only-child {
|
2393
|
+
margin-bottom: 0.5rem;
|
2394
|
+
padding-top: 0.5rem;
|
2279
2395
|
}
|
2280
2396
|
|
2281
2397
|
.usa-alert-icon {
|
@@ -2285,33 +2401,13 @@ dfn {
|
|
2285
2401
|
|
2286
2402
|
.usa-alert-body {
|
2287
2403
|
display: table-cell;
|
2288
|
-
padding-left:
|
2404
|
+
padding-left: 5rem;
|
2289
2405
|
vertical-align: top;
|
2290
2406
|
}
|
2291
2407
|
|
2292
|
-
@media screen and (min-width: 600px) {
|
2293
|
-
.usa-alert-body {
|
2294
|
-
padding-left: 5rem;
|
2295
|
-
}
|
2296
|
-
}
|
2297
|
-
|
2298
|
-
.usa-alert-body p:first-child {
|
2299
|
-
margin-top: 0.8rem;
|
2300
|
-
}
|
2301
|
-
|
2302
|
-
.usa-alert-body p:last-child {
|
2303
|
-
margin-bottom: 0.8rem;
|
2304
|
-
}
|
2305
|
-
|
2306
2408
|
.usa-alert-heading {
|
2307
|
-
margin-bottom: .3rem;
|
2308
2409
|
margin-top: 0;
|
2309
|
-
|
2310
|
-
|
2311
|
-
@media screen and (min-width: 600px) {
|
2312
|
-
.usa-alert-heading {
|
2313
|
-
margin-top: .3rem;
|
2314
|
-
}
|
2410
|
+
margin-bottom: 0;
|
2315
2411
|
}
|
2316
2412
|
|
2317
2413
|
.usa-alert-text {
|
@@ -2320,37 +2416,61 @@ dfn {
|
|
2320
2416
|
margin-top: 0;
|
2321
2417
|
}
|
2322
2418
|
|
2419
|
+
.usa-alert-text:only-child {
|
2420
|
+
margin-bottom: 1rem;
|
2421
|
+
padding-top: 0.5rem;
|
2422
|
+
}
|
2423
|
+
|
2323
2424
|
.usa-alert-success {
|
2324
2425
|
background-color: #e7f4e4;
|
2325
2426
|
background-image: url("../img/alerts/success.png");
|
2326
2427
|
background-image: url("../img/alerts/success.svg");
|
2327
2428
|
}
|
2328
2429
|
|
2430
|
+
.usa-alert-success::before {
|
2431
|
+
background-color: #2e8540;
|
2432
|
+
}
|
2433
|
+
|
2329
2434
|
.usa-alert-warning {
|
2330
2435
|
background-color: #fff1d2;
|
2331
2436
|
background-image: url("../img/alerts/warning.png");
|
2332
2437
|
background-image: url("../img/alerts/warning.svg");
|
2333
2438
|
}
|
2334
2439
|
|
2440
|
+
.usa-alert-warning::before {
|
2441
|
+
background-color: #fdb81e;
|
2442
|
+
}
|
2443
|
+
|
2335
2444
|
.usa-alert-error {
|
2336
2445
|
background-color: #f9dede;
|
2337
2446
|
background-image: url("../img/alerts/error.png");
|
2338
2447
|
background-image: url("../img/alerts/error.svg");
|
2339
2448
|
}
|
2340
2449
|
|
2450
|
+
.usa-alert-error::before {
|
2451
|
+
background-color: #e31c3d;
|
2452
|
+
}
|
2453
|
+
|
2341
2454
|
.usa-alert-info {
|
2342
2455
|
background-color: #e1f3f8;
|
2343
2456
|
background-image: url("../img/alerts/info.png");
|
2344
2457
|
background-image: url("../img/alerts/info.svg");
|
2345
2458
|
}
|
2346
2459
|
|
2460
|
+
.usa-alert-info::before {
|
2461
|
+
background-color: #02bfe7;
|
2462
|
+
}
|
2463
|
+
|
2347
2464
|
.usa-alert-no_icon {
|
2348
2465
|
background-image: none;
|
2349
2466
|
}
|
2350
2467
|
|
2351
2468
|
.usa-alert-paragraph {
|
2352
|
-
width:
|
2353
|
-
|
2469
|
+
width: 66ch;
|
2470
|
+
}
|
2471
|
+
|
2472
|
+
.usa-alert {
|
2473
|
+
margin-top: 1.5em;
|
2354
2474
|
}
|
2355
2475
|
|
2356
2476
|
.usa-banner {
|
@@ -2527,7 +2647,6 @@ dfn {
|
|
2527
2647
|
border-radius: 0;
|
2528
2648
|
font-weight: 400;
|
2529
2649
|
margin: 0;
|
2530
|
-
outline: 0;
|
2531
2650
|
padding: 0;
|
2532
2651
|
text-align: left;
|
2533
2652
|
-webkit-font-smoothing: auto;
|
@@ -2574,8 +2693,8 @@ dfn {
|
|
2574
2693
|
}
|
2575
2694
|
|
2576
2695
|
.usa-banner-button[aria-expanded=false]::after {
|
2577
|
-
background-image: url(../img/angle-arrow-down-primary.png);
|
2578
|
-
background-image: url(../img/angle-arrow-down-primary.svg);
|
2696
|
+
background-image: url("../img/angle-arrow-down-primary.png");
|
2697
|
+
background-image: url("../img/angle-arrow-down-primary.svg");
|
2579
2698
|
background-size: 100%;
|
2580
2699
|
content: '';
|
2581
2700
|
display: inline-block;
|
@@ -2587,8 +2706,8 @@ dfn {
|
|
2587
2706
|
}
|
2588
2707
|
|
2589
2708
|
.usa-banner-button[aria-expanded=false]:hover::after {
|
2590
|
-
background-image: url(../img/angle-arrow-down-primary-hover.png);
|
2591
|
-
background-image: url(../img/angle-arrow-down-primary-hover.svg);
|
2709
|
+
background-image: url("../img/angle-arrow-down-primary-hover.png");
|
2710
|
+
background-image: url("../img/angle-arrow-down-primary-hover.svg");
|
2592
2711
|
}
|
2593
2712
|
|
2594
2713
|
.usa-banner-button[aria-expanded=false]::after {
|
@@ -2601,8 +2720,8 @@ dfn {
|
|
2601
2720
|
}
|
2602
2721
|
|
2603
2722
|
.usa-banner-button[aria-expanded=true]::after {
|
2604
|
-
background-image: url(../img/close.png);
|
2605
|
-
background-image: url(../img/close.svg);
|
2723
|
+
background-image: url("../img/close.png");
|
2724
|
+
background-image: url("../img/close.svg");
|
2606
2725
|
background-size: 100%;
|
2607
2726
|
content: '';
|
2608
2727
|
display: inline-block;
|
@@ -2620,8 +2739,8 @@ dfn {
|
|
2620
2739
|
position: relative;
|
2621
2740
|
}
|
2622
2741
|
.usa-banner-button[aria-expanded=true]::after {
|
2623
|
-
background-image: url(../img/angle-arrow-up-primary.png);
|
2624
|
-
background-image: url(../img/angle-arrow-up-primary.svg);
|
2742
|
+
background-image: url("../img/angle-arrow-up-primary.png");
|
2743
|
+
background-image: url("../img/angle-arrow-up-primary.svg");
|
2625
2744
|
background-size: 100%;
|
2626
2745
|
content: '';
|
2627
2746
|
display: inline-block;
|
@@ -2632,8 +2751,8 @@ dfn {
|
|
2632
2751
|
/* stylelint-enable */
|
2633
2752
|
}
|
2634
2753
|
.usa-banner-button[aria-expanded=true]:hover::after {
|
2635
|
-
background-image: url(../img/angle-arrow-up-primary-hover.png);
|
2636
|
-
background-image: url(../img/angle-arrow-up-primary-hover.svg);
|
2754
|
+
background-image: url("../img/angle-arrow-up-primary-hover.png");
|
2755
|
+
background-image: url("../img/angle-arrow-up-primary-hover.svg");
|
2637
2756
|
}
|
2638
2757
|
.usa-banner-button[aria-expanded=true]::after {
|
2639
2758
|
background-position-y: 1px;
|
@@ -2690,13 +2809,29 @@ dfn {
|
|
2690
2809
|
text-decoration: underline;
|
2691
2810
|
}
|
2692
2811
|
|
2693
|
-
.usa-footer a
|
2694
|
-
|
2812
|
+
.usa-footer .usa-footer-primary-link ~ li a,
|
2813
|
+
.usa-footer .usa-footer-secondary-link {
|
2814
|
+
text-decoration: none;
|
2815
|
+
}
|
2816
|
+
|
2817
|
+
.usa-footer-contact_info {
|
2818
|
+
display: inline-block;
|
2819
|
+
}
|
2820
|
+
|
2821
|
+
.usa-footer-contact_info a {
|
2822
|
+
color: #212121;
|
2823
|
+
text-decoration: none;
|
2824
|
+
}
|
2825
|
+
|
2826
|
+
.usa-footer-contact_info:hover {
|
2827
|
+
text-decoration: underline;
|
2695
2828
|
}
|
2696
2829
|
|
2697
2830
|
.usa-footer-return-to-top {
|
2831
|
+
color: #0071bc;
|
2698
2832
|
padding-bottom: 2rem;
|
2699
2833
|
padding-top: 2rem;
|
2834
|
+
text-decoration: underline;
|
2700
2835
|
}
|
2701
2836
|
|
2702
2837
|
.usa-footer-primary-section {
|
@@ -2704,7 +2839,7 @@ dfn {
|
|
2704
2839
|
}
|
2705
2840
|
|
2706
2841
|
.usa-footer-primary-section .usa-footer-primary-content {
|
2707
|
-
padding-left:
|
2842
|
+
padding-left: 1.5rem;
|
2708
2843
|
padding-right: 2.5rem;
|
2709
2844
|
}
|
2710
2845
|
|
@@ -2732,20 +2867,56 @@ dfn {
|
|
2732
2867
|
}
|
2733
2868
|
}
|
2734
2869
|
|
2735
|
-
.usa-footer-medium .usa-footer-
|
2870
|
+
.usa-footer-medium .usa-footer-contact_info p {
|
2871
|
+
margin: 0 1rem 0 0;
|
2872
|
+
}
|
2873
|
+
|
2874
|
+
@media screen and (min-width: 600px) {
|
2875
|
+
.usa-footer-medium .usa-footer-contact_info p {
|
2876
|
+
margin: 0 0 0 1rem;
|
2877
|
+
}
|
2878
|
+
}
|
2879
|
+
|
2880
|
+
.usa-footer-medium .usa-footer-contact-heading {
|
2881
|
+
margin-top: 0;
|
2882
|
+
}
|
2883
|
+
|
2884
|
+
@media screen and (min-width: 600px) {
|
2885
|
+
.usa-footer-medium .usa-footer-contact-heading {
|
2886
|
+
margin-top: 0.5rem;
|
2887
|
+
margin-bottom: 0.5rem;
|
2888
|
+
}
|
2889
|
+
}
|
2890
|
+
|
2891
|
+
.usa-footer-medium .usa-footer-logo {
|
2892
|
+
padding: 1rem 0;
|
2893
|
+
}
|
2894
|
+
|
2895
|
+
@media screen and (min-width: 600px) {
|
2896
|
+
.usa-footer-medium .usa-footer-logo {
|
2897
|
+
padding: 2rem 0;
|
2898
|
+
}
|
2899
|
+
}
|
2900
|
+
|
2901
|
+
.usa-footer-medium .usa-footer-primary-link {
|
2902
|
+
padding-bottom: 1.5rem;
|
2903
|
+
padding-top: 1.5rem;
|
2904
|
+
}
|
2905
|
+
|
2906
|
+
.usa-footer-medium .usa-footer-primary-section > .usa-grid {
|
2736
2907
|
padding: 0;
|
2737
2908
|
}
|
2738
2909
|
|
2739
2910
|
@media screen and (min-width: 600px) {
|
2740
|
-
.usa-footer-medium .usa-footer-primary-section {
|
2741
|
-
padding-
|
2742
|
-
padding-
|
2911
|
+
.usa-footer-medium .usa-footer-primary-section > .usa-grid {
|
2912
|
+
padding-left: 3rem;
|
2913
|
+
padding-right: 3rem;
|
2743
2914
|
}
|
2744
2915
|
}
|
2745
2916
|
|
2746
2917
|
@media screen and (min-width: 1201px) {
|
2747
2918
|
.usa-footer-medium .usa-footer-primary-section .usa-footer-primary-content {
|
2748
|
-
margin-right:
|
2919
|
+
margin-right: 5%;
|
2749
2920
|
width: inherit;
|
2750
2921
|
}
|
2751
2922
|
}
|
@@ -2770,7 +2941,7 @@ dfn {
|
|
2770
2941
|
|
2771
2942
|
@media screen and (min-width: 1201px) {
|
2772
2943
|
.usa-footer-slim .usa-footer-nav .usa-footer-primary-content {
|
2773
|
-
margin-right:
|
2944
|
+
margin-right: 5%;
|
2774
2945
|
width: inherit;
|
2775
2946
|
}
|
2776
2947
|
}
|
@@ -2781,14 +2952,26 @@ dfn {
|
|
2781
2952
|
}
|
2782
2953
|
}
|
2783
2954
|
|
2784
|
-
.usa-footer-slim .usa-footer-primary-
|
2785
|
-
padding-bottom:
|
2955
|
+
.usa-footer-slim .usa-footer-primary-link {
|
2956
|
+
padding-bottom: 1.5rem;
|
2957
|
+
padding-top: 1.5rem;
|
2958
|
+
}
|
2959
|
+
|
2960
|
+
.usa-footer-slim .usa-footer-primary-section > .usa-grid {
|
2961
|
+
padding: 0;
|
2962
|
+
}
|
2963
|
+
|
2964
|
+
@media screen and (min-width: 600px) {
|
2965
|
+
.usa-footer-slim .usa-footer-primary-section > .usa-grid {
|
2966
|
+
padding-left: 3rem;
|
2967
|
+
padding-right: 3rem;
|
2968
|
+
}
|
2786
2969
|
}
|
2787
2970
|
|
2788
2971
|
@media screen and (min-width: 600px) {
|
2789
2972
|
.usa-footer-slim .usa-footer-primary-section {
|
2790
|
-
padding-bottom:
|
2791
|
-
padding-top:
|
2973
|
+
padding-bottom: 0;
|
2974
|
+
padding-top: 0;
|
2792
2975
|
}
|
2793
2976
|
.usa-footer-slim .usa-footer-primary-section .usa-grid-full {
|
2794
2977
|
-webkit-box-align: center;
|
@@ -2805,8 +2988,8 @@ dfn {
|
|
2805
2988
|
|
2806
2989
|
@media screen and (min-width: 600px) {
|
2807
2990
|
.usa-footer-slim .usa-footer-contact_info {
|
2808
|
-
padding-top:
|
2809
|
-
padding-bottom:
|
2991
|
+
padding-top: 1.5rem;
|
2992
|
+
padding-bottom: 1.5rem;
|
2810
2993
|
}
|
2811
2994
|
}
|
2812
2995
|
|
@@ -2832,7 +3015,7 @@ dfn {
|
|
2832
3015
|
ul.usa-footer-primary-content,
|
2833
3016
|
li.usa-footer-primary-content,
|
2834
3017
|
li.usa-footer-primary-content {
|
2835
|
-
border-top: 1px solid #
|
3018
|
+
border-top: 1px solid #aeb0b5;
|
2836
3019
|
}
|
2837
3020
|
|
2838
3021
|
@media screen and (min-width: 600px) {
|
@@ -2846,7 +3029,7 @@ li.usa-footer-primary-content {
|
|
2846
3029
|
ul.usa-footer-primary-content:last-child,
|
2847
3030
|
li.usa-footer-primary-content:last-child,
|
2848
3031
|
li.usa-footer-primary-content:last-child {
|
2849
|
-
border-bottom: 1px solid #
|
3032
|
+
border-bottom: 1px solid #aeb0b5;
|
2850
3033
|
}
|
2851
3034
|
|
2852
3035
|
@media screen and (min-width: 600px) {
|
@@ -2859,9 +3042,9 @@ li.usa-footer-primary-content:last-child {
|
|
2859
3042
|
|
2860
3043
|
/* stylelint-enable */
|
2861
3044
|
.usa-sign_up-block {
|
2862
|
-
padding-bottom:
|
2863
|
-
padding-left:
|
2864
|
-
padding-right:
|
3045
|
+
padding-bottom: 4.5rem;
|
3046
|
+
padding-left: 1.5rem;
|
3047
|
+
padding-right: 1.5rem;
|
2865
3048
|
}
|
2866
3049
|
|
2867
3050
|
@media screen and (min-width: 600px) {
|
@@ -2887,8 +3070,8 @@ li.usa-footer-primary-content:last-child {
|
|
2887
3070
|
|
2888
3071
|
.usa-footer-secondary_section {
|
2889
3072
|
background-color: #d6d7d9;
|
2890
|
-
padding-bottom:
|
2891
|
-
padding-top:
|
3073
|
+
padding-bottom: 2rem;
|
3074
|
+
padding-top: 2rem;
|
2892
3075
|
}
|
2893
3076
|
|
2894
3077
|
.usa-footer-secondary_section a {
|
@@ -2897,7 +3080,8 @@ li.usa-footer-primary-content:last-child {
|
|
2897
3080
|
|
2898
3081
|
@media screen and (min-width: 600px) {
|
2899
3082
|
.usa-footer-big-secondary-section {
|
2900
|
-
padding-top:
|
3083
|
+
padding-top: 2rem;
|
3084
|
+
padding-bottom: 2rem;
|
2901
3085
|
}
|
2902
3086
|
}
|
2903
3087
|
|
@@ -2911,6 +3095,36 @@ li.usa-footer-primary-content:last-child {
|
|
2911
3095
|
text-decoration: none;
|
2912
3096
|
}
|
2913
3097
|
|
3098
|
+
.usa-footer-big .usa-footer-contact_info {
|
3099
|
+
display: block;
|
3100
|
+
}
|
3101
|
+
|
3102
|
+
.usa-footer-big .usa-footer-contact_info p {
|
3103
|
+
margin: 0 1rem 0 0;
|
3104
|
+
}
|
3105
|
+
|
3106
|
+
@media screen and (min-width: 600px) {
|
3107
|
+
.usa-footer-big .usa-footer-contact_info p {
|
3108
|
+
margin: 0.5rem 0 0 1rem;
|
3109
|
+
}
|
3110
|
+
}
|
3111
|
+
|
3112
|
+
@media screen and (min-width: 600px) {
|
3113
|
+
.usa-footer-big .usa-footer-contact-links {
|
3114
|
+
padding-top: 2rem;
|
3115
|
+
}
|
3116
|
+
}
|
3117
|
+
|
3118
|
+
.usa-footer-big .usa-footer-logo {
|
3119
|
+
padding: 1rem 0;
|
3120
|
+
}
|
3121
|
+
|
3122
|
+
@media screen and (min-width: 600px) {
|
3123
|
+
.usa-footer-big .usa-footer-logo {
|
3124
|
+
padding: 2rem 0;
|
3125
|
+
}
|
3126
|
+
}
|
3127
|
+
|
2914
3128
|
@media screen and (min-width: 600px) {
|
2915
3129
|
.usa-footer-big .usa-footer-primary-section {
|
2916
3130
|
padding-bottom: 4rem;
|
@@ -2918,8 +3132,38 @@ li.usa-footer-primary-content:last-child {
|
|
2918
3132
|
}
|
2919
3133
|
}
|
2920
3134
|
|
3135
|
+
.usa-footer-big .usa-footer-primary-section > .usa-grid {
|
3136
|
+
padding: 0;
|
3137
|
+
}
|
3138
|
+
|
3139
|
+
@media screen and (min-width: 600px) {
|
3140
|
+
.usa-footer-big .usa-footer-primary-section > .usa-grid {
|
3141
|
+
padding-left: 3rem;
|
3142
|
+
padding-right: 3rem;
|
3143
|
+
}
|
3144
|
+
}
|
3145
|
+
|
3146
|
+
.usa-footer-big .usa-footer-primary-section .usa-footer-primary-content {
|
3147
|
+
padding-left: 0;
|
3148
|
+
padding-right: 0;
|
3149
|
+
}
|
3150
|
+
|
3151
|
+
.usa-footer-big .usa-footer-primary-section .usa-footer-primary-content li {
|
3152
|
+
margin-left: 1.5rem;
|
3153
|
+
}
|
3154
|
+
|
3155
|
+
@media screen and (min-width: 600px) {
|
3156
|
+
.usa-footer-big .usa-footer-primary-section .usa-footer-primary-content li {
|
3157
|
+
margin-left: 0;
|
3158
|
+
}
|
3159
|
+
}
|
3160
|
+
|
3161
|
+
.usa-footer-big .usa-footer-primary-section .usa-footer-primary-content .usa-footer-primary-link {
|
3162
|
+
margin-left: 0;
|
3163
|
+
}
|
3164
|
+
|
2921
3165
|
.usa-footer-big ul {
|
2922
|
-
padding-bottom: 2.
|
3166
|
+
padding-bottom: 2.4rem;
|
2923
3167
|
}
|
2924
3168
|
|
2925
3169
|
@media screen and (min-width: 600px) {
|
@@ -2929,7 +3173,7 @@ li.usa-footer-primary-content:last-child {
|
|
2929
3173
|
}
|
2930
3174
|
|
2931
3175
|
.usa-footer-big ul:last-child {
|
2932
|
-
border-bottom: 1px solid #
|
3176
|
+
border-bottom: 1px solid #aeb0b5;
|
2933
3177
|
}
|
2934
3178
|
|
2935
3179
|
@media screen and (min-width: 600px) {
|
@@ -2938,8 +3182,10 @@ li.usa-footer-primary-content:last-child {
|
|
2938
3182
|
}
|
2939
3183
|
}
|
2940
3184
|
|
2941
|
-
.usa-footer-big ul li {
|
2942
|
-
line-height:
|
3185
|
+
.usa-footer-big ul li:not(.usa-footer-primary-link) {
|
3186
|
+
line-height: 1.3;
|
3187
|
+
padding-bottom: 0.35em;
|
3188
|
+
padding-top: 0.35em;
|
2943
3189
|
}
|
2944
3190
|
|
2945
3191
|
.usa-footer-big ul .usa-footer-primary-link {
|
@@ -3003,37 +3249,60 @@ li.usa-footer-primary-content:last-child {
|
|
3003
3249
|
}
|
3004
3250
|
|
3005
3251
|
.usa-footer-logo-img {
|
3006
|
-
max-width:
|
3252
|
+
max-width: 8rem;
|
3253
|
+
}
|
3254
|
+
|
3255
|
+
@media screen and (min-width: 600px) {
|
3256
|
+
.usa-footer-logo-img {
|
3257
|
+
float: left;
|
3258
|
+
}
|
3259
|
+
}
|
3260
|
+
|
3261
|
+
.usa-footer-big-logo-img {
|
3262
|
+
max-width: 10rem;
|
3007
3263
|
}
|
3008
3264
|
|
3009
3265
|
.usa-footer-slim-logo-img {
|
3010
3266
|
float: left;
|
3011
|
-
max-width:
|
3267
|
+
max-width: 5rem;
|
3012
3268
|
}
|
3013
3269
|
|
3014
3270
|
.usa-footer-logo-heading {
|
3015
|
-
|
3271
|
+
display: block;
|
3272
|
+
margin-top: 1rem;
|
3016
3273
|
}
|
3017
3274
|
|
3018
|
-
|
3019
|
-
|
3275
|
+
@media screen and (min-width: 600px) {
|
3276
|
+
.usa-footer-logo-heading {
|
3277
|
+
display: inline-block;
|
3278
|
+
margin-top: 3rem;
|
3279
|
+
padding-left: 1.5rem;
|
3280
|
+
}
|
3281
|
+
}
|
3282
|
+
|
3283
|
+
.usa-footer-big-logo-heading {
|
3284
|
+
margin-top: 1.5rem;
|
3020
3285
|
}
|
3021
3286
|
|
3022
3287
|
@media screen and (min-width: 600px) {
|
3023
|
-
.usa-footer-
|
3024
|
-
margin-top:
|
3288
|
+
.usa-footer-big-logo-heading {
|
3289
|
+
margin-top: 2rem;
|
3025
3290
|
}
|
3026
3291
|
}
|
3027
3292
|
|
3028
3293
|
.usa-footer-slim-logo-heading {
|
3029
|
-
display: block;
|
3030
|
-
|
3294
|
+
display: inline-block;
|
3295
|
+
margin-top: 1.5rem;
|
3296
|
+
padding-left: 1.5rem;
|
3297
|
+
}
|
3298
|
+
|
3299
|
+
.usa-footer-contact-heading {
|
3300
|
+
margin-top: 0;
|
3031
3301
|
}
|
3032
3302
|
|
3033
3303
|
@media screen and (min-width: 600px) {
|
3034
|
-
.usa-footer-
|
3035
|
-
|
3036
|
-
padding-left: 1em;
|
3304
|
+
.usa-footer-contact-heading {
|
3305
|
+
margin-top: 1rem;
|
3037
3306
|
}
|
3038
3307
|
}
|
3039
3308
|
|
@@ -3052,8 +3321,8 @@ li.usa-footer-primary-content:last-child {
|
|
3052
3321
|
|
3053
3322
|
@media screen and (min-width: 600px) {
|
3054
3323
|
.usa-social_link, .usa-link-facebook, .usa-link-twitter, .usa-link-youtube, .usa-link-rss {
|
3055
|
-
margin: 0 0 0
|
3056
|
-
left: 1.
|
3324
|
+
margin: 0 0 0 0.5rem;
|
3325
|
+
left: 1.5rem;
|
3057
3326
|
}
|
3058
3327
|
}
|
3059
3328
|
|
@@ -3283,7 +3552,7 @@ input.usa-input-medium {
|
|
3283
3552
|
|
3284
3553
|
@media screen and (min-width: 951px) {
|
3285
3554
|
.usa-header {
|
3286
|
-
border-bottom: 1px solid #
|
3555
|
+
border-bottom: 1px solid #d6d7d9;
|
3287
3556
|
}
|
3288
3557
|
}
|
3289
3558
|
|
@@ -3291,14 +3560,9 @@ input.usa-input-medium {
|
|
3291
3560
|
border-bottom: none;
|
3292
3561
|
}
|
3293
3562
|
|
3294
|
-
.usa-header .usa-search {
|
3295
|
-
margin-bottom: 1.5rem;
|
3296
|
-
}
|
3297
|
-
|
3298
3563
|
@media screen and (min-width: 951px) {
|
3299
3564
|
.usa-header .usa-search {
|
3300
3565
|
float: right;
|
3301
|
-
margin-bottom: 0;
|
3302
3566
|
max-width: 21.5rem;
|
3303
3567
|
}
|
3304
3568
|
}
|
@@ -3354,7 +3618,6 @@ input.usa-input-medium {
|
|
3354
3618
|
border-radius: 0;
|
3355
3619
|
font-weight: 400;
|
3356
3620
|
margin: 0;
|
3357
|
-
outline: 0;
|
3358
3621
|
padding: 0;
|
3359
3622
|
text-align: left;
|
3360
3623
|
-webkit-font-smoothing: auto;
|
@@ -3411,7 +3674,7 @@ input.usa-input-medium {
|
|
3411
3674
|
|
3412
3675
|
@media screen and (min-width: 951px) {
|
3413
3676
|
.usa-header-basic .usa-logo {
|
3414
|
-
bottom:
|
3677
|
+
bottom: 0;
|
3415
3678
|
position: absolute;
|
3416
3679
|
}
|
3417
3680
|
}
|
@@ -3463,7 +3726,7 @@ input.usa-input-medium {
|
|
3463
3726
|
|
3464
3727
|
@media screen and (min-width: 951px) {
|
3465
3728
|
.usa-header-extended .usa-nav {
|
3466
|
-
border-top: 1px solid #
|
3729
|
+
border-top: 1px solid #d6d7d9;
|
3467
3730
|
float: none;
|
3468
3731
|
padding: 0;
|
3469
3732
|
width: 100%;
|
@@ -3476,7 +3739,7 @@ input.usa-input-medium {
|
|
3476
3739
|
margin-left: auto;
|
3477
3740
|
margin-right: auto;
|
3478
3741
|
padding-right: 3rem;
|
3479
|
-
padding-left:
|
3742
|
+
padding-left: 1.5rem;
|
3480
3743
|
margin-top: -1px;
|
3481
3744
|
max-width: 1040px;
|
3482
3745
|
position: relative;
|
@@ -3503,13 +3766,14 @@ input.usa-input-medium {
|
|
3503
3766
|
@media screen and (min-width: 951px) {
|
3504
3767
|
.usa-header-extended .usa-nav-primary button[aria-expanded=false], .usa-header-extended .usa-nav-primary button[aria-expanded=true] {
|
3505
3768
|
/* stylelint-disable-line selector-no-qualifying-type */
|
3506
|
-
background-position: right 1.5rem top
|
3769
|
+
background-position: right 1.5rem top 53%;
|
3507
3770
|
}
|
3508
3771
|
}
|
3509
3772
|
|
3510
3773
|
@media screen and (min-width: 951px) {
|
3511
3774
|
.usa-header-extended .usa-nav-link {
|
3512
|
-
padding-top: 1.
|
3775
|
+
padding-top: 1.8rem;
|
3776
|
+
padding-bottom: 1.8rem;
|
3513
3777
|
}
|
3514
3778
|
}
|
3515
3779
|
|
@@ -3554,13 +3818,7 @@ input.usa-input-medium {
|
|
3554
3818
|
|
3555
3819
|
.usa-hero-callout > *:first-child {
|
3556
3820
|
margin-top: 0;
|
3557
|
-
margin-bottom:
|
3558
|
-
}
|
3559
|
-
|
3560
|
-
.usa-hero-callout .usa-button {
|
3561
|
-
font-size: 1.4rem;
|
3562
|
-
margin-top: 7rem;
|
3563
|
-
width: 100%;
|
3821
|
+
margin-bottom: 2rem;
|
3564
3822
|
}
|
3565
3823
|
|
3566
3824
|
.usa-hero-callout-alt {
|
@@ -3633,7 +3891,7 @@ input.usa-input-medium {
|
|
3633
3891
|
.usa-navbar {
|
3634
3892
|
border-bottom: none;
|
3635
3893
|
display: inline-block;
|
3636
|
-
height:
|
3894
|
+
height: 7.8rem;
|
3637
3895
|
}
|
3638
3896
|
}
|
3639
3897
|
|
@@ -3644,8 +3902,15 @@ input.usa-input-medium {
|
|
3644
3902
|
|
3645
3903
|
@media screen and (min-width: 951px) {
|
3646
3904
|
.usa-nav-link:hover span {
|
3647
|
-
border-bottom: 0.
|
3648
|
-
padding-bottom:
|
3905
|
+
border-bottom: 0.4rem solid #0071bc;
|
3906
|
+
padding-bottom: 0.6rem;
|
3907
|
+
}
|
3908
|
+
}
|
3909
|
+
|
3910
|
+
@media screen and (min-width: 951px) {
|
3911
|
+
.usa-nav-link.usa-accordion-button span {
|
3912
|
+
margin-right: 0;
|
3913
|
+
padding-right: 1.5rem;
|
3649
3914
|
}
|
3650
3915
|
}
|
3651
3916
|
|
@@ -3692,7 +3957,7 @@ input.usa-input-medium {
|
|
3692
3957
|
|
3693
3958
|
@media screen and (min-width: 951px) {
|
3694
3959
|
.usa-nav {
|
3695
|
-
padding-top: 5rem;
|
3960
|
+
padding-top: 4.5rem;
|
3696
3961
|
padding-right: 0;
|
3697
3962
|
padding-bottom: 0;
|
3698
3963
|
border-left: none;
|
@@ -3732,6 +3997,12 @@ input.usa-input-medium {
|
|
3732
3997
|
padding-left: 1.4rem;
|
3733
3998
|
}
|
3734
3999
|
|
4000
|
+
@media screen and (min-width: 951px) {
|
4001
|
+
.usa-nav .usa-current {
|
4002
|
+
color: #212121;
|
4003
|
+
}
|
4004
|
+
}
|
4005
|
+
|
3735
4006
|
.usa-nav .usa-button {
|
3736
4007
|
width: 100%;
|
3737
4008
|
}
|
@@ -3739,6 +4010,7 @@ input.usa-input-medium {
|
|
3739
4010
|
@media screen and (min-width: 951px) {
|
3740
4011
|
.usa-nav .usa-search {
|
3741
4012
|
margin-left: 1.5rem;
|
4013
|
+
top: 4px;
|
3742
4014
|
}
|
3743
4015
|
}
|
3744
4016
|
|
@@ -3747,6 +4019,7 @@ input.usa-input-medium {
|
|
3747
4019
|
margin-bottom: 0;
|
3748
4020
|
list-style-type: none;
|
3749
4021
|
padding-left: 0;
|
4022
|
+
margin-top: 1.5rem;
|
3750
4023
|
-webkit-box-ordinal-group: 3;
|
3751
4024
|
-ms-flex-order: 2;
|
3752
4025
|
order: 2;
|
@@ -3783,6 +4056,7 @@ input.usa-input-medium {
|
|
3783
4056
|
}
|
3784
4057
|
|
3785
4058
|
.usa-nav-primary a:focus {
|
4059
|
+
outline-offset: 0;
|
3786
4060
|
position: relative;
|
3787
4061
|
z-index: 1;
|
3788
4062
|
}
|
@@ -3819,11 +4093,11 @@ input.usa-input-medium {
|
|
3819
4093
|
|
3820
4094
|
@media screen and (min-width: 951px) {
|
3821
4095
|
.usa-nav-primary > li > a {
|
3822
|
-
padding: 1.3rem 1.5rem
|
4096
|
+
padding: 1.3rem 1.5rem 2.2rem;
|
3823
4097
|
color: #5b616b;
|
3824
4098
|
font-size: 1.5rem;
|
3825
4099
|
font-weight: 700;
|
3826
|
-
line-height: 1
|
4100
|
+
line-height: 1;
|
3827
4101
|
}
|
3828
4102
|
}
|
3829
4103
|
|
@@ -3833,20 +4107,27 @@ input.usa-input-medium {
|
|
3833
4107
|
}
|
3834
4108
|
}
|
3835
4109
|
|
4110
|
+
@media screen and (min-width: 951px) {
|
4111
|
+
.usa-nav-primary a {
|
4112
|
+
padding-top: 0.75rem;
|
4113
|
+
padding-bottom: 0.75rem;
|
4114
|
+
}
|
4115
|
+
}
|
4116
|
+
|
3836
4117
|
.usa-nav-primary button {
|
3837
4118
|
background-color: transparent;
|
3838
4119
|
border: 0;
|
3839
4120
|
border-radius: 0;
|
3840
4121
|
font-weight: 400;
|
3841
4122
|
margin: 0;
|
3842
|
-
outline: 0;
|
3843
4123
|
padding: 0;
|
3844
4124
|
text-align: left;
|
3845
4125
|
-webkit-font-smoothing: auto;
|
3846
4126
|
-moz-osx-font-smoothing: grayscale;
|
3847
4127
|
-webkit-font-smoothing: antialiased;
|
3848
4128
|
font-weight: 400;
|
3849
|
-
|
4129
|
+
line-height: 1.3;
|
4130
|
+
padding: 0.85rem 1.5rem 0.85rem 1.8rem;
|
3850
4131
|
}
|
3851
4132
|
|
3852
4133
|
.usa-nav-primary button:hover {
|
@@ -3855,18 +4136,17 @@ input.usa-input-medium {
|
|
3855
4136
|
|
3856
4137
|
@media screen and (min-width: 951px) {
|
3857
4138
|
.usa-nav-primary button {
|
3858
|
-
padding
|
3859
|
-
padding-bottom: 1.9rem;
|
3860
|
-
padding-left: 1.5rem;
|
4139
|
+
padding: 1.3rem 1.5rem 2.2rem;
|
3861
4140
|
color: #5b616b;
|
3862
4141
|
font-size: 1.5rem;
|
3863
4142
|
font-weight: 700;
|
4143
|
+
line-height: 1;
|
3864
4144
|
width: initial;
|
3865
4145
|
}
|
3866
4146
|
}
|
3867
4147
|
|
3868
4148
|
.usa-nav-primary button:focus, .usa-nav-primary button:active {
|
3869
|
-
box-shadow:
|
4149
|
+
box-shadow: 2px dotted #aeb0b5;
|
3870
4150
|
}
|
3871
4151
|
|
3872
4152
|
.usa-nav-primary button:hover {
|
@@ -3893,7 +4173,14 @@ input.usa-input-medium {
|
|
3893
4173
|
.usa-nav-primary button[aria-expanded=false] {
|
3894
4174
|
background-image: url("../img/angle-arrow-down.png");
|
3895
4175
|
background-image: url("../img/angle-arrow-down.svg");
|
3896
|
-
background-position: right 1.5rem top
|
4176
|
+
background-position: right 1.5rem top 40%;
|
4177
|
+
}
|
4178
|
+
}
|
4179
|
+
|
4180
|
+
@media screen and (min-width: 951px) {
|
4181
|
+
.usa-nav-primary button[aria-expanded=false]:hover {
|
4182
|
+
background-image: url("../img/angle-arrow-down-primary.png");
|
4183
|
+
background-image: url("../img/angle-arrow-down-primary.svg");
|
3897
4184
|
}
|
3898
4185
|
}
|
3899
4186
|
|
@@ -3912,30 +4199,68 @@ input.usa-input-medium {
|
|
3912
4199
|
color: #ffffff;
|
3913
4200
|
background-image: url("../img/angle-arrow-down-hover.png");
|
3914
4201
|
background-image: url("../img/angle-arrow-down-hover.svg");
|
3915
|
-
background-position: right 1.5rem top
|
4202
|
+
background-position: right 1.5rem top 40%;
|
3916
4203
|
}
|
3917
4204
|
.usa-nav-primary button[aria-expanded=true]:hover {
|
3918
4205
|
background-color: #112e51;
|
3919
4206
|
}
|
3920
4207
|
.usa-nav-primary button[aria-expanded=true] span {
|
3921
|
-
border-bottom: 0.
|
3922
|
-
padding-bottom:
|
4208
|
+
border-bottom: 0.4rem solid #0071bc;
|
4209
|
+
padding-bottom: 0.6rem;
|
4210
|
+
color: #ffffff;
|
3923
4211
|
}
|
3924
4212
|
}
|
3925
4213
|
|
3926
4214
|
@media screen and (min-width: 951px) {
|
3927
|
-
.usa-nav-primary a.usa-current
|
4215
|
+
.usa-nav-primary a.usa-current,
|
4216
|
+
.usa-nav-primary .usa-current {
|
3928
4217
|
border-left: 0;
|
3929
4218
|
padding-left: 1.5rem;
|
3930
4219
|
}
|
3931
|
-
.usa-nav-primary a.usa-current span
|
4220
|
+
.usa-nav-primary a.usa-current:hover span,
|
4221
|
+
.usa-nav-primary .usa-current:hover span {
|
4222
|
+
color: #0071bc;
|
4223
|
+
}
|
4224
|
+
.usa-nav-primary a.usa-current span,
|
4225
|
+
.usa-nav-primary .usa-current span {
|
4226
|
+
border-bottom: 0.4rem solid #0071bc;
|
4227
|
+
padding-bottom: 0.6rem;
|
4228
|
+
color: #212121;
|
4229
|
+
}
|
4230
|
+
}
|
4231
|
+
|
4232
|
+
@media screen and (min-width: 951px) {
|
4233
|
+
.usa-header-extended .usa-nav-link:hover span {
|
4234
|
+
border-bottom: 0.7rem solid #0071bc;
|
4235
|
+
padding-bottom: 0.9rem;
|
4236
|
+
}
|
4237
|
+
}
|
4238
|
+
|
4239
|
+
.usa-header-extended .usa-nav-primary button[aria-expanded=true] {
|
4240
|
+
/* stylelint-disable-line selector-no-qualifying-type */
|
4241
|
+
}
|
4242
|
+
|
4243
|
+
@media screen and (min-width: 951px) {
|
4244
|
+
.usa-header-extended .usa-nav-primary button[aria-expanded=true] span {
|
4245
|
+
border-bottom: 0.7rem solid #0071bc;
|
4246
|
+
padding-bottom: 0.9rem;
|
4247
|
+
}
|
4248
|
+
}
|
4249
|
+
|
4250
|
+
@media screen and (min-width: 951px) {
|
4251
|
+
.usa-header-extended .usa-nav-primary .usa-current span {
|
3932
4252
|
border-bottom: 0.7rem solid #0071bc;
|
3933
|
-
padding-bottom:
|
4253
|
+
padding-bottom: 0.9rem;
|
3934
4254
|
}
|
3935
4255
|
}
|
3936
4256
|
|
4257
|
+
.usa-nav-secondary {
|
4258
|
+
margin-top: 1.5rem;
|
4259
|
+
}
|
4260
|
+
|
3937
4261
|
@media screen and (min-width: 951px) {
|
3938
4262
|
.usa-nav-secondary {
|
4263
|
+
margin-top: 0;
|
3939
4264
|
position: absolute;
|
3940
4265
|
right: 3rem;
|
3941
4266
|
top: -5.7rem;
|
@@ -3943,36 +4268,42 @@ input.usa-input-medium {
|
|
3943
4268
|
}
|
3944
4269
|
|
3945
4270
|
.usa-nav-secondary .usa-search {
|
3946
|
-
margin-top:
|
3947
|
-
margin-bottom:
|
4271
|
+
margin-top: 1.5rem;
|
4272
|
+
margin-bottom: 0;
|
3948
4273
|
}
|
3949
4274
|
|
3950
4275
|
@media screen and (min-width: 951px) {
|
3951
4276
|
.usa-nav-secondary .usa-search {
|
3952
|
-
margin-top: -0.
|
4277
|
+
margin-top: -0.9rem;
|
3953
4278
|
margin-bottom: 0;
|
3954
4279
|
margin-left: 0;
|
3955
4280
|
float: left;
|
3956
4281
|
}
|
3957
4282
|
}
|
3958
4283
|
|
4284
|
+
.usa-nav-secondary-links {
|
4285
|
+
margin-top: 2.4rem;
|
4286
|
+
}
|
4287
|
+
|
3959
4288
|
@media screen and (min-width: 951px) {
|
3960
4289
|
.usa-nav-secondary-links {
|
3961
4290
|
float: left;
|
4291
|
+
margin-top: 0;
|
3962
4292
|
}
|
3963
4293
|
}
|
3964
4294
|
|
3965
4295
|
@media screen and (min-width: 951px) {
|
3966
4296
|
.usa-nav-secondary-links li {
|
3967
4297
|
display: inline;
|
3968
|
-
padding-left:
|
4298
|
+
padding-left: 0.5rem;
|
3969
4299
|
}
|
3970
4300
|
}
|
3971
4301
|
|
3972
4302
|
@media screen and (min-width: 951px) {
|
3973
4303
|
.usa-nav-secondary-links li:not(:last-child)::after {
|
4304
|
+
color: #d6d7d9;
|
3974
4305
|
content: '|';
|
3975
|
-
padding-left:
|
4306
|
+
padding-left: 0.5rem;
|
3976
4307
|
}
|
3977
4308
|
}
|
3978
4309
|
|
@@ -3987,6 +4318,7 @@ input.usa-input-medium {
|
|
3987
4318
|
.usa-nav-secondary-links a:hover,
|
3988
4319
|
.usa-nav-secondary-links .usa-header-search-button:hover {
|
3989
4320
|
color: #0071bc;
|
4321
|
+
text-decoration: underline;
|
3990
4322
|
}
|
3991
4323
|
|
3992
4324
|
.usa-nav-secondary-links .usa-header-search-button {
|
@@ -3995,7 +4327,6 @@ input.usa-input-medium {
|
|
3995
4327
|
border-radius: 0;
|
3996
4328
|
font-weight: 400;
|
3997
4329
|
margin: 0;
|
3998
|
-
outline: 0;
|
3999
4330
|
padding: 0;
|
4000
4331
|
text-align: left;
|
4001
4332
|
-webkit-font-smoothing: auto;
|
@@ -4031,17 +4362,57 @@ input.usa-input-medium {
|
|
4031
4362
|
}
|
4032
4363
|
}
|
4033
4364
|
|
4365
|
+
.usa-nav-submenu {
|
4366
|
+
margin-top: 0;
|
4367
|
+
margin-bottom: 0;
|
4368
|
+
list-style-type: none;
|
4369
|
+
padding-left: 0;
|
4370
|
+
margin: 0;
|
4371
|
+
width: 100%;
|
4372
|
+
}
|
4373
|
+
|
4374
|
+
.usa-nav-submenu > li {
|
4375
|
+
margin-bottom: 0;
|
4376
|
+
}
|
4377
|
+
|
4378
|
+
.usa-nav-submenu li {
|
4379
|
+
border: none;
|
4380
|
+
font-size: 1.5rem;
|
4381
|
+
}
|
4382
|
+
|
4383
|
+
.usa-nav-submenu a {
|
4384
|
+
padding-left: 2.8rem;
|
4385
|
+
line-height: 1.3;
|
4386
|
+
}
|
4387
|
+
|
4388
|
+
.usa-nav-submenu a:hover, .usa-nav-submenu a.usa-current {
|
4389
|
+
/* stylelint-disable-line selector-no-qualifying-type */
|
4390
|
+
border: none;
|
4391
|
+
padding-left: 2.8rem;
|
4392
|
+
}
|
4393
|
+
|
4394
|
+
.usa-nav-submenu .usa-sidenav-sub_list a {
|
4395
|
+
padding-left: 3.8rem;
|
4396
|
+
}
|
4397
|
+
|
4398
|
+
.usa-nav-submenu .usa-sidenav-sub_list a:focus {
|
4399
|
+
outline-offset: 0;
|
4400
|
+
}
|
4401
|
+
|
4402
|
+
.usa-nav-submenu .usa-sidenav-sub_list a:hover {
|
4403
|
+
padding-left: 3.8rem;
|
4404
|
+
}
|
4405
|
+
|
4034
4406
|
@media screen and (min-width: 951px) {
|
4035
4407
|
.usa-nav-submenu {
|
4036
4408
|
margin-top: 0;
|
4037
4409
|
margin-bottom: 0;
|
4038
4410
|
list-style-type: none;
|
4039
4411
|
padding-left: 0;
|
4040
|
-
padding-top:
|
4041
|
-
padding-bottom:
|
4412
|
+
padding-top: 0.75rem;
|
4413
|
+
padding-bottom: 0.9rem;
|
4042
4414
|
background-color: #112e51;
|
4043
|
-
|
4044
|
-
width: auto;
|
4415
|
+
width: 21.5rem;
|
4045
4416
|
position: absolute;
|
4046
4417
|
}
|
4047
4418
|
.usa-nav-submenu > li {
|
@@ -4064,6 +4435,7 @@ input.usa-input-medium {
|
|
4064
4435
|
.usa-nav-submenu a:hover {
|
4065
4436
|
background-color: #112e51;
|
4066
4437
|
color: #ffffff;
|
4438
|
+
padding-left: 1.5rem;
|
4067
4439
|
text-decoration: underline;
|
4068
4440
|
}
|
4069
4441
|
}
|
@@ -4079,11 +4451,10 @@ input.usa-input-medium {
|
|
4079
4451
|
border-radius: 0;
|
4080
4452
|
font-weight: 400;
|
4081
4453
|
margin: 0;
|
4082
|
-
outline: 0;
|
4083
4454
|
padding: 0;
|
4084
4455
|
text-align: left;
|
4085
4456
|
-webkit-font-smoothing: auto;
|
4086
|
-
margin: -1.2rem -1.5rem
|
4457
|
+
margin: -1.2rem -1.5rem 1.5rem auto;
|
4087
4458
|
float: right;
|
4088
4459
|
height: 4.4rem;
|
4089
4460
|
text-align: center;
|
@@ -4104,6 +4475,10 @@ input.usa-input-medium {
|
|
4104
4475
|
width: 1.3rem;
|
4105
4476
|
}
|
4106
4477
|
|
4478
|
+
.usa-nav-close + * {
|
4479
|
+
clear: both;
|
4480
|
+
}
|
4481
|
+
|
4107
4482
|
.usa-mobile_nav-active {
|
4108
4483
|
overflow: hidden;
|
4109
4484
|
}
|
@@ -4165,7 +4540,7 @@ input.usa-input-medium {
|
|
4165
4540
|
.usa-header-basic-megamenu .usa-nav-inner {
|
4166
4541
|
display: block;
|
4167
4542
|
float: right;
|
4168
|
-
margin-top: -
|
4543
|
+
margin-top: -3.8rem;
|
4169
4544
|
}
|
4170
4545
|
}
|
4171
4546
|
|
@@ -4221,29 +4596,6 @@ input.usa-input-medium {
|
|
4221
4596
|
display: block;
|
4222
4597
|
}
|
4223
4598
|
|
4224
|
-
.usa-search [type=search],
|
4225
|
-
.usa-search .usa-search-input {
|
4226
|
-
padding-top: 0;
|
4227
|
-
padding-bottom: 0;
|
4228
|
-
-webkit-appearance: none;
|
4229
|
-
border-bottom-right-radius: 0;
|
4230
|
-
border-right: none;
|
4231
|
-
border-top-right-radius: 0;
|
4232
|
-
box-sizing: border-box;
|
4233
|
-
float: left;
|
4234
|
-
font-size: 1.4rem;
|
4235
|
-
height: 3.3rem;
|
4236
|
-
margin: 0;
|
4237
|
-
width: calc(100% - 4.5rem);
|
4238
|
-
}
|
4239
|
-
|
4240
|
-
@media screen and (min-width: 481px) {
|
4241
|
-
.usa-search [type=search],
|
4242
|
-
.usa-search .usa-search-input {
|
4243
|
-
width: calc(100% - 8.5rem);
|
4244
|
-
}
|
4245
|
-
}
|
4246
|
-
|
4247
4599
|
.usa-search [type=submit],
|
4248
4600
|
.usa-search .usa-search-submit {
|
4249
4601
|
background-image: url("../img/search.png");
|
@@ -4266,16 +4618,6 @@ input.usa-input-medium {
|
|
4266
4618
|
}
|
4267
4619
|
}
|
4268
4620
|
|
4269
|
-
.usa-search .usa-search-submit-text {
|
4270
|
-
display: none;
|
4271
|
-
}
|
4272
|
-
|
4273
|
-
@media screen and (min-width: 481px) {
|
4274
|
-
.usa-search .usa-search-submit-text {
|
4275
|
-
display: block;
|
4276
|
-
}
|
4277
|
-
}
|
4278
|
-
|
4279
4621
|
@media screen and (min-width: 481px) {
|
4280
4622
|
.usa-search.usa-search-big [type=search],
|
4281
4623
|
.usa-search.usa-search-big .usa-search-input {
|
@@ -4313,6 +4655,45 @@ input.usa-input-medium {
|
|
4313
4655
|
}
|
4314
4656
|
}
|
4315
4657
|
|
4658
|
+
input[type=search] {
|
4659
|
+
/* stylelint-disable-line selector-no-qualifying-type */
|
4660
|
+
box-sizing: border-box;
|
4661
|
+
-webkit-appearance: none;
|
4662
|
+
}
|
4663
|
+
|
4664
|
+
[type=search],
|
4665
|
+
.usa-search-input {
|
4666
|
+
padding-top: 0;
|
4667
|
+
padding-bottom: 0;
|
4668
|
+
border-bottom-right-radius: 0;
|
4669
|
+
border-right: none;
|
4670
|
+
border-top-right-radius: 0;
|
4671
|
+
box-sizing: border-box;
|
4672
|
+
float: left;
|
4673
|
+
font-size: 1.4rem;
|
4674
|
+
height: 3.3rem;
|
4675
|
+
margin: 0;
|
4676
|
+
width: calc(100% - 4.5rem);
|
4677
|
+
}
|
4678
|
+
|
4679
|
+
@media screen and (min-width: 481px) {
|
4680
|
+
[type=search],
|
4681
|
+
.usa-search-input {
|
4682
|
+
width: calc(100% - 8.5rem);
|
4683
|
+
}
|
4684
|
+
}
|
4685
|
+
|
4686
|
+
.usa-search-submit-text {
|
4687
|
+
position: absolute;
|
4688
|
+
left: -999em;
|
4689
|
+
}
|
4690
|
+
|
4691
|
+
@media screen and (min-width: 481px) {
|
4692
|
+
.usa-search-submit-text {
|
4693
|
+
position: static;
|
4694
|
+
}
|
4695
|
+
}
|
4696
|
+
|
4316
4697
|
.usa-section {
|
4317
4698
|
padding-top: 3rem;
|
4318
4699
|
padding-bottom: 3rem;
|
@@ -4393,6 +4774,7 @@ input.usa-input-medium {
|
|
4393
4774
|
}
|
4394
4775
|
|
4395
4776
|
.usa-sidenav-list a:focus {
|
4777
|
+
outline-offset: 0;
|
4396
4778
|
position: relative;
|
4397
4779
|
z-index: 1;
|
4398
4780
|
}
|
@@ -4438,6 +4820,10 @@ input.usa-input-medium {
|
|
4438
4820
|
padding-left: 3.8rem;
|
4439
4821
|
}
|
4440
4822
|
|
4823
|
+
.usa-sidenav-sub_list .usa-sidenav-sub_list a:focus {
|
4824
|
+
outline-offset: 0;
|
4825
|
+
}
|
4826
|
+
|
4441
4827
|
.usa-sidenav-sub_list .usa-sidenav-sub_list a:hover {
|
4442
4828
|
padding-left: 3.8rem;
|
4443
4829
|
}
|