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,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5f60a00e58ad369d1ce49dec3b110155447ffac5560974bade6d1033981780d6
4
+ data.tar.gz: 3ad623ffdf96b1ee9ec8e87d62446b9c0cd8f82b471d99f7cdabceffcf7135be
5
+ SHA512:
6
+ metadata.gz: 4c1900afef5e5512116d5815e7e994bf6c3009aa3c5c64850733c61f87d0951bd85def7fb49b468b259c4281478277b2799fbb25f1c814ffc0709bfd9261164f
7
+ data.tar.gz: 2e9d429499030d84dfd0146d950bd4f0a79b768e09f6bb67b2d0668367b5aa934c504adef2d50d9ede6741ac36c8971b1ac82e7e735094dbb104fec9f3e636d2
@@ -0,0 +1,21 @@
1
+ # License
2
+
3
+ As a work of the [United States government](https://www.usa.gov/), this project is in the public domain within the United States of America.
4
+
5
+ Additionally, we waive copyright and related rights in the work worldwide through the CC0 1.0 Universal public domain dedication.
6
+
7
+ ## CC0 1.0 Universal Summary
8
+
9
+ This is a human-readable summary of the [Legal Code (read the full text)](https://creativecommons.org/publicdomain/zero/1.0/legalcode).
10
+
11
+ ### No Copyright
12
+
13
+ The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law.
14
+
15
+ You can copy, modify, distribute, and perform the work, even for commercial purposes, all without asking permission.
16
+
17
+ ### Other Information
18
+
19
+ In no way are the patent or trademark rights of any person affected by CC0, nor are the rights that other persons may have in the work or in how the work is used, such as publicity or privacy rights.
20
+
21
+ Unless expressly stated otherwise, the person who associated a work with this deed makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law. When using or citing the work, you should not imply endorsement by the author or the affirmer.
@@ -0,0 +1,124 @@
1
+ [![CircleCI](https://circleci.com/gh/adborden/jekyll-theme-uswds.svg?style=svg)](https://circleci.com/gh/adborden/jekyll-theme-uswds)
2
+
3
+ # jekyll-theme-uswds
4
+
5
+ A [Jekyll](https://jekyllrb.com/) theme that provides the [U.S. Web Design
6
+ System](https://designsystem.digital.gov/) SASS and asset files. This theme
7
+ makes it easy for web developers to focus on making customizations on top of the
8
+ Web Design System for your site. Similar to how the Web Design System is not
9
+ a "theme" but a toolkit for building websites, this project is less of a theme
10
+ and more of a foundation for building Jekyll websites based on the Web Design
11
+ System.
12
+
13
+
14
+ You will not find comprehensive templates implementing [USWDS
15
+ components](https://designsystem.digital.gov/components/), but any examples
16
+ could be copy/pasted and used. If you're looking for a theme that includes the
17
+ USWDS component library as templates, take a look at
18
+ [uswds-jekyll](https://github.com/18F/uswds-jekyll).
19
+
20
+
21
+ ## Installation
22
+
23
+ Add this line to your Jekyll site's `Gemfile`:
24
+
25
+ ```ruby
26
+ gem "jekyll-theme-uswds"
27
+ ```
28
+
29
+ And add this line to your Jekyll site's `_config.yml`:
30
+
31
+ ```yaml
32
+ theme: jekyll-theme-uswds
33
+ ```
34
+
35
+ And then execute:
36
+
37
+ $ bundle
38
+
39
+ Or install it yourself as:
40
+
41
+ $ gem install jekyll-theme-uswds
42
+
43
+ ## Usage
44
+
45
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
46
+
47
+ ## Development
48
+
49
+ To set up your environment to develop this theme, run `npm install`.
50
+
51
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `npm
52
+ start` and open your browser at `http://localhost:4000`. This starts a Jekyll
53
+ server using your theme. Add pages, documents, data, etc. like normal to test
54
+ your theme's contents. As you make modifications to your theme and to your
55
+ content, your site will regenerate and you should see the changes in the browser
56
+ after a refresh, just like normal.
57
+
58
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass`
59
+ and `assets` tracked with Git will be bundled. To add a custom directory to
60
+ your theme-gem, please edit the regexp in `jekyll-theme-uswds.gemspec`
61
+ accordingly.
62
+
63
+
64
+ ### Bumping USWDS
65
+
66
+ Update the `uswds` version in `package.json`.
67
+
68
+ Pull the latest assets into the theme.
69
+
70
+ $ npm install
71
+ $ npm run clean
72
+ $ npm run uswds
73
+
74
+ Build the gem.
75
+
76
+ $ npm run gem:build
77
+
78
+ If you like, inspect the gem in `pkg/`.
79
+
80
+ Publish the gem to rubygems.org.
81
+
82
+ $ npm run gem:release
83
+
84
+
85
+ ### Build commands
86
+
87
+
88
+ ### `npm run uswds`
89
+
90
+ This copies the latest assets from the USWDS npm package.
91
+
92
+
93
+ ### `npm run gem:build`
94
+
95
+ Builds the theme into a gem for publishing on rubygems.org
96
+
97
+
98
+ ### `npm run gem:install`
99
+
100
+ Builds and installs the gem.
101
+
102
+
103
+ ### `npm run gem:release`
104
+
105
+ Publishes the gem on rubygems.org.
106
+
107
+
108
+ ### `npm run clean`
109
+
110
+ Removes the generated build files.
111
+
112
+
113
+ ## Contributing
114
+
115
+ See [CONTRIBUTING](CONTRIBUTING.md) for additional information.
116
+
117
+
118
+ ## Public domain
119
+
120
+ This project is in the worldwide [public domain](LICENSE.md). As stated in [CONTRIBUTING](CONTRIBUTING.md):
121
+
122
+ > This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the [CC0 1.0 Universal public domain dedication](https://creativecommons.org/publicdomain/zero/1.0/).
123
+ >
124
+ > All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.
@@ -0,0 +1 @@
1
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1 @@
1
+ @import 'uswds';
@@ -0,0 +1,150 @@
1
+ // Variables
2
+
3
+ $accordion-border: 3px solid $color-gray-lightest;
4
+
5
+ // Accordion Styles
6
+
7
+ $icon-size: $spacing-md-small;
8
+ $h-padding: $spacing-medium;
9
+ $v-padding: $spacing-md-small;
10
+
11
+ @mixin accordion-list-styles {
12
+ @include unstyled-list;
13
+ color: $color-base;
14
+ margin: 0;
15
+ padding: 0;
16
+ width: 100%;
17
+ }
18
+
19
+ @mixin accordion-list-item-styles {
20
+ background-color: $color-gray-lightest;
21
+ font-family: $font-sans;
22
+ list-style: none;
23
+ margin-bottom: $spacing-x-small;
24
+ width: 100%;
25
+ }
26
+
27
+ // scss-lint:disable PropertyCount
28
+ @mixin accordion-button-styles {
29
+ @include button-unstyled;
30
+ background-color: $color-gray-lightest;
31
+ background-image: url('#{$image-path}/minus.png');
32
+ background-image: url('#{$image-path}/minus.svg');
33
+ background-position: right $h-padding center;
34
+ background-repeat: no-repeat;
35
+ background-size: $icon-size;
36
+ color: $color-base;
37
+ cursor: pointer;
38
+ display: inline-block;
39
+ font-family: $font-sans;
40
+ font-weight: $font-bold;
41
+ margin: 0;
42
+ padding: $v-padding ($h-padding * 2 + $icon-size) $v-padding $h-padding;
43
+ width: 100%;
44
+
45
+ &:hover {
46
+ background-color: $color-gray-lighter;
47
+ color: $color-base;
48
+ }
49
+
50
+ h1,
51
+ h2,
52
+ h3,
53
+ h4,
54
+ h5,
55
+ h6 {
56
+ margin: 0;
57
+ }
58
+ }
59
+ // scss-lint:enable PropertyCount
60
+
61
+ @mixin accordion-button-unopened-styles {
62
+ background-image: url('#{$image-path}/plus.png');
63
+ background-image: url('#{$image-path}/plus.svg');
64
+ background-repeat: no-repeat;
65
+ background-size: $icon-size;
66
+ }
67
+
68
+ @mixin accordion-nested-list {
69
+ > ul li ul {
70
+ list-style: disc;
71
+ > li > ul {
72
+ list-style: circle;
73
+ > li > ul {
74
+ list-style: square;
75
+ }
76
+ }
77
+ }
78
+ }
79
+
80
+ .usa-accordion,
81
+ .usa-accordion-bordered {
82
+ @include accordion-list-styles;
83
+ @include accordion-nested-list;
84
+
85
+ + .usa-accordion,
86
+ + .usa-accordion-bordered {
87
+ margin-top: $spacing-small;
88
+ }
89
+
90
+ // TODO deprecated ruleset based on old accordion.
91
+ > ul {
92
+ @include accordion-list-styles;
93
+
94
+ // TODO deprecated ruleset based on old accordion.
95
+ > li {
96
+ @include accordion-list-item-styles;
97
+ }
98
+
99
+ // TODO deprecated ruleset based on old accordion.
100
+ button {
101
+ @include accordion-button-styles;
102
+ }
103
+
104
+ // TODO deprecated ruleset based on old accordion.
105
+ [aria-expanded=false] {
106
+ @include accordion-button-unopened-styles;
107
+ }
108
+ }
109
+
110
+ > li {
111
+ @include accordion-list-item-styles;
112
+ }
113
+
114
+ }
115
+
116
+ .usa-accordion-bordered {
117
+ .usa-accordion-content {
118
+ border-bottom: $accordion-border;
119
+ border-left: $accordion-border;
120
+ border-right: $accordion-border;
121
+ }
122
+ }
123
+
124
+ .usa-accordion-content {
125
+ background-color: $color-white;
126
+ overflow: auto;
127
+ padding: $spacing-md-small $spacing-medium;
128
+
129
+ > *:first-child {
130
+ margin-top: 0;
131
+ }
132
+
133
+ > *:last-child {
134
+ margin-bottom: 0;
135
+ }
136
+
137
+ &:not([aria-hidden]) {
138
+ @include sr-only();
139
+ }
140
+
141
+ @include accessibly-hidden();
142
+ }
143
+
144
+ .usa-accordion-button {
145
+ @include accordion-button-styles;
146
+ }
147
+
148
+ .usa-accordion-button[aria-expanded=false] {
149
+ @include accordion-button-unopened-styles;
150
+ }
@@ -0,0 +1,128 @@
1
+ // Alert variables ---------- //
2
+ $usa-custom-alerts: () !default;
3
+ $usa-custom-alerts-bar: () !default;
4
+
5
+ $usa-alerts: (
6
+ success: $color-green-lightest,
7
+ warning: $color-gold-lightest,
8
+ error: $color-secondary-lightest,
9
+ info: $color-primary-alt-lightest
10
+ );
11
+
12
+ $usa-alerts-bar: (
13
+ success: $color-green,
14
+ warning: $color-gold,
15
+ error: $color-secondary,
16
+ info: $color-primary-alt
17
+ );
18
+
19
+ $alerts: map-merge($usa-alerts, $usa-custom-alerts);
20
+ $alerts-bar: map-merge($usa-alerts-bar, $usa-custom-alerts-bar);
21
+
22
+ $h-padding: $spacing-medium;
23
+ $bar-size: $spacing-small;
24
+ $left-padding: $h-padding + $bar-size;
25
+ $icon-size: 3rem;
26
+
27
+ .usa-alert {
28
+ background-color: $color-gray-lightest;
29
+ background-position: $h-padding $h-padding;
30
+ background-repeat: no-repeat;
31
+ background-size: 5.2rem; // TODO abrituary number based on svg size maybe?
32
+ padding-bottom: $h-padding * 0.7;
33
+ padding-left: $left-padding;
34
+ padding-right: $h-padding;
35
+ padding-top: $h-padding;
36
+ position: relative;
37
+
38
+ &::before {
39
+ background-color: darken($color-gray-lightest, 40%);
40
+ content: '';
41
+ height: 100%;
42
+ left: 0;
43
+ position: absolute;
44
+ top: 0;
45
+ width: $bar-size;
46
+ }
47
+
48
+ a {
49
+ color: $color-primary-darker;
50
+
51
+ &:focus,
52
+ &:hover {
53
+ color: $color-primary-darkest;
54
+ }
55
+ }
56
+
57
+ ul {
58
+ margin-bottom: 0;
59
+ margin-top: $spacing-small;
60
+ padding-left: $spacing-small;
61
+ }
62
+ }
63
+
64
+ .usa-alert-slim {
65
+ background-position: $h-padding $spacing-small;
66
+ padding-bottom: $spacing-small;
67
+ padding-top: $spacing-small;
68
+
69
+ .usa-alert-text:only-child {
70
+ margin-bottom: $spacing-x-small;
71
+ padding-top: $spacing-x-small;
72
+ }
73
+ }
74
+
75
+ .usa-alert-icon {
76
+ display: table-cell;
77
+ padding-right: $spacing-small;
78
+ }
79
+
80
+ .usa-alert-body {
81
+ display: table-cell;
82
+ vertical-align: top;
83
+ }
84
+
85
+ .usa-alert-heading {
86
+ margin-top: 0;
87
+ margin-bottom: 0;
88
+ }
89
+
90
+ .usa-alert-text {
91
+ font-family: $font-sans;
92
+ margin-bottom: 0;
93
+ margin-top: 0;
94
+ }
95
+
96
+ .usa-alert-text:only-child {
97
+ margin-bottom: $spacing-small;
98
+ padding-top: $spacing-x-small;
99
+ }
100
+
101
+ @each $name, $bgcolor in $alerts {
102
+ .usa-alert-#{$name} {
103
+ background-color: $bgcolor;
104
+ background-image: url('#{$image-path}/alerts/#{$name}.png');
105
+ background-image: url('#{$image-path}/alerts/#{$name}.svg');
106
+
107
+ &::before {
108
+ background-color: map-get($alerts-bar, $name);
109
+ }
110
+
111
+ .usa-alert-body {
112
+ padding-left: $icon-size + $h-padding;
113
+ }
114
+ }
115
+ }
116
+
117
+ .usa-alert-no_icon {
118
+ background-image: none;
119
+ }
120
+
121
+ .usa-alert-paragraph {
122
+ width: $text-max-width;
123
+ }
124
+
125
+ // Deprecated
126
+ .usa-alert {
127
+ margin-top: 1.5em; // TODO deprecate
128
+ }