@department-of-veterans-affairs/css-library 0.13.1-rc2 → 0.14.0-rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/stylesheets/base/fonts.css +1596 -1
- package/dist/stylesheets/base/headings.css +1530 -1
- package/dist/stylesheets/base/utils.css +137 -1
- package/dist/stylesheets/base/va.css +407 -1
- package/dist/stylesheets/core.css +6470 -1
- package/dist/stylesheets/formation-overrides/core/base.css +64 -1
- package/dist/stylesheets/formation-overrides/core/fonts.css +46 -1
- package/dist/stylesheets/formation-overrides/elements/buttons.css +562 -1
- package/dist/stylesheets/formation-overrides/elements/inputs.css +384 -1
- package/dist/stylesheets/formation-overrides/elements/labels.css +28 -1
- package/dist/stylesheets/formation-overrides/elements/lists.css +57 -1
- package/dist/stylesheets/formation-overrides/elements/table.css +78 -1
- package/dist/stylesheets/formation-overrides/elements/typography.css +312 -1
- package/dist/stylesheets/mobile-typography.css +13 -1
- package/dist/stylesheets/modules/m-action-link.css +1454 -1
- package/dist/stylesheets/modules/m-additional-info.css +39 -1
- package/dist/stylesheets/modules/m-alert.css +256 -1
- package/dist/stylesheets/modules/m-breadcrumbs.css +96 -1
- package/dist/stylesheets/modules/m-button.css +153 -1
- package/dist/stylesheets/modules/m-dropdown.css +47 -1
- package/dist/stylesheets/modules/m-emergency-banner.css +33 -1
- package/dist/stylesheets/modules/m-external-link.css +14 -1
- package/dist/stylesheets/modules/m-form-elements.css +231 -1
- package/dist/stylesheets/modules/m-form-process.css +219 -1
- package/dist/stylesheets/modules/m-homepage-hero.css +76 -1
- package/dist/stylesheets/modules/m-hub-page-link-list.css +40 -1
- package/dist/stylesheets/modules/m-loading-indicator.css +45 -1
- package/dist/stylesheets/modules/m-maintenance-banner.css +33 -1
- package/dist/stylesheets/modules/m-megamenu.css +370 -1
- package/dist/stylesheets/modules/m-modal.css +121 -1
- package/dist/stylesheets/modules/m-nav-linklist.css +49 -1
- package/dist/stylesheets/modules/m-nav-sidebar.css +353 -1
- package/dist/stylesheets/modules/m-omb-info.css +5 -0
- package/dist/stylesheets/modules/m-overlay.css +72 -1
- package/dist/stylesheets/modules/m-print.css +27 -1
- package/dist/stylesheets/modules/m-process-list.css +162 -1
- package/dist/stylesheets/modules/va-pagination.css +90 -1
- package/dist/stylesheets/modules/va-tabs.css +53 -1
- package/dist/stylesheets/shame.css +267 -1
- package/dist/stylesheets/uswds-typography.css +4222 -1
- package/dist/stylesheets/utilities.css +15622 -1
- package/dist/tokens/css/variables.css +1 -1
- package/dist/tokens/scss/variables.scss +1 -1
- package/package.json +1 -1
|
@@ -1 +1,353 @@
|
|
|
1
|
-
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/**
|
|
3
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
4
|
+
working while we work on deprecation.
|
|
5
|
+
**/
|
|
6
|
+
/**
|
|
7
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
8
|
+
working while we work on deprecation.
|
|
9
|
+
**/
|
|
10
|
+
/**
|
|
11
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
12
|
+
working while we work on deprecation.
|
|
13
|
+
**/
|
|
14
|
+
/**
|
|
15
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
16
|
+
**/
|
|
17
|
+
/**
|
|
18
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
19
|
+
**/
|
|
20
|
+
.usa-sidenav-list a {
|
|
21
|
+
font-size: 15px;
|
|
22
|
+
text-decoration: none;
|
|
23
|
+
padding: 8px 16px 8px 12px;
|
|
24
|
+
}
|
|
25
|
+
.usa-sidenav-list a.va-button-primary {
|
|
26
|
+
padding: 0.625rem 1.25rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@media (min-width: 320px) and (max-width: 767px) {
|
|
30
|
+
.va-sidebarnav {
|
|
31
|
+
display: none;
|
|
32
|
+
}
|
|
33
|
+
button.va-sidebarnav-close {
|
|
34
|
+
position: absolute;
|
|
35
|
+
right: 2px;
|
|
36
|
+
top: 2px;
|
|
37
|
+
}
|
|
38
|
+
button.va-sidebarnav-close:hover, button.va-sidebarnav-close:focus {
|
|
39
|
+
background-color: #f0f0f0;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
.left-side-nav-title {
|
|
43
|
+
color: #000000;
|
|
44
|
+
padding-left: 1em;
|
|
45
|
+
}
|
|
46
|
+
@media screen and (min-width: 1024px), print and (min-width: 1024px) {
|
|
47
|
+
.left-side-nav-title {
|
|
48
|
+
padding-left: 0;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.va-sidebarnav {
|
|
53
|
+
color: #005ea2;
|
|
54
|
+
}
|
|
55
|
+
.va-sidebarnav h4 {
|
|
56
|
+
margin-top: 0;
|
|
57
|
+
}
|
|
58
|
+
.va-sidebarnav li {
|
|
59
|
+
border-top-color: #d6d7d9;
|
|
60
|
+
}
|
|
61
|
+
@media screen and (max-width: 767px) {
|
|
62
|
+
.va-sidebarnav {
|
|
63
|
+
left: 0;
|
|
64
|
+
height: 100%;
|
|
65
|
+
overflow: scroll;
|
|
66
|
+
padding: 1.6rem;
|
|
67
|
+
position: absolute;
|
|
68
|
+
top: 0;
|
|
69
|
+
visibility: hidden;
|
|
70
|
+
}
|
|
71
|
+
.va-l-detail-page .va-sidebarnav {
|
|
72
|
+
width: 100%;
|
|
73
|
+
}
|
|
74
|
+
.va-sidebarnav::before {
|
|
75
|
+
background: rgba(0, 0, 0, 0.05);
|
|
76
|
+
content: " ";
|
|
77
|
+
display: block;
|
|
78
|
+
height: 100%;
|
|
79
|
+
left: 0;
|
|
80
|
+
position: fixed;
|
|
81
|
+
top: 0;
|
|
82
|
+
width: 100%;
|
|
83
|
+
z-index: 1;
|
|
84
|
+
}
|
|
85
|
+
.va-sidebarnav > div {
|
|
86
|
+
visibility: visible;
|
|
87
|
+
background: #ffffff;
|
|
88
|
+
border-left: 1px solid #aeb0b5;
|
|
89
|
+
height: 100%;
|
|
90
|
+
max-width: 18.75rem;
|
|
91
|
+
overflow: auto;
|
|
92
|
+
padding: 2rem 1rem 1rem;
|
|
93
|
+
z-index: 2;
|
|
94
|
+
position: absolute;
|
|
95
|
+
top: 0;
|
|
96
|
+
right: 0;
|
|
97
|
+
width: 80%;
|
|
98
|
+
transform: translateX(100%);
|
|
99
|
+
-webkit-transition: 100ms transform linear;
|
|
100
|
+
transition: 100ms transform linear;
|
|
101
|
+
}
|
|
102
|
+
.va-sidebarnav--opened {
|
|
103
|
+
visibility: visible;
|
|
104
|
+
display: block;
|
|
105
|
+
position: fixed;
|
|
106
|
+
z-index: 300;
|
|
107
|
+
}
|
|
108
|
+
.va-sidebarnav--opened > div {
|
|
109
|
+
transform: translateX(0);
|
|
110
|
+
}
|
|
111
|
+
.va-sidebarnav-close {
|
|
112
|
+
position: absolute;
|
|
113
|
+
top: 0;
|
|
114
|
+
right: 0;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
118
|
+
.va-sidebarnav a {
|
|
119
|
+
padding-right: 1rem;
|
|
120
|
+
}
|
|
121
|
+
.va-sidebarnav-close {
|
|
122
|
+
display: none;
|
|
123
|
+
}
|
|
124
|
+
.va-sidebarnav .usa-sidenav-list {
|
|
125
|
+
margin-right: 1rem;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
.va-sidebarnav ul.usa-accordion > li {
|
|
129
|
+
margin-bottom: -1px;
|
|
130
|
+
}
|
|
131
|
+
.va-sidebarnav .left-side-nav-title {
|
|
132
|
+
padding-bottom: 25px;
|
|
133
|
+
}
|
|
134
|
+
.va-sidebarnav .left-side-nav-title > .icon-small {
|
|
135
|
+
vertical-align: middle;
|
|
136
|
+
padding-left: initial;
|
|
137
|
+
margin-right: 5px;
|
|
138
|
+
font-size: 1.0625rem;
|
|
139
|
+
}
|
|
140
|
+
.va-sidebarnav .usa-sidenav-list {
|
|
141
|
+
margin-right: 0;
|
|
142
|
+
margin-left: 0;
|
|
143
|
+
}
|
|
144
|
+
.va-sidebarnav .usa-sidenav-list > li {
|
|
145
|
+
border-top: 0;
|
|
146
|
+
}
|
|
147
|
+
.va-sidebarnav .usa-sidenav-list > li .active-menu {
|
|
148
|
+
border-bottom: 0;
|
|
149
|
+
}
|
|
150
|
+
.va-sidebarnav .usa-sidenav-list > li a {
|
|
151
|
+
color: #005ea2;
|
|
152
|
+
display: inline-block;
|
|
153
|
+
vertical-align: middle;
|
|
154
|
+
width: 100%;
|
|
155
|
+
border-left: 4px solid transparent;
|
|
156
|
+
}
|
|
157
|
+
.va-sidebarnav .usa-sidenav-list > li a:hover, .va-sidebarnav .usa-sidenav-list > li a:focus {
|
|
158
|
+
background-color: #e1f3f8;
|
|
159
|
+
padding: 8px 14px;
|
|
160
|
+
border-color: #005ea2;
|
|
161
|
+
transition: background-color 0.1s ease-in-out 0s, border-color 0.1s ease-in-out 0s, padding 0.1s ease-in-out 0s;
|
|
162
|
+
}
|
|
163
|
+
.va-sidebarnav .usa-sidenav-list > li i {
|
|
164
|
+
color: #000000;
|
|
165
|
+
vertical-align: middle;
|
|
166
|
+
font-size: 15px;
|
|
167
|
+
padding-left: 0;
|
|
168
|
+
}
|
|
169
|
+
.va-sidebarnav .usa-sidenav-list .menu-item-container > a {
|
|
170
|
+
font-weight: bold;
|
|
171
|
+
}
|
|
172
|
+
.va-sidebarnav .usa-sidenav-list .menu-item-container:hover {
|
|
173
|
+
background-color: #f1f1f1;
|
|
174
|
+
color: #005ea2;
|
|
175
|
+
}
|
|
176
|
+
.va-sidebarnav .usa-sidenav-list .menu-item-container:focus {
|
|
177
|
+
outline: 2px solid #fdb81e;
|
|
178
|
+
outline-offset: 3px;
|
|
179
|
+
}
|
|
180
|
+
.va-sidebarnav .usa-sidenav-list a.usa-current {
|
|
181
|
+
color: #212121;
|
|
182
|
+
border-left: 4px solid #212121;
|
|
183
|
+
padding-left: 12px;
|
|
184
|
+
margin-left: 16px;
|
|
185
|
+
background-color: #f0f0f0;
|
|
186
|
+
cursor: auto;
|
|
187
|
+
}
|
|
188
|
+
.va-sidebarnav .usa-sidenav-list a.usa-current.level-one {
|
|
189
|
+
padding-left: 14px;
|
|
190
|
+
margin-left: 0;
|
|
191
|
+
}
|
|
192
|
+
.va-sidebarnav .usa-sidenav-list a.usa-current:hover {
|
|
193
|
+
background-color: #f0f0f0;
|
|
194
|
+
font-weight: bold;
|
|
195
|
+
}
|
|
196
|
+
.va-sidebarnav .usa-sidenav-list .active-level {
|
|
197
|
+
background-color: #f0f0f0;
|
|
198
|
+
}
|
|
199
|
+
.va-sidebarnav .usa-sidenav-list .active-level .usa-sidenav-sub_list {
|
|
200
|
+
margin-top: 2px;
|
|
201
|
+
margin-bottom: 2px;
|
|
202
|
+
}
|
|
203
|
+
.va-sidebarnav .usa-sidenav-list .active-level .usa-sidenav-sub_list li > a {
|
|
204
|
+
padding: 8px 14px 8px 28px;
|
|
205
|
+
}
|
|
206
|
+
.va-sidebarnav .usa-sidenav-list .active-level .usa-sidenav-sub_list li > a:hover {
|
|
207
|
+
padding: 8px 12px 8px 30px;
|
|
208
|
+
}
|
|
209
|
+
.va-sidebarnav .usa-sidenav-list .active-level .usa-sidenav-sub_list li:last-child a {
|
|
210
|
+
padding-bottom: 12px;
|
|
211
|
+
}
|
|
212
|
+
.va-sidebarnav h4 {
|
|
213
|
+
display: inline-block;
|
|
214
|
+
margin-bottom: 0;
|
|
215
|
+
margin-top: 0;
|
|
216
|
+
vertical-align: middle;
|
|
217
|
+
width: 75%;
|
|
218
|
+
}
|
|
219
|
+
.va-sidebarnav .usa-sidenav-list > li i {
|
|
220
|
+
position: relative;
|
|
221
|
+
right: -20px;
|
|
222
|
+
}
|
|
223
|
+
.va-sidebarnav .usa-sidenav-list > li .menu-item-container > a {
|
|
224
|
+
font-weight: initial;
|
|
225
|
+
}
|
|
226
|
+
.va-sidebarnav .usa-sidenav-list > li a.usa-current {
|
|
227
|
+
font-weight: bold;
|
|
228
|
+
margin-left: 0;
|
|
229
|
+
}
|
|
230
|
+
.va-sidebarnav .usa-sidenav-list > li a.usa-current:hover, .va-sidebarnav .usa-sidenav-list > li a.usa-current:focus {
|
|
231
|
+
border-color: #212121;
|
|
232
|
+
padding: 8px 16px 8px 12px;
|
|
233
|
+
}
|
|
234
|
+
.va-sidebarnav .usa-sidenav-sub_list a {
|
|
235
|
+
width: 100% !important;
|
|
236
|
+
padding-left: 40px;
|
|
237
|
+
font-size: 15px;
|
|
238
|
+
}
|
|
239
|
+
.va-sidebarnav .usa-sidenav-sub_list a:focus {
|
|
240
|
+
outline: 2px solid #face00;
|
|
241
|
+
outline-offset: 0px;
|
|
242
|
+
}
|
|
243
|
+
.va-sidebarnav .usa-sidenav-sub_list a:hover, .va-sidebarnav .usa-sidenav-sub_list a:focus {
|
|
244
|
+
background-color: #e1f3f8;
|
|
245
|
+
padding: 8px 12px 8px 30px;
|
|
246
|
+
border-color: #005ea2;
|
|
247
|
+
}
|
|
248
|
+
.va-sidebarnav .usa-sidenav-sub_list a.usa-current {
|
|
249
|
+
margin-left: 16px !important;
|
|
250
|
+
}
|
|
251
|
+
.va-sidebarnav .usa-accordion .usa-accordion-button {
|
|
252
|
+
background-color: #ffffff;
|
|
253
|
+
border-top: 1px solid #d6d7d9;
|
|
254
|
+
border-bottom: 1px solid #d6d7d9;
|
|
255
|
+
background-size: 0.6875rem;
|
|
256
|
+
color: #005ea2;
|
|
257
|
+
font-weight: normal;
|
|
258
|
+
font-size: 17px;
|
|
259
|
+
padding-left: 0.625rem;
|
|
260
|
+
}
|
|
261
|
+
.va-sidebarnav .usa-accordion .usa-accordion-button:focus {
|
|
262
|
+
outline: 0;
|
|
263
|
+
border: 2px solid #fdb81e;
|
|
264
|
+
background-color: #f0f0f0;
|
|
265
|
+
font-weight: bold;
|
|
266
|
+
}
|
|
267
|
+
.va-sidebarnav .usa-accordion .usa-accordion-button:hover {
|
|
268
|
+
background-color: #e1f3f8;
|
|
269
|
+
}
|
|
270
|
+
.va-sidebarnav .usa-accordion .usa-accordion-button[aria-expanded=false] {
|
|
271
|
+
background-image: url("/img/plus-blue.svg");
|
|
272
|
+
}
|
|
273
|
+
.va-sidebarnav .usa-accordion .usa-accordion-button[aria-expanded=true] {
|
|
274
|
+
border-bottom: 0;
|
|
275
|
+
background-image: url("/img/minus-blue.svg");
|
|
276
|
+
}
|
|
277
|
+
.va-sidebarnav .usa-accordion .usa-accordion-button[aria-expanded=true]:focus {
|
|
278
|
+
border: 2px solid #fdb81e;
|
|
279
|
+
}
|
|
280
|
+
.va-sidebarnav .usa-accordion .usa-accordion-content {
|
|
281
|
+
padding: 0;
|
|
282
|
+
}
|
|
283
|
+
.va-sidebarnav .usa-accordion .usa-sidenav-list a {
|
|
284
|
+
font-size: 15px;
|
|
285
|
+
padding: 8px 16px 8px 12px;
|
|
286
|
+
}
|
|
287
|
+
.va-sidebarnav .usa-accordion .usa-sidenav-list a:focus {
|
|
288
|
+
width: 98% !important;
|
|
289
|
+
margin: 2px;
|
|
290
|
+
}
|
|
291
|
+
.va-sidebarnav .usa-accordion .usa-current:focus {
|
|
292
|
+
width: 99% !important;
|
|
293
|
+
margin-top: 2px;
|
|
294
|
+
}
|
|
295
|
+
.va-sidebarnav .usa-accordion-button-dark {
|
|
296
|
+
background-color: #f1f1f1;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.va-btn-sidebarnav-trigger {
|
|
300
|
+
margin: 0;
|
|
301
|
+
padding: 0;
|
|
302
|
+
}
|
|
303
|
+
.va-btn-sidebarnav-trigger.fixed-trigger {
|
|
304
|
+
position: fixed;
|
|
305
|
+
top: 0;
|
|
306
|
+
width: 100%;
|
|
307
|
+
z-index: 299;
|
|
308
|
+
}
|
|
309
|
+
.va-btn-sidebarnav-trigger .button-wrapper {
|
|
310
|
+
position: absolute;
|
|
311
|
+
width: 100%;
|
|
312
|
+
padding: 0.5rem 0.5rem 1rem;
|
|
313
|
+
}
|
|
314
|
+
.va-btn-sidebarnav-trigger button {
|
|
315
|
+
background-color: #ffffff;
|
|
316
|
+
color: #005ea2;
|
|
317
|
+
margin: 0;
|
|
318
|
+
padding: 0.75rem;
|
|
319
|
+
border: 1px solid #005ea2;
|
|
320
|
+
border-radius: 4px;
|
|
321
|
+
width: 100%;
|
|
322
|
+
display: flex;
|
|
323
|
+
align-items: center;
|
|
324
|
+
justify-content: space-between;
|
|
325
|
+
}
|
|
326
|
+
.va-btn-sidebarnav-trigger button strong {
|
|
327
|
+
line-height: 1.25rem;
|
|
328
|
+
}
|
|
329
|
+
.va-btn-sidebarnav-trigger button svg {
|
|
330
|
+
fill: #005ea2;
|
|
331
|
+
}
|
|
332
|
+
.va-btn-sidebarnav-trigger .button-background {
|
|
333
|
+
position: absolute;
|
|
334
|
+
background-color: #ffffff;
|
|
335
|
+
width: 100%;
|
|
336
|
+
}
|
|
337
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
338
|
+
.va-btn-sidebarnav-trigger {
|
|
339
|
+
display: none;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.va-btn-close-icon {
|
|
344
|
+
background: transparent url("/img/close.svg") center no-repeat;
|
|
345
|
+
background-size: 0.625rem 0.625rem;
|
|
346
|
+
height: 1.375rem;
|
|
347
|
+
padding: 1.375rem;
|
|
348
|
+
margin: 0;
|
|
349
|
+
text-indent: -6249.375rem;
|
|
350
|
+
width: 0.625rem;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/*# sourceMappingURL=m-nav-sidebar.css.map */
|
|
@@ -1 +1,72 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
4
|
+
**/
|
|
5
|
+
.va-overlay {
|
|
6
|
+
background: rgba(50, 58, 69, 0.8);
|
|
7
|
+
height: 100%;
|
|
8
|
+
left: 0;
|
|
9
|
+
-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
|
|
10
|
+
opacity: 0;
|
|
11
|
+
position: fixed;
|
|
12
|
+
top: 0;
|
|
13
|
+
transition: opacity 0.5s, visibility 0s 0.5s;
|
|
14
|
+
visibility: hidden;
|
|
15
|
+
width: 100%;
|
|
16
|
+
z-index: 800;
|
|
17
|
+
}
|
|
18
|
+
.va-overlay [type=text] {
|
|
19
|
+
-webkit-appearance: none;
|
|
20
|
+
border-radius: 3px 0 0 3px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.va-mobile-searchclose {
|
|
24
|
+
border-radius: 0;
|
|
25
|
+
display: block !important;
|
|
26
|
+
width: 100% !important;
|
|
27
|
+
margin: 0;
|
|
28
|
+
width: auto;
|
|
29
|
+
background: #005ea2;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.va-overlay--open {
|
|
33
|
+
opacity: 1;
|
|
34
|
+
visibility: visible;
|
|
35
|
+
-webkit-transition: opacity 0.5s;
|
|
36
|
+
transition: opacity 0.5s;
|
|
37
|
+
}
|
|
38
|
+
.va-overlay--open .columns {
|
|
39
|
+
padding: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.va-overlay .menu {
|
|
43
|
+
-webkit-perspective: 1200px;
|
|
44
|
+
perspective: 1200px;
|
|
45
|
+
padding: 1em 1em;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.va-overlay form {
|
|
49
|
+
opacity: 0.4;
|
|
50
|
+
-webkit-transform: translateY(-25%) rotateX(35deg);
|
|
51
|
+
transform: translateY(-25%) rotateX(35deg);
|
|
52
|
+
-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
|
|
53
|
+
transition: transform 0.5s, opacity 0.5s;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.va-overlay--open form {
|
|
57
|
+
opacity: 1;
|
|
58
|
+
-webkit-transform: rotateX(0deg);
|
|
59
|
+
transform: rotateX(0deg);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.va-overlay-body {
|
|
63
|
+
margin: 0.625rem auto;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@media (max-height: 30.5em) {
|
|
67
|
+
.overlay form {
|
|
68
|
+
height: 70%;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/*# sourceMappingURL=m-overlay.css.map */
|
|
@@ -1 +1,27 @@
|
|
|
1
|
-
.print-only
|
|
1
|
+
.print-only {
|
|
2
|
+
display: none;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@media print {
|
|
6
|
+
header, footer, nav {
|
|
7
|
+
display: none;
|
|
8
|
+
}
|
|
9
|
+
.schemaform-title,
|
|
10
|
+
.schemaform-subtitle,
|
|
11
|
+
.screen-only {
|
|
12
|
+
display: none;
|
|
13
|
+
}
|
|
14
|
+
.print-only {
|
|
15
|
+
display: block;
|
|
16
|
+
}
|
|
17
|
+
/* Relative URLs - include the HREF with the domain prepended */
|
|
18
|
+
a[href^="/"]:after {
|
|
19
|
+
content: " (https://www.va.gov" attr(href) ")";
|
|
20
|
+
}
|
|
21
|
+
/* Absolute URLs - show the HREF without prepending the domain. */
|
|
22
|
+
a[href^=http]:after {
|
|
23
|
+
content: " (" attr(href) ")";
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/*# sourceMappingURL=m-print.css.map */
|
|
@@ -1 +1,162 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
4
|
+
**/
|
|
5
|
+
/**
|
|
6
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
7
|
+
working while we work on deprecation.
|
|
8
|
+
**/
|
|
9
|
+
/**
|
|
10
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
11
|
+
**/
|
|
12
|
+
/**
|
|
13
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
14
|
+
**/
|
|
15
|
+
/**
|
|
16
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
17
|
+
working while we work on deprecation.
|
|
18
|
+
**/
|
|
19
|
+
.usa-sr-only {
|
|
20
|
+
position: absolute;
|
|
21
|
+
left: -999em;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.process {
|
|
25
|
+
list-style: none;
|
|
26
|
+
padding: 1em 0;
|
|
27
|
+
position: relative;
|
|
28
|
+
}
|
|
29
|
+
.process h2, .process h3, .process h4, .process h5 {
|
|
30
|
+
margin-top: 0;
|
|
31
|
+
clear: none;
|
|
32
|
+
padding-top: 0.3em;
|
|
33
|
+
}
|
|
34
|
+
.process p {
|
|
35
|
+
padding: 0;
|
|
36
|
+
margin-top: 0;
|
|
37
|
+
}
|
|
38
|
+
.process p:only-of-type {
|
|
39
|
+
margin-top: 0;
|
|
40
|
+
}
|
|
41
|
+
.process p.va-address-block {
|
|
42
|
+
padding-left: 0.625rem;
|
|
43
|
+
}
|
|
44
|
+
.process ul {
|
|
45
|
+
margin: 0 0 1em 1.25em !important;
|
|
46
|
+
padding: 0;
|
|
47
|
+
}
|
|
48
|
+
.process ul li {
|
|
49
|
+
list-style: square;
|
|
50
|
+
margin: 0;
|
|
51
|
+
padding: 0.1em 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.process-step {
|
|
55
|
+
border-left: 8px solid #aeb0b5;
|
|
56
|
+
padding: 0 0 2em 2em;
|
|
57
|
+
list-style: none;
|
|
58
|
+
margin: 0 !important;
|
|
59
|
+
}
|
|
60
|
+
.process-step:before {
|
|
61
|
+
color: #ffffff;
|
|
62
|
+
float: left;
|
|
63
|
+
font-size: 1.3em;
|
|
64
|
+
font-weight: 700;
|
|
65
|
+
text-align: center;
|
|
66
|
+
line-height: 1.575em;
|
|
67
|
+
width: 2em;
|
|
68
|
+
height: 2em;
|
|
69
|
+
top: -0.2em;
|
|
70
|
+
margin-left: -2.7em;
|
|
71
|
+
display: block;
|
|
72
|
+
border: 4px solid #ffffff;
|
|
73
|
+
background: #8d9297;
|
|
74
|
+
border-radius: 4em;
|
|
75
|
+
position: relative;
|
|
76
|
+
}
|
|
77
|
+
.process-step:last-child {
|
|
78
|
+
border-left: 0;
|
|
79
|
+
padding-left: calc(2em + 8px);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.list-one:before {
|
|
83
|
+
content: "1";
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.list-two:before {
|
|
87
|
+
content: "2";
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.list-three:before {
|
|
91
|
+
content: "3";
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.list-four:before {
|
|
95
|
+
content: "4";
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.list-five:before {
|
|
99
|
+
content: "5";
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.list-six:before {
|
|
103
|
+
content: "6";
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.list-seven:before {
|
|
107
|
+
content: "7";
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.list-eight:before {
|
|
111
|
+
content: "8";
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.list-nine:before {
|
|
115
|
+
content: "9";
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.list-ten:before {
|
|
119
|
+
content: "10";
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.list-eleven:before {
|
|
123
|
+
content: "11";
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.list-twelve:before {
|
|
127
|
+
content: "12";
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.list-thirteen:before {
|
|
131
|
+
content: "13";
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.list-fourteen:before {
|
|
135
|
+
content: "14";
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.list-fifteen:before {
|
|
139
|
+
content: "15";
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.list-sixteen:before {
|
|
143
|
+
content: "16";
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.list-seventeen:before {
|
|
147
|
+
content: "17";
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.list-eighteen:before {
|
|
151
|
+
content: "18";
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.list-nineteen:before {
|
|
155
|
+
content: "19";
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.list-twenty:before {
|
|
159
|
+
content: "20";
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/*# sourceMappingURL=m-process-list.css.map */
|