@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,137 @@
|
|
|
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
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
7
|
+
**/
|
|
8
|
+
/**
|
|
9
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
10
|
+
**/
|
|
11
|
+
/**
|
|
12
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
13
|
+
working while we work on deprecation.
|
|
14
|
+
**/
|
|
15
|
+
/**
|
|
16
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
17
|
+
**/
|
|
18
|
+
/**
|
|
19
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
20
|
+
**/
|
|
21
|
+
/**
|
|
22
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
23
|
+
working while we work on deprecation.
|
|
24
|
+
**/
|
|
25
|
+
.usa-sr-only {
|
|
26
|
+
position: absolute;
|
|
27
|
+
left: -999em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.full-width {
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.no-text-transform {
|
|
35
|
+
text-transform: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.no-bottom-margin {
|
|
39
|
+
margin-bottom: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.va-button-link {
|
|
43
|
+
background: none;
|
|
44
|
+
background-color: transparent !important;
|
|
45
|
+
border: 0;
|
|
46
|
+
border-radius: 0;
|
|
47
|
+
outline: 0;
|
|
48
|
+
padding: 0 !important;
|
|
49
|
+
margin: 0;
|
|
50
|
+
text-align: left;
|
|
51
|
+
-webkit-font-smoothing: auto;
|
|
52
|
+
color: #005ea2 !important;
|
|
53
|
+
font-weight: normal;
|
|
54
|
+
text-decoration: underline;
|
|
55
|
+
display: inline;
|
|
56
|
+
width: auto !important;
|
|
57
|
+
line-height: inherit;
|
|
58
|
+
}
|
|
59
|
+
.va-button-link:hover {
|
|
60
|
+
background: none;
|
|
61
|
+
border: 0;
|
|
62
|
+
border-radius: 0;
|
|
63
|
+
outline: 0;
|
|
64
|
+
padding: 0 !important;
|
|
65
|
+
color: #005ea2;
|
|
66
|
+
text-decoration: underline;
|
|
67
|
+
background-color: rgba(0, 0, 0, 0.05) !important;
|
|
68
|
+
-webkit-transition-duration: 0.3s;
|
|
69
|
+
transition-duration: 0.3s;
|
|
70
|
+
-webkit-transition-timing-function: ease-in-out;
|
|
71
|
+
transition-timing-function: ease-in-out;
|
|
72
|
+
-webkit-transition-property: color, background-color, border-color;
|
|
73
|
+
transition-property: color, background-color, border-color;
|
|
74
|
+
}
|
|
75
|
+
.va-button-link:active {
|
|
76
|
+
background: rgba(0, 0, 0, 0.05);
|
|
77
|
+
}
|
|
78
|
+
.va-button-link:focus {
|
|
79
|
+
outline: 2px solid #face00;
|
|
80
|
+
outline-offset: 2px;
|
|
81
|
+
outline-offset: 0;
|
|
82
|
+
}
|
|
83
|
+
.va-button-link:disabled {
|
|
84
|
+
text-decoration: none;
|
|
85
|
+
color: #aeb0b5 !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.dashed-underline {
|
|
89
|
+
text-decoration: none;
|
|
90
|
+
border-bottom: 1px dashed;
|
|
91
|
+
}
|
|
92
|
+
.dashed-underline:hover {
|
|
93
|
+
text-decoration: none;
|
|
94
|
+
border-bottom: 1px dashed;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.clickable:hover {
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.js-visual {
|
|
102
|
+
visibility: hidden !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.js-hide {
|
|
106
|
+
display: none !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.heading-level-1 {
|
|
110
|
+
font-size: 2.5rem;
|
|
111
|
+
font-weight: 700;
|
|
112
|
+
}
|
|
113
|
+
.heading-level-2 {
|
|
114
|
+
font-size: 1.875rem;
|
|
115
|
+
font-weight: 700;
|
|
116
|
+
}
|
|
117
|
+
.heading-level-3 {
|
|
118
|
+
font-size: 1.25rem;
|
|
119
|
+
font-weight: 700;
|
|
120
|
+
}
|
|
121
|
+
.heading-level-4 {
|
|
122
|
+
font-size: 1.0625rem;
|
|
123
|
+
font-weight: 700;
|
|
124
|
+
}
|
|
125
|
+
.heading-level-5 {
|
|
126
|
+
font-size: 0.9375rem;
|
|
127
|
+
font-weight: 700;
|
|
128
|
+
}
|
|
129
|
+
.heading-level-6 {
|
|
130
|
+
font-size: 0.8125rem;
|
|
131
|
+
font-weight: 400;
|
|
132
|
+
line-height: 1.5;
|
|
133
|
+
text-transform: uppercase;
|
|
134
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/*# sourceMappingURL=utils.css.map */
|
|
@@ -1 +1,407 @@
|
|
|
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
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
7
|
+
**/
|
|
8
|
+
/**
|
|
9
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
10
|
+
**/
|
|
11
|
+
html,
|
|
12
|
+
body {
|
|
13
|
+
padding: 0;
|
|
14
|
+
margin: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
html {
|
|
18
|
+
font-size: 16px;
|
|
19
|
+
font-weight: 500;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
background: #ffffff;
|
|
24
|
+
color: #1b1b1b;
|
|
25
|
+
font-size: 16px;
|
|
26
|
+
font-family: inherit;
|
|
27
|
+
line-height: 1.5;
|
|
28
|
+
}
|
|
29
|
+
body.modal-open {
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h1 {
|
|
34
|
+
margin-top: 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.show-on-focus {
|
|
38
|
+
position: absolute;
|
|
39
|
+
top: -10em;
|
|
40
|
+
background: #ffffff;
|
|
41
|
+
padding: 1em;
|
|
42
|
+
margin: 1em;
|
|
43
|
+
color: #162e51;
|
|
44
|
+
display: block;
|
|
45
|
+
font-weight: 600;
|
|
46
|
+
}
|
|
47
|
+
.show-on-focus:focus {
|
|
48
|
+
position: inherit;
|
|
49
|
+
top: auto;
|
|
50
|
+
outline: 2px solid #ffbe2e;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
body .row.full {
|
|
54
|
+
width: 100%;
|
|
55
|
+
max-width: 100%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.sr-only {
|
|
59
|
+
border: 0;
|
|
60
|
+
clip: rect(0, 0, 0, 0);
|
|
61
|
+
clip-path: inset(50%);
|
|
62
|
+
height: 1px;
|
|
63
|
+
margin: -1px;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
padding: 0;
|
|
66
|
+
position: absolute !important;
|
|
67
|
+
width: 1px;
|
|
68
|
+
word-wrap: normal !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.no-print-no-sr {
|
|
72
|
+
display: none !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
#content abbr {
|
|
76
|
+
border-bottom: 0px;
|
|
77
|
+
text-decoration: none;
|
|
78
|
+
font-weight: inherit;
|
|
79
|
+
font-style: inherit;
|
|
80
|
+
color: inherit;
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
a {
|
|
85
|
+
color: #005ea2;
|
|
86
|
+
text-decoration: underline;
|
|
87
|
+
-webkit-transition-duration: 0.3s;
|
|
88
|
+
transition-duration: 0.3s;
|
|
89
|
+
-webkit-transition-timing-function: ease-in-out;
|
|
90
|
+
transition-timing-function: ease-in-out;
|
|
91
|
+
-webkit-transition-property: color, background-color, border-color;
|
|
92
|
+
transition-property: color, background-color, border-color;
|
|
93
|
+
}
|
|
94
|
+
a:hover {
|
|
95
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
96
|
+
color: inherit;
|
|
97
|
+
text-decoration: underline;
|
|
98
|
+
}
|
|
99
|
+
a:active {
|
|
100
|
+
background: rgba(0, 0, 0, 0.05);
|
|
101
|
+
}
|
|
102
|
+
a:visited, a:visited abbr {
|
|
103
|
+
color: #54278f;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
ul {
|
|
107
|
+
padding: 0 0 0 1.5em;
|
|
108
|
+
list-style: square;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
ol {
|
|
112
|
+
margin: 0 0 0 1.25em;
|
|
113
|
+
list-style-position: outside;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
ul > ul,
|
|
117
|
+
ul ol,
|
|
118
|
+
ol > ul,
|
|
119
|
+
ol ol {
|
|
120
|
+
margin: 0.5em 0 0.5em 1.2em;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
dd {
|
|
124
|
+
margin-left: 0;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
dd + dt {
|
|
128
|
+
margin-top: 1.5em;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
figure {
|
|
132
|
+
font-size: 0.85em;
|
|
133
|
+
margin-left: -15px;
|
|
134
|
+
margin-right: -15px;
|
|
135
|
+
}
|
|
136
|
+
@media screen and (min-width: 1201px), print and (min-width: 1201px) {
|
|
137
|
+
figure {
|
|
138
|
+
margin-left: -16.66667%;
|
|
139
|
+
margin-right: -16.66667%;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
figcaption {
|
|
144
|
+
color: #162e51;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
input::-webkit-input-placeholder {
|
|
148
|
+
color: #565c65;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
input::-moz-placeholder {
|
|
152
|
+
color: #565c65;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
input:-ms-input-placeholder {
|
|
156
|
+
color: #565c65;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
input:focus::-webkit-input-placeholder {
|
|
160
|
+
color: transparent;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
input:focus::-moz-placeholder {
|
|
164
|
+
color: transparent;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
input:focus:-ms-input-placeholder {
|
|
168
|
+
color: transparent;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
input.va-input-medium-large {
|
|
172
|
+
max-width: 11.25rem;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
hr {
|
|
176
|
+
margin: 2.5em 0;
|
|
177
|
+
margin: 48px 0 40px;
|
|
178
|
+
border: 1px solid #a9aeb1;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
table {
|
|
182
|
+
width: 100%;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.va-pos-fixed {
|
|
186
|
+
position: fixed;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.header {
|
|
190
|
+
background: #162e51;
|
|
191
|
+
clear: both;
|
|
192
|
+
margin: 0;
|
|
193
|
+
padding: 0;
|
|
194
|
+
min-height: 189.19px;
|
|
195
|
+
}
|
|
196
|
+
@media screen and (min-width: 481px), print and (min-width: 481px) {
|
|
197
|
+
.header {
|
|
198
|
+
min-height: 167.19px;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
202
|
+
.header {
|
|
203
|
+
position: relative;
|
|
204
|
+
min-height: 159px;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
.header .login-container {
|
|
208
|
+
background: #162e51;
|
|
209
|
+
flex-wrap: wrap;
|
|
210
|
+
white-space: nowrap;
|
|
211
|
+
}
|
|
212
|
+
.header .login-container .row {
|
|
213
|
+
padding: 0;
|
|
214
|
+
}
|
|
215
|
+
@media screen and (min-width: 640px), print and (min-width: 640px) {
|
|
216
|
+
.header .login-container {
|
|
217
|
+
flex: 1 0 100%;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
#va-header-logo-menu {
|
|
222
|
+
flex-wrap: wrap;
|
|
223
|
+
padding: 1em 0.75em 0;
|
|
224
|
+
}
|
|
225
|
+
@media screen and (min-width: 640px), print and (min-width: 640px) {
|
|
226
|
+
#va-header-logo-menu {
|
|
227
|
+
padding-bottom: 0;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.va-header-logo-wrapper {
|
|
232
|
+
flex: 1 0 164px;
|
|
233
|
+
}
|
|
234
|
+
@media screen and (min-width: 640px), print and (min-width: 640px) {
|
|
235
|
+
.va-header-logo-wrapper {
|
|
236
|
+
flex-basis: 3.75rem;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.va-header-logo {
|
|
241
|
+
background-color: transparent;
|
|
242
|
+
border-bottom: none;
|
|
243
|
+
display: block;
|
|
244
|
+
height: 40px;
|
|
245
|
+
margin: 0;
|
|
246
|
+
width: 164px;
|
|
247
|
+
}
|
|
248
|
+
.va-header-logo:hover .vets-logo-va path {
|
|
249
|
+
fill: #ffbe2e;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.va-notice--banner {
|
|
253
|
+
background: #ffffff;
|
|
254
|
+
margin: 0 0 0.75em 0;
|
|
255
|
+
padding: 0;
|
|
256
|
+
font-weight: 400;
|
|
257
|
+
}
|
|
258
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
259
|
+
.va-notice--banner {
|
|
260
|
+
background: #f1f1f1;
|
|
261
|
+
}
|
|
262
|
+
.va-notice--banner .usa-banner-inner {
|
|
263
|
+
font-size: 12px;
|
|
264
|
+
padding-left: 0.9375rem;
|
|
265
|
+
}
|
|
266
|
+
.va-notice--banner .usa-banner-inner p {
|
|
267
|
+
font-size: 12px;
|
|
268
|
+
}
|
|
269
|
+
.va-notice--banner .usa-banner-content {
|
|
270
|
+
padding-left: 0;
|
|
271
|
+
padding-right: 0;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
@media screen and (min-width: 1024px), print and (min-width: 1024px) {
|
|
275
|
+
.va-notice--banner .usa-banner-inner {
|
|
276
|
+
padding-left: 0;
|
|
277
|
+
font-size: 12px;
|
|
278
|
+
}
|
|
279
|
+
.va-notice--banner .usa-banner-inner p {
|
|
280
|
+
font-size: 12px;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
.va-notice--banner-inner {
|
|
284
|
+
margin: auto;
|
|
285
|
+
max-width: 1000px;
|
|
286
|
+
position: relative;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.va-notice--banner p {
|
|
290
|
+
margin: 0;
|
|
291
|
+
}
|
|
292
|
+
.va-notice--banner a {
|
|
293
|
+
background-image: none;
|
|
294
|
+
color: inherit;
|
|
295
|
+
padding: 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.vets-logo {
|
|
299
|
+
display: block;
|
|
300
|
+
height: inherit;
|
|
301
|
+
width: inherit;
|
|
302
|
+
}
|
|
303
|
+
.vets-logo-vetsdotgov path,
|
|
304
|
+
.vets-logo-vetsdotgov rect, .vets-logo-va path,
|
|
305
|
+
.vets-logo-va rect {
|
|
306
|
+
fill: #ffffff;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
article > h1 {
|
|
310
|
+
margin-top: 0;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
#content {
|
|
314
|
+
margin: 0;
|
|
315
|
+
padding: 0;
|
|
316
|
+
color: #1b1b1b;
|
|
317
|
+
overflow: hidden;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.va-introtext {
|
|
321
|
+
font-family: Bitter, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
322
|
+
font-size: 1.25rem;
|
|
323
|
+
font-weight: 400;
|
|
324
|
+
line-height: 1.7;
|
|
325
|
+
max-width: 48.125rem;
|
|
326
|
+
}
|
|
327
|
+
.va-introtext p, .va-introtext a {
|
|
328
|
+
font-family: Bitter, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
329
|
+
font-size: 1.25rem;
|
|
330
|
+
font-weight: 400;
|
|
331
|
+
line-height: 1.7;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.va-h-ruled--stars {
|
|
335
|
+
display: flex;
|
|
336
|
+
justify-content: center;
|
|
337
|
+
align-items: center;
|
|
338
|
+
background: url("/img/stars.png") no-repeat center;
|
|
339
|
+
background-size: 6.875rem auto;
|
|
340
|
+
margin: 1rem auto auto;
|
|
341
|
+
padding: 1.25rem 0 0;
|
|
342
|
+
text-align: center;
|
|
343
|
+
}
|
|
344
|
+
.va-h-ruled--stars::before {
|
|
345
|
+
margin-right: 7.5rem;
|
|
346
|
+
}
|
|
347
|
+
.va-h-ruled--stars::before, .va-h-ruled--stars::after {
|
|
348
|
+
border-top: 1px solid #aeb0b5;
|
|
349
|
+
content: " ";
|
|
350
|
+
flex: 1 1 50%;
|
|
351
|
+
padding: 0.625rem 0;
|
|
352
|
+
}
|
|
353
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
354
|
+
.va-h-ruled--stars {
|
|
355
|
+
padding-left: 0;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.va-button-primary {
|
|
360
|
+
background: #008817 !important;
|
|
361
|
+
}
|
|
362
|
+
.va-button-primary:hover, .va-button-primary:focus {
|
|
363
|
+
background-color: #154c21 !important;
|
|
364
|
+
text-decoration: none !important;
|
|
365
|
+
}
|
|
366
|
+
.va-button-primary svg {
|
|
367
|
+
display: inline-block;
|
|
368
|
+
height: 0.75rem;
|
|
369
|
+
margin-left: 0.3125rem;
|
|
370
|
+
width: 0.75rem;
|
|
371
|
+
vertical-align: -1px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.last-updated {
|
|
375
|
+
margin-top: 1.5em;
|
|
376
|
+
border-top: 2px solid #aeb0b5;
|
|
377
|
+
padding: 1em 0;
|
|
378
|
+
}
|
|
379
|
+
.last-updated p {
|
|
380
|
+
color: #323a45 !important;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.feature {
|
|
384
|
+
background: #e1f3f8;
|
|
385
|
+
padding: 1em;
|
|
386
|
+
clear: both;
|
|
387
|
+
margin: 1.5em 0 1.5em 0;
|
|
388
|
+
}
|
|
389
|
+
.feature h2 {
|
|
390
|
+
margin-top: 0;
|
|
391
|
+
}
|
|
392
|
+
.feature h3 {
|
|
393
|
+
margin-top: 0;
|
|
394
|
+
}
|
|
395
|
+
.feature h4 {
|
|
396
|
+
margin-top: 0;
|
|
397
|
+
}
|
|
398
|
+
.feature ul {
|
|
399
|
+
margin: 0 0 0.5em 1.5em;
|
|
400
|
+
padding: 0;
|
|
401
|
+
}
|
|
402
|
+
.feature ul li {
|
|
403
|
+
list-style: square;
|
|
404
|
+
margin: 0;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
/*# sourceMappingURL=va.css.map */
|