jekyll-theme-uswds 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (255) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +21 -0
  3. data/README.md +124 -0
  4. data/_layouts/default.html +1 -0
  5. data/_layouts/page.html +5 -0
  6. data/_layouts/post.html +5 -0
  7. data/_sass/uswds/_all.scss +1 -0
  8. data/_sass/uswds/components/_accordions.scss +150 -0
  9. data/_sass/uswds/components/_alerts.scss +128 -0
  10. data/_sass/uswds/components/_banner.scss +203 -0
  11. data/_sass/uswds/components/_footer.scss +522 -0
  12. data/_sass/uswds/components/_forms.scss +156 -0
  13. data/_sass/uswds/components/_graphic-list.scss +35 -0
  14. data/_sass/uswds/components/_header.scss +216 -0
  15. data/_sass/uswds/components/_hero.scss +37 -0
  16. data/_sass/uswds/components/_layout.scss +36 -0
  17. data/_sass/uswds/components/_media-block.scss +12 -0
  18. data/_sass/uswds/components/_navigation.scss +561 -0
  19. data/_sass/uswds/components/_search.scss +111 -0
  20. data/_sass/uswds/components/_section.scss +37 -0
  21. data/_sass/uswds/components/_sidenav.scss +31 -0
  22. data/_sass/uswds/components/_skipnav.scss +19 -0
  23. data/_sass/uswds/core/_base.scss +36 -0
  24. data/_sass/uswds/core/_defaults.scss +8 -0
  25. data/_sass/uswds/core/_fonts.scss +65 -0
  26. data/_sass/uswds/core/_grid-settings.scss +3 -0
  27. data/_sass/uswds/core/_grid.scss +198 -0
  28. data/_sass/uswds/core/_utilities.scss +252 -0
  29. data/_sass/uswds/core/_variables-vendor.scss +12 -0
  30. data/_sass/uswds/core/_variables.scss +159 -0
  31. data/_sass/uswds/elements/_buttons.scss +217 -0
  32. data/_sass/uswds/elements/_embed.scss +26 -0
  33. data/_sass/uswds/elements/_figure.scss +13 -0
  34. data/_sass/uswds/elements/_inputs.scss +368 -0
  35. data/_sass/uswds/elements/_labels.scss +20 -0
  36. data/_sass/uswds/elements/_list.scss +32 -0
  37. data/_sass/uswds/elements/_table.scss +55 -0
  38. data/_sass/uswds/elements/_typography.scss +240 -0
  39. data/_sass/uswds/lib/_bourbon-deprecated-upcoming.scss +411 -0
  40. data/_sass/uswds/lib/_bourbon.scss +87 -0
  41. data/_sass/uswds/lib/_neat-helpers.scss +11 -0
  42. data/_sass/uswds/lib/_neat.scss +23 -0
  43. data/_sass/uswds/lib/_normalize.scss +424 -0
  44. data/_sass/uswds/lib/addons/_border-color.scss +26 -0
  45. data/_sass/uswds/lib/addons/_border-radius.scss +48 -0
  46. data/_sass/uswds/lib/addons/_border-style.scss +25 -0
  47. data/_sass/uswds/lib/addons/_border-width.scss +25 -0
  48. data/_sass/uswds/lib/addons/_buttons.scss +64 -0
  49. data/_sass/uswds/lib/addons/_clearfix.scss +25 -0
  50. data/_sass/uswds/lib/addons/_ellipsis.scss +30 -0
  51. data/_sass/uswds/lib/addons/_font-stacks.scss +31 -0
  52. data/_sass/uswds/lib/addons/_hide-text.scss +27 -0
  53. data/_sass/uswds/lib/addons/_margin.scss +26 -0
  54. data/_sass/uswds/lib/addons/_padding.scss +26 -0
  55. data/_sass/uswds/lib/addons/_position.scss +48 -0
  56. data/_sass/uswds/lib/addons/_prefixer.scss +66 -0
  57. data/_sass/uswds/lib/addons/_retina-image.scss +25 -0
  58. data/_sass/uswds/lib/addons/_size.scss +51 -0
  59. data/_sass/uswds/lib/addons/_text-inputs.scss +113 -0
  60. data/_sass/uswds/lib/addons/_timing-functions.scss +34 -0
  61. data/_sass/uswds/lib/addons/_triangle.scss +63 -0
  62. data/_sass/uswds/lib/addons/_word-wrap.scss +29 -0
  63. data/_sass/uswds/lib/css3/_animation.scss +43 -0
  64. data/_sass/uswds/lib/css3/_appearance.scss +3 -0
  65. data/_sass/uswds/lib/css3/_backface-visibility.scss +3 -0
  66. data/_sass/uswds/lib/css3/_background-image.scss +42 -0
  67. data/_sass/uswds/lib/css3/_background.scss +55 -0
  68. data/_sass/uswds/lib/css3/_border-image.scss +59 -0
  69. data/_sass/uswds/lib/css3/_calc.scss +4 -0
  70. data/_sass/uswds/lib/css3/_columns.scss +47 -0
  71. data/_sass/uswds/lib/css3/_filter.scss +4 -0
  72. data/_sass/uswds/lib/css3/_flex-box.scss +287 -0
  73. data/_sass/uswds/lib/css3/_font-face.scss +24 -0
  74. data/_sass/uswds/lib/css3/_font-feature-settings.scss +4 -0
  75. data/_sass/uswds/lib/css3/_hidpi-media-query.scss +10 -0
  76. data/_sass/uswds/lib/css3/_hyphens.scss +4 -0
  77. data/_sass/uswds/lib/css3/_image-rendering.scss +14 -0
  78. data/_sass/uswds/lib/css3/_keyframes.scss +36 -0
  79. data/_sass/uswds/lib/css3/_linear-gradient.scss +38 -0
  80. data/_sass/uswds/lib/css3/_perspective.scss +8 -0
  81. data/_sass/uswds/lib/css3/_placeholder.scss +8 -0
  82. data/_sass/uswds/lib/css3/_radial-gradient.scss +39 -0
  83. data/_sass/uswds/lib/css3/_selection.scss +42 -0
  84. data/_sass/uswds/lib/css3/_text-decoration.scss +19 -0
  85. data/_sass/uswds/lib/css3/_transform.scss +15 -0
  86. data/_sass/uswds/lib/css3/_transition.scss +71 -0
  87. data/_sass/uswds/lib/css3/_user-select.scss +3 -0
  88. data/_sass/uswds/lib/functions/_assign-inputs.scss +11 -0
  89. data/_sass/uswds/lib/functions/_contains-falsy.scss +20 -0
  90. data/_sass/uswds/lib/functions/_contains.scss +26 -0
  91. data/_sass/uswds/lib/functions/_is-length.scss +11 -0
  92. data/_sass/uswds/lib/functions/_is-light.scss +21 -0
  93. data/_sass/uswds/lib/functions/_is-number.scss +11 -0
  94. data/_sass/uswds/lib/functions/_is-size.scss +13 -0
  95. data/_sass/uswds/lib/functions/_modular-scale.scss +69 -0
  96. data/_sass/uswds/lib/functions/_new-breakpoint.scss +49 -0
  97. data/_sass/uswds/lib/functions/_private.scss +114 -0
  98. data/_sass/uswds/lib/functions/_px-to-em.scss +13 -0
  99. data/_sass/uswds/lib/functions/_px-to-rem.scss +15 -0
  100. data/_sass/uswds/lib/functions/_shade.scss +24 -0
  101. data/_sass/uswds/lib/functions/_strip-units.scss +17 -0
  102. data/_sass/uswds/lib/functions/_tint.scss +24 -0
  103. data/_sass/uswds/lib/functions/_transition-property-name.scss +22 -0
  104. data/_sass/uswds/lib/functions/_unpack.scss +27 -0
  105. data/_sass/uswds/lib/grid/_box-sizing.scss +15 -0
  106. data/_sass/uswds/lib/grid/_direction-context.scss +33 -0
  107. data/_sass/uswds/lib/grid/_display-context.scss +28 -0
  108. data/_sass/uswds/lib/grid/_fill-parent.scss +22 -0
  109. data/_sass/uswds/lib/grid/_media.scss +92 -0
  110. data/_sass/uswds/lib/grid/_omega.scss +87 -0
  111. data/_sass/uswds/lib/grid/_outer-container.scss +34 -0
  112. data/_sass/uswds/lib/grid/_pad.scss +25 -0
  113. data/_sass/uswds/lib/grid/_private.scss +35 -0
  114. data/_sass/uswds/lib/grid/_row.scss +52 -0
  115. data/_sass/uswds/lib/grid/_shift.scss +50 -0
  116. data/_sass/uswds/lib/grid/_span-columns.scss +94 -0
  117. data/_sass/uswds/lib/grid/_to-deprecate.scss +97 -0
  118. data/_sass/uswds/lib/grid/_visual-grid.scss +42 -0
  119. data/_sass/uswds/lib/helpers/_convert-units.scss +21 -0
  120. data/_sass/uswds/lib/helpers/_directional-values.scss +96 -0
  121. data/_sass/uswds/lib/helpers/_font-source-declaration.scss +43 -0
  122. data/_sass/uswds/lib/helpers/_gradient-positions-parser.scss +13 -0
  123. data/_sass/uswds/lib/helpers/_linear-angle-parser.scss +25 -0
  124. data/_sass/uswds/lib/helpers/_linear-gradient-parser.scss +41 -0
  125. data/_sass/uswds/lib/helpers/_linear-positions-parser.scss +61 -0
  126. data/_sass/uswds/lib/helpers/_linear-side-corner-parser.scss +31 -0
  127. data/_sass/uswds/lib/helpers/_radial-arg-parser.scss +69 -0
  128. data/_sass/uswds/lib/helpers/_radial-gradient-parser.scss +50 -0
  129. data/_sass/uswds/lib/helpers/_radial-positions-parser.scss +18 -0
  130. data/_sass/uswds/lib/helpers/_render-gradients.scss +26 -0
  131. data/_sass/uswds/lib/helpers/_shape-size-stripper.scss +10 -0
  132. data/_sass/uswds/lib/helpers/_str-to-num.scss +50 -0
  133. data/_sass/uswds/lib/mixins/_clearfix.scss +25 -0
  134. data/_sass/uswds/lib/settings/_asset-pipeline.scss +7 -0
  135. data/_sass/uswds/lib/settings/_disable-warnings.scss +13 -0
  136. data/_sass/uswds/lib/settings/_grid.scss +51 -0
  137. data/_sass/uswds/lib/settings/_prefixer.scss +9 -0
  138. data/_sass/uswds/lib/settings/_px-to-em.scss +1 -0
  139. data/_sass/uswds/lib/settings/_visual-grid.scss +27 -0
  140. data/_sass/uswds/uswds.scss +42 -0
  141. data/assets/uswds/fonts/merriweather-bold-webfont.eot +0 -0
  142. data/assets/uswds/fonts/merriweather-bold-webfont.ttf +0 -0
  143. data/assets/uswds/fonts/merriweather-bold-webfont.woff +0 -0
  144. data/assets/uswds/fonts/merriweather-bold-webfont.woff2 +0 -0
  145. data/assets/uswds/fonts/merriweather-italic-webfont.eot +0 -0
  146. data/assets/uswds/fonts/merriweather-italic-webfont.ttf +0 -0
  147. data/assets/uswds/fonts/merriweather-italic-webfont.woff +0 -0
  148. data/assets/uswds/fonts/merriweather-italic-webfont.woff2 +0 -0
  149. data/assets/uswds/fonts/merriweather-light-webfont.eot +0 -0
  150. data/assets/uswds/fonts/merriweather-light-webfont.ttf +0 -0
  151. data/assets/uswds/fonts/merriweather-light-webfont.woff +0 -0
  152. data/assets/uswds/fonts/merriweather-light-webfont.woff2 +0 -0
  153. data/assets/uswds/fonts/merriweather-regular-webfont.eot +0 -0
  154. data/assets/uswds/fonts/merriweather-regular-webfont.ttf +0 -0
  155. data/assets/uswds/fonts/merriweather-regular-webfont.woff +0 -0
  156. data/assets/uswds/fonts/merriweather-regular-webfont.woff2 +0 -0
  157. data/assets/uswds/fonts/sourcesanspro-bold-webfont.eot +0 -0
  158. data/assets/uswds/fonts/sourcesanspro-bold-webfont.ttf +0 -0
  159. data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff +0 -0
  160. data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff2 +0 -0
  161. data/assets/uswds/fonts/sourcesanspro-italic-webfont.eot +0 -0
  162. data/assets/uswds/fonts/sourcesanspro-italic-webfont.ttf +0 -0
  163. data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff +0 -0
  164. data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff2 +0 -0
  165. data/assets/uswds/fonts/sourcesanspro-light-webfont.eot +0 -0
  166. data/assets/uswds/fonts/sourcesanspro-light-webfont.ttf +0 -0
  167. data/assets/uswds/fonts/sourcesanspro-light-webfont.woff +0 -0
  168. data/assets/uswds/fonts/sourcesanspro-light-webfont.woff2 +0 -0
  169. data/assets/uswds/fonts/sourcesanspro-regular-webfont.eot +0 -0
  170. data/assets/uswds/fonts/sourcesanspro-regular-webfont.ttf +0 -0
  171. data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff +0 -0
  172. data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff2 +0 -0
  173. data/assets/uswds/img/alerts/error.png +0 -0
  174. data/assets/uswds/img/alerts/error.svg +17 -0
  175. data/assets/uswds/img/alerts/info.png +0 -0
  176. data/assets/uswds/img/alerts/info.svg +18 -0
  177. data/assets/uswds/img/alerts/success.png +0 -0
  178. data/assets/uswds/img/alerts/success.svg +12 -0
  179. data/assets/uswds/img/alerts/warning.png +0 -0
  180. data/assets/uswds/img/alerts/warning.svg +16 -0
  181. data/assets/uswds/img/angle-arrow-down-hover.png +0 -0
  182. data/assets/uswds/img/angle-arrow-down-hover.svg +1 -0
  183. data/assets/uswds/img/angle-arrow-down-primary-hover.png +0 -0
  184. data/assets/uswds/img/angle-arrow-down-primary-hover.svg +1 -0
  185. data/assets/uswds/img/angle-arrow-down-primary.png +0 -0
  186. data/assets/uswds/img/angle-arrow-down-primary.svg +1 -0
  187. data/assets/uswds/img/angle-arrow-down.png +0 -0
  188. data/assets/uswds/img/angle-arrow-down.svg +1 -0
  189. data/assets/uswds/img/angle-arrow-up-primary-hover.png +0 -0
  190. data/assets/uswds/img/angle-arrow-up-primary-hover.svg +1 -0
  191. data/assets/uswds/img/angle-arrow-up-primary.png +0 -0
  192. data/assets/uswds/img/angle-arrow-up-primary.svg +1 -0
  193. data/assets/uswds/img/arrow-both.png +0 -0
  194. data/assets/uswds/img/arrow-both.svg +1 -0
  195. data/assets/uswds/img/arrow-down.png +0 -0
  196. data/assets/uswds/img/arrow-down.svg +1 -0
  197. data/assets/uswds/img/arrow-right.png +0 -0
  198. data/assets/uswds/img/arrow-right.svg +1 -0
  199. data/assets/uswds/img/circle-124.png +0 -0
  200. data/assets/uswds/img/close-primary.png +0 -0
  201. data/assets/uswds/img/close-primary.svg +16 -0
  202. data/assets/uswds/img/close.png +0 -0
  203. data/assets/uswds/img/close.svg +12 -0
  204. data/assets/uswds/img/correct8.png +0 -0
  205. data/assets/uswds/img/correct8.svg +1 -0
  206. data/assets/uswds/img/correct9.png +0 -0
  207. data/assets/uswds/img/correct9.svg +1 -0
  208. data/assets/uswds/img/external-link-alt-hover.png +0 -0
  209. data/assets/uswds/img/external-link-alt-hover.svg +1 -0
  210. data/assets/uswds/img/external-link-alt.png +0 -0
  211. data/assets/uswds/img/external-link-alt.svg +1 -0
  212. data/assets/uswds/img/external-link-hover.png +0 -0
  213. data/assets/uswds/img/external-link-hover.svg +1 -0
  214. data/assets/uswds/img/external-link.png +0 -0
  215. data/assets/uswds/img/external-link.svg +1 -0
  216. data/assets/uswds/img/favicons/favicon-114.png +0 -0
  217. data/assets/uswds/img/favicons/favicon-144.png +0 -0
  218. data/assets/uswds/img/favicons/favicon-16.png +0 -0
  219. data/assets/uswds/img/favicons/favicon-192.png +0 -0
  220. data/assets/uswds/img/favicons/favicon-40.png +0 -0
  221. data/assets/uswds/img/favicons/favicon-57.png +0 -0
  222. data/assets/uswds/img/favicons/favicon-72.png +0 -0
  223. data/assets/uswds/img/favicons/favicon.ico +0 -0
  224. data/assets/uswds/img/favicons/favicon.png +0 -0
  225. data/assets/uswds/img/hero.png +0 -0
  226. data/assets/uswds/img/icon-dot-gov.svg +1 -0
  227. data/assets/uswds/img/icon-https.svg +1 -0
  228. data/assets/uswds/img/logo-img.png +0 -0
  229. data/assets/uswds/img/minus-alt.png +0 -0
  230. data/assets/uswds/img/minus-alt.svg +1 -0
  231. data/assets/uswds/img/minus.png +0 -0
  232. data/assets/uswds/img/minus.svg +1 -0
  233. data/assets/uswds/img/plus-alt.png +0 -0
  234. data/assets/uswds/img/plus-alt.svg +1 -0
  235. data/assets/uswds/img/plus.png +0 -0
  236. data/assets/uswds/img/plus.svg +1 -0
  237. data/assets/uswds/img/search-alt.png +0 -0
  238. data/assets/uswds/img/search-alt.svg +1 -0
  239. data/assets/uswds/img/search-primary.png +0 -0
  240. data/assets/uswds/img/search-primary.svg +12 -0
  241. data/assets/uswds/img/search.png +0 -0
  242. data/assets/uswds/img/search.svg +1 -0
  243. data/assets/uswds/img/social-icons/png/facebook25.png +0 -0
  244. data/assets/uswds/img/social-icons/png/rss25.png +0 -0
  245. data/assets/uswds/img/social-icons/png/twitter16.png +0 -0
  246. data/assets/uswds/img/social-icons/png/youtube15.png +0 -0
  247. data/assets/uswds/img/social-icons/svg/facebook25.svg +1 -0
  248. data/assets/uswds/img/social-icons/svg/rss25.svg +1 -0
  249. data/assets/uswds/img/social-icons/svg/twitter16.svg +1 -0
  250. data/assets/uswds/img/social-icons/svg/youtube15.svg +1 -0
  251. data/assets/uswds/img/us_flag_small.png +0 -0
  252. data/assets/uswds/js/uswds.js +1930 -0
  253. data/assets/uswds/js/uswds.min.js +2 -0
  254. data/assets/uswds/js/uswds.min.js.map +1 -0
  255. metadata +340 -0
@@ -0,0 +1,26 @@
1
+ $aspect-height: 9;
2
+ $aspect-width: 16;
3
+
4
+ @mixin embed-container ($height, $width) {
5
+ padding-bottom: percentage($height/$width);
6
+ }
7
+
8
+ .usa-embed-container {
9
+ iframe,
10
+ object,
11
+ embed {
12
+ position: absolute;
13
+ top: 0;
14
+ left: 0;
15
+ width: 100%;
16
+ height: 100%;
17
+ }
18
+ }
19
+
20
+ .usa-embed-container {
21
+ @include embed-container($aspect-height, $aspect-width);
22
+ position: relative;
23
+ height: 0;
24
+ overflow: hidden;
25
+ max-width: 100%;
26
+ }
@@ -0,0 +1,13 @@
1
+ img {
2
+ max-width: 100%;
3
+ }
4
+
5
+ // TODO: Add documentation instructions for using this class on image links
6
+ @mixin media-link {
7
+ display: inline-block;
8
+ line-height: 0;
9
+ }
10
+
11
+ .media_link {
12
+ @include media-link();
13
+ }
@@ -0,0 +1,368 @@
1
+ // scss-lint:disable QualifyingElement, PropertyCount
2
+
3
+ $input-line-height: 1.3;
4
+ $input-border-width: 0.1rem; // Using rem instead of px so function uses same units
5
+ $input-padding-vertical: 1rem;
6
+
7
+ // input heights will vary by browser and type
8
+ // if height not explicitly set
9
+ $input-height-exact: (
10
+ ($base-font-size * $input-line-height) +
11
+ ($input-padding-vertical * 2) +
12
+ ($input-border-width * 2)
13
+ );
14
+
15
+ // truncated to 1 decimal place
16
+ // (i.e., 1.21rem -> 1.2rem)
17
+ $input-height: floor($input-height-exact * 10) / 10;
18
+
19
+ // Block form elements
20
+ /* stylelint-disable selector-no-qualifying-type */
21
+ input,
22
+ textarea,
23
+ select {
24
+ appearance: none;
25
+ border: $input-border-width solid $color-gray;
26
+ border-radius: 0;
27
+ box-sizing: border-box;
28
+ color: $color-base; // standardize on firefox
29
+ display: block;
30
+ font-size: $base-font-size;
31
+ height: $input-height;
32
+ line-height: $input-line-height;
33
+ margin: 0.2em 0;
34
+ max-width: $input-max-width;
35
+ padding: $input-padding-vertical 0.7em;
36
+ width: 100%;
37
+
38
+ &.usa-input-success {
39
+ border: 3px solid $color-green-light;
40
+ }
41
+ }
42
+ /* stylelint-enable */
43
+
44
+ .usa-input-error {
45
+ border-left: 4px solid $color-secondary-dark;
46
+ margin-top: 3rem;
47
+ padding-bottom: 0.8rem;
48
+ padding-left: 1.5rem;
49
+ padding-top: 0.8rem;
50
+ position: relative;
51
+ right: 1.9rem;
52
+
53
+ input,
54
+ textarea,
55
+ select {
56
+ border: 3px solid $color-secondary-dark;
57
+ width: calc(100% + 1.9rem); // 1.5rem left padding + 4px border from input error spacing
58
+ }
59
+
60
+ label {
61
+ margin-top: 0;
62
+ }
63
+
64
+ .usa-input-inline {
65
+ border: $input-border-width solid $color-gray;
66
+ width: inherit;
67
+ }
68
+
69
+ .usa-input-inline-error {
70
+ border: 3px solid $color-secondary-dark;
71
+ }
72
+ }
73
+
74
+ .usa-input-error-label {
75
+ display: block;
76
+ font-size: $base-font-size;
77
+ font-weight: $font-bold;
78
+ }
79
+
80
+ .usa-input-error-message {
81
+ color: $color-secondary-dark;
82
+ display: block;
83
+ font-size: $base-font-size;
84
+ font-weight: $font-bold;
85
+ padding-bottom: 3px;
86
+ padding-top: 3px;
87
+ }
88
+
89
+ // Deprecated: Some screen readers can't read CSS content.
90
+ // Will be removed in 2.0.
91
+ .usa-input-required:after {
92
+ color: $color-secondary-darkest;
93
+ content: ' (*required)';
94
+ }
95
+
96
+ // Deprecated: Some screen readers can't read CSS content.
97
+ // Will be removed in 2.0.
98
+ .usa-input-optional:after {
99
+ color: $color-gray-medium;
100
+ content: ' (optional)';
101
+ }
102
+
103
+ .usa-input-label-helper {
104
+ color: $color-gray-medium;
105
+ }
106
+
107
+ .usa-input-label-required {
108
+ color: $color-secondary-darkest;
109
+ }
110
+
111
+ label {
112
+ display: block;
113
+ margin-top: 3rem;
114
+ max-width: $input-max-width;
115
+ }
116
+
117
+ textarea {
118
+ height: 16rem;
119
+ }
120
+
121
+ select {
122
+ appearance: none;
123
+ background-color: $color-white;
124
+ background-image: url('#{$image-path}/arrow-both.png');
125
+ // Ensure browsers that don't support SVG in background-image (IE 11 and below) fall back to PNG.
126
+ // See https://www.broken-links.com/2010/06/14/using-svg-in-backgrounds-with-png-fallback/
127
+ background-image: none, url('#{$image-path}/arrow-both.svg'), url('#{$image-path}/arrow-both.png');
128
+ background-position: right 1.3rem center;
129
+ background-repeat: no-repeat;
130
+ background-size: 1rem;
131
+ padding-right: 3rem;
132
+
133
+ &::-ms-expand {
134
+ display: none;
135
+ }
136
+
137
+ // Show default webkit style on select element when autofilled to show icon
138
+ &:-webkit-autofill {
139
+ appearance: menulist;
140
+ }
141
+
142
+ // Remove dotted outline from select element on focus in Firefox
143
+ &:-moz-focusring {
144
+ color: transparent;
145
+ text-shadow: 0 0 0 $color-black;
146
+ }
147
+ }
148
+
149
+ option:first-child {
150
+ font-weight: $font-bold;
151
+ }
152
+
153
+ legend {
154
+ font-size: $h2-font-size;
155
+ font-weight: $font-bold;
156
+ }
157
+
158
+ .usa-fieldset-inputs {
159
+ label {
160
+ margin-top: 0;
161
+ }
162
+ }
163
+
164
+ // Hint text
165
+
166
+ .usa-form-hint {
167
+ color: $color-gray-medium;
168
+ font-family: $font-sans;
169
+ margin-bottom: 0;
170
+ }
171
+
172
+ // Custom checkboxes
173
+
174
+ [type=checkbox],
175
+ [type=radio] {
176
+ // The actual input element is only visible to screen readers, because
177
+ // all visual styling is done via the label.
178
+ @include sr-only();
179
+
180
+ .lt-ie9 & {
181
+ border: 0;
182
+ float: left;
183
+ margin: 0.4em 0.4em 0 0;
184
+ position: static;
185
+ width: auto;
186
+ }
187
+ }
188
+
189
+ [type=checkbox] + label,
190
+ [type=radio] + label {
191
+ cursor: pointer;
192
+ font-weight: 400;
193
+ margin-bottom: 0.65em;
194
+ }
195
+
196
+ [type=checkbox] + label::before,
197
+ [type=radio] + label::before {
198
+ background: $color-white;
199
+ border-radius: $checkbox-border-radius;
200
+ box-shadow: 0 0 0 1px $color-gray-medium;
201
+ content: '\a0';
202
+ display: inline-block;
203
+ height: $spacing-medium;
204
+ line-height: $spacing-medium;
205
+ margin-right: 0.6em;
206
+ text-indent: 0.15em;
207
+ vertical-align: middle\0; // Target IE 11 and below to vertically center inputs
208
+ width: $spacing-medium;
209
+ }
210
+
211
+ [type=radio] + label::before {
212
+ border-radius: 100%;
213
+ box-shadow: 0 0 0 2px $color-white, 0 0 0 3px $color-gray-medium;
214
+ height: 1.4rem; // Size overrides to account for shape + checked styling
215
+ line-height: 1.4rem;
216
+ margin-right: 0.75em;
217
+ width: 1.4rem;
218
+ }
219
+
220
+ [type=checkbox]:checked + label::before,
221
+ [type=radio]:checked + label::before {
222
+ background-color: $color-primary;
223
+ box-shadow: 0 0 0 1px $color-primary;
224
+ }
225
+
226
+ [type=radio]:checked + label::before {
227
+ box-shadow: 0 0 0 2px $color-white, 0 0 0 4px $color-primary;
228
+ }
229
+
230
+ [type=checkbox]:checked + label::before,
231
+ [type=checkbox]:checked:disabled + label::before {
232
+ background-image: url('#{$image-path}/correct8.png');
233
+ background-image: url('#{$image-path}/correct8.svg');
234
+ background-position: 50%;
235
+ background-repeat: no-repeat;
236
+ }
237
+
238
+ [type=radio]:focus + label::before {
239
+ outline: $focus-outline;
240
+ outline-offset: $focus-spacing * 2; // Double the offset to account for circular shape
241
+ }
242
+
243
+ [type=checkbox]:disabled + label {
244
+ color: $color-gray-lighter;
245
+ }
246
+
247
+ [type=checkbox]:focus + label::before {
248
+ outline: $focus-outline;
249
+ outline-offset: $focus-spacing;
250
+ }
251
+
252
+ [type=checkbox]:disabled + label::before,
253
+ [type=radio]:disabled + label::before {
254
+ background: $color-gray-lightest;
255
+ box-shadow: 0 0 0 1px $color-gray-light;
256
+ cursor: not-allowed;
257
+ }
258
+
259
+ // Range inputs
260
+
261
+ [type=range] {
262
+ appearance: none;
263
+ border: none;
264
+ padding-left: 0;
265
+ width: 100%;
266
+ }
267
+
268
+ [type=range]::-webkit-slider-runnable-track {
269
+ background: $color-gray-light;
270
+ border: 1px solid $color-gray-medium;
271
+ cursor: pointer;
272
+ height: 1.2rem;
273
+ width: 100%;
274
+ }
275
+
276
+ [type=range]::-moz-range-track {
277
+ background: $color-primary;
278
+ border: 1px solid $color-gray-medium;
279
+ cursor: pointer;
280
+ height: 1.2rem;
281
+ width: 100%;
282
+ }
283
+
284
+ [type=range]::-ms-track {
285
+ background: transparent;
286
+ color: transparent;
287
+ cursor: pointer;
288
+ height: 1.2rem;
289
+ width: 100%;
290
+ }
291
+
292
+ [type=range]::-webkit-slider-thumb {
293
+ -webkit-appearance: none;
294
+ border: 1px solid $color-gray-medium;
295
+ height: 2.2rem;
296
+ border-radius: 1.5rem;
297
+ background: $color-gray-lightest;
298
+ cursor: pointer;
299
+ margin-top: -.65rem;
300
+ width: 2.2rem;
301
+ }
302
+
303
+ [type=range]::-moz-range-thumb {
304
+ background: $color-gray-lightest;
305
+ border: 1px solid $color-gray-medium;
306
+ border-radius: 1.5rem;
307
+ cursor: pointer;
308
+ height: 2.2rem;
309
+ width: 2.2rem;
310
+ }
311
+
312
+ [type=range]::-ms-thumb {
313
+ background: $color-gray-lightest;
314
+ border: 1px solid $color-gray-medium;
315
+ border-radius: 1.5rem;
316
+ cursor: pointer;
317
+ height: 2.2rem;
318
+ width: 2.2rem;
319
+ }
320
+
321
+ [type=range]::-ms-fill-lower {
322
+ background: $color-gray-light;
323
+ border: 1px solid $color-gray-medium;
324
+ border-radius: 2rem;
325
+ }
326
+
327
+ [type=range]::-ms-fill-upper {
328
+ background: $color-gray-light;
329
+ border: 1px solid $color-gray-medium;
330
+ border-radius: 2rem;
331
+ }
332
+
333
+ // File input type
334
+ [type='file'] {
335
+ border: none;
336
+ padding-left: 0;
337
+ }
338
+
339
+ // Memorable dates
340
+
341
+ .usa-date-of-birth {
342
+ label {
343
+ margin-top: 0;
344
+ }
345
+
346
+ [type=number]::-webkit-inner-spin-button,
347
+ [type=number]::-webkit-outer-spin-button {
348
+ appearance: none;
349
+ margin: 0;
350
+ }
351
+
352
+ [type=number] {
353
+ -moz-appearance: textfield;
354
+ }
355
+ }
356
+
357
+ .usa-form-group-day,
358
+ .usa-form-group-month,
359
+ .usa-form-group-year {
360
+ clear: none;
361
+ float: left;
362
+ margin-right: 1.5rem;
363
+ width: 5rem;
364
+ }
365
+
366
+ .usa-form-group-year {
367
+ width: 7rem;
368
+ }
@@ -0,0 +1,20 @@
1
+ .usa-label {
2
+ background-color: $color-gray;
3
+ border-radius: $label-border-radius;
4
+ color: $color-white;
5
+ font-size: $h5-font-size;
6
+ margin-right: 0.5rem;
7
+ padding: 0.1rem 0.7rem;
8
+ text-transform: uppercase;
9
+
10
+ &:only-of-type {
11
+ margin-right: 0;
12
+ }
13
+ }
14
+
15
+ .usa-label-big {
16
+ @extend .usa-label;
17
+ font-size: $base-font-size;
18
+ padding-left: 0.9rem;
19
+ padding-right: 0.9rem;
20
+ }
@@ -0,0 +1,32 @@
1
+ ul,
2
+ ol {
3
+ @include margin(1em null);
4
+ padding-left: 1.94em; // Approximately 15px left padding at default font size
5
+ }
6
+
7
+ li {
8
+ line-height: $base-line-height;
9
+ margin-bottom: 0.5em;
10
+
11
+ &:last-child {
12
+ margin-bottom: 0;
13
+ }
14
+ }
15
+
16
+ h1,
17
+ h2,
18
+ h3,
19
+ h4,
20
+ h5,
21
+ h6,
22
+ p {
23
+ + ul,
24
+ + ol {
25
+ margin-top: 0;
26
+ }
27
+ }
28
+
29
+ // Unstyled lists
30
+ .usa-unstyled-list {
31
+ @include unstyled-list;
32
+ }