us_web_design_standards 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. checksums.yaml +7 -0
  2. data/CONTRIBUTING.md +19 -0
  3. data/LICENSE.md +31 -0
  4. data/README.md +60 -0
  5. data/assets/_scss/components/_accordions.scss +95 -0
  6. data/assets/_scss/components/_alerts.scss +78 -0
  7. data/assets/_scss/components/_disclaimer.scss +25 -0
  8. data/assets/_scss/components/_footer.scss +292 -0
  9. data/assets/_scss/components/_forms.scss +179 -0
  10. data/assets/_scss/components/_search.scss +101 -0
  11. data/assets/_scss/components/_sidenav.scss +78 -0
  12. data/assets/_scss/components/_skipnav.scss +24 -0
  13. data/assets/_scss/core/_base.scss +24 -0
  14. data/assets/_scss/core/_defaults.scss +92 -0
  15. data/assets/_scss/core/_grid-settings.scss +10 -0
  16. data/assets/_scss/core/_grid.scss +116 -0
  17. data/assets/_scss/core/_utilities.scss +105 -0
  18. data/assets/_scss/core/_variables.scss +88 -0
  19. data/assets/_scss/elements/_buttons.scss +187 -0
  20. data/assets/_scss/elements/_figure.scss +9 -0
  21. data/assets/_scss/elements/_inputs.scss +328 -0
  22. data/assets/_scss/elements/_labels.scss +39 -0
  23. data/assets/_scss/elements/_list.scss +82 -0
  24. data/assets/_scss/elements/_table.scss +39 -0
  25. data/assets/_scss/elements/_typography.scss +220 -0
  26. data/assets/_scss/lib/_normalize.scss +427 -0
  27. data/assets/_scss/lib/bourbon/_bourbon-deprecated-upcoming.scss +411 -0
  28. data/assets/_scss/lib/bourbon/_bourbon.scss +87 -0
  29. data/assets/_scss/lib/bourbon/addons/_border-color.scss +26 -0
  30. data/assets/_scss/lib/bourbon/addons/_border-radius.scss +48 -0
  31. data/assets/_scss/lib/bourbon/addons/_border-style.scss +25 -0
  32. data/assets/_scss/lib/bourbon/addons/_border-width.scss +25 -0
  33. data/assets/_scss/lib/bourbon/addons/_buttons.scss +64 -0
  34. data/assets/_scss/lib/bourbon/addons/_clearfix.scss +25 -0
  35. data/assets/_scss/lib/bourbon/addons/_ellipsis.scss +30 -0
  36. data/assets/_scss/lib/bourbon/addons/_font-stacks.scss +31 -0
  37. data/assets/_scss/lib/bourbon/addons/_hide-text.scss +27 -0
  38. data/assets/_scss/lib/bourbon/addons/_margin.scss +26 -0
  39. data/assets/_scss/lib/bourbon/addons/_padding.scss +26 -0
  40. data/assets/_scss/lib/bourbon/addons/_position.scss +48 -0
  41. data/assets/_scss/lib/bourbon/addons/_prefixer.scss +66 -0
  42. data/assets/_scss/lib/bourbon/addons/_retina-image.scss +25 -0
  43. data/assets/_scss/lib/bourbon/addons/_size.scss +51 -0
  44. data/assets/_scss/lib/bourbon/addons/_text-inputs.scss +112 -0
  45. data/assets/_scss/lib/bourbon/addons/_timing-functions.scss +34 -0
  46. data/assets/_scss/lib/bourbon/addons/_triangle.scss +63 -0
  47. data/assets/_scss/lib/bourbon/addons/_word-wrap.scss +29 -0
  48. data/assets/_scss/lib/bourbon/css3/_animation.scss +43 -0
  49. data/assets/_scss/lib/bourbon/css3/_appearance.scss +3 -0
  50. data/assets/_scss/lib/bourbon/css3/_backface-visibility.scss +3 -0
  51. data/assets/_scss/lib/bourbon/css3/_background-image.scss +42 -0
  52. data/assets/_scss/lib/bourbon/css3/_background.scss +55 -0
  53. data/assets/_scss/lib/bourbon/css3/_border-image.scss +59 -0
  54. data/assets/_scss/lib/bourbon/css3/_calc.scss +4 -0
  55. data/assets/_scss/lib/bourbon/css3/_columns.scss +47 -0
  56. data/assets/_scss/lib/bourbon/css3/_filter.scss +4 -0
  57. data/assets/_scss/lib/bourbon/css3/_flex-box.scss +287 -0
  58. data/assets/_scss/lib/bourbon/css3/_font-face.scss +24 -0
  59. data/assets/_scss/lib/bourbon/css3/_font-feature-settings.scss +4 -0
  60. data/assets/_scss/lib/bourbon/css3/_hidpi-media-query.scss +10 -0
  61. data/assets/_scss/lib/bourbon/css3/_hyphens.scss +4 -0
  62. data/assets/_scss/lib/bourbon/css3/_image-rendering.scss +14 -0
  63. data/assets/_scss/lib/bourbon/css3/_keyframes.scss +36 -0
  64. data/assets/_scss/lib/bourbon/css3/_linear-gradient.scss +38 -0
  65. data/assets/_scss/lib/bourbon/css3/_perspective.scss +8 -0
  66. data/assets/_scss/lib/bourbon/css3/_placeholder.scss +8 -0
  67. data/assets/_scss/lib/bourbon/css3/_radial-gradient.scss +39 -0
  68. data/assets/_scss/lib/bourbon/css3/_selection.scss +42 -0
  69. data/assets/_scss/lib/bourbon/css3/_text-decoration.scss +19 -0
  70. data/assets/_scss/lib/bourbon/css3/_transform.scss +15 -0
  71. data/assets/_scss/lib/bourbon/css3/_transition.scss +71 -0
  72. data/assets/_scss/lib/bourbon/css3/_user-select.scss +3 -0
  73. data/assets/_scss/lib/bourbon/functions/_assign-inputs.scss +11 -0
  74. data/assets/_scss/lib/bourbon/functions/_contains-falsy.scss +20 -0
  75. data/assets/_scss/lib/bourbon/functions/_contains.scss +26 -0
  76. data/assets/_scss/lib/bourbon/functions/_is-length.scss +11 -0
  77. data/assets/_scss/lib/bourbon/functions/_is-light.scss +21 -0
  78. data/assets/_scss/lib/bourbon/functions/_is-number.scss +11 -0
  79. data/assets/_scss/lib/bourbon/functions/_is-size.scss +13 -0
  80. data/assets/_scss/lib/bourbon/functions/_modular-scale.scss +69 -0
  81. data/assets/_scss/lib/bourbon/functions/_px-to-em.scss +13 -0
  82. data/assets/_scss/lib/bourbon/functions/_px-to-rem.scss +15 -0
  83. data/assets/_scss/lib/bourbon/functions/_shade.scss +24 -0
  84. data/assets/_scss/lib/bourbon/functions/_strip-units.scss +17 -0
  85. data/assets/_scss/lib/bourbon/functions/_tint.scss +24 -0
  86. data/assets/_scss/lib/bourbon/functions/_transition-property-name.scss +22 -0
  87. data/assets/_scss/lib/bourbon/functions/_unpack.scss +27 -0
  88. data/assets/_scss/lib/bourbon/helpers/_convert-units.scss +21 -0
  89. data/assets/_scss/lib/bourbon/helpers/_directional-values.scss +96 -0
  90. data/assets/_scss/lib/bourbon/helpers/_font-source-declaration.scss +43 -0
  91. data/assets/_scss/lib/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  92. data/assets/_scss/lib/bourbon/helpers/_linear-angle-parser.scss +25 -0
  93. data/assets/_scss/lib/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  94. data/assets/_scss/lib/bourbon/helpers/_linear-positions-parser.scss +61 -0
  95. data/assets/_scss/lib/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  96. data/assets/_scss/lib/bourbon/helpers/_radial-arg-parser.scss +69 -0
  97. data/assets/_scss/lib/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  98. data/assets/_scss/lib/bourbon/helpers/_radial-positions-parser.scss +18 -0
  99. data/assets/_scss/lib/bourbon/helpers/_render-gradients.scss +26 -0
  100. data/assets/_scss/lib/bourbon/helpers/_shape-size-stripper.scss +10 -0
  101. data/assets/_scss/lib/bourbon/helpers/_str-to-num.scss +50 -0
  102. data/assets/_scss/lib/bourbon/settings/_asset-pipeline.scss +7 -0
  103. data/assets/_scss/lib/bourbon/settings/_prefixer.scss +9 -0
  104. data/assets/_scss/lib/bourbon/settings/_px-to-em.scss +1 -0
  105. data/assets/_scss/lib/neat/_neat-helpers.scss +8 -0
  106. data/assets/_scss/lib/neat/_neat.scss +23 -0
  107. data/assets/_scss/lib/neat/functions/_new-breakpoint.scss +49 -0
  108. data/assets/_scss/lib/neat/functions/_private.scss +114 -0
  109. data/assets/_scss/lib/neat/grid/_box-sizing.scss +15 -0
  110. data/assets/_scss/lib/neat/grid/_direction-context.scss +33 -0
  111. data/assets/_scss/lib/neat/grid/_display-context.scss +28 -0
  112. data/assets/_scss/lib/neat/grid/_fill-parent.scss +22 -0
  113. data/assets/_scss/lib/neat/grid/_media.scss +92 -0
  114. data/assets/_scss/lib/neat/grid/_omega.scss +87 -0
  115. data/assets/_scss/lib/neat/grid/_outer-container.scss +38 -0
  116. data/assets/_scss/lib/neat/grid/_pad.scss +25 -0
  117. data/assets/_scss/lib/neat/grid/_private.scss +35 -0
  118. data/assets/_scss/lib/neat/grid/_row.scss +52 -0
  119. data/assets/_scss/lib/neat/grid/_shift.scss +50 -0
  120. data/assets/_scss/lib/neat/grid/_span-columns.scss +94 -0
  121. data/assets/_scss/lib/neat/grid/_to-deprecate.scss +97 -0
  122. data/assets/_scss/lib/neat/grid/_visual-grid.scss +42 -0
  123. data/assets/_scss/lib/neat/settings/_disable-warnings.scss +13 -0
  124. data/assets/_scss/lib/neat/settings/_grid.scss +51 -0
  125. data/assets/_scss/lib/neat/settings/_visual-grid.scss +27 -0
  126. data/assets/_scss/us_web_design_standards.scss +39 -0
  127. data/assets/css/google-fonts.css +102 -0
  128. data/assets/css/normalize.min.css +1 -0
  129. data/assets/fonts/merriweather-bold-webfont.eot +0 -0
  130. data/assets/fonts/merriweather-bold-webfont.svg +294 -0
  131. data/assets/fonts/merriweather-bold-webfont.ttf +0 -0
  132. data/assets/fonts/merriweather-bold-webfont.woff +0 -0
  133. data/assets/fonts/merriweather-bold-webfont.woff2 +0 -0
  134. data/assets/fonts/merriweather-italic-webfont.eot +0 -0
  135. data/assets/fonts/merriweather-italic-webfont.svg +283 -0
  136. data/assets/fonts/merriweather-italic-webfont.ttf +0 -0
  137. data/assets/fonts/merriweather-italic-webfont.woff +0 -0
  138. data/assets/fonts/merriweather-italic-webfont.woff2 +0 -0
  139. data/assets/fonts/merriweather-light-webfont.eot +0 -0
  140. data/assets/fonts/merriweather-light-webfont.svg +299 -0
  141. data/assets/fonts/merriweather-light-webfont.ttf +0 -0
  142. data/assets/fonts/merriweather-light-webfont.woff +0 -0
  143. data/assets/fonts/merriweather-light-webfont.woff2 +0 -0
  144. data/assets/fonts/merriweather-regular-webfont.eot +0 -0
  145. data/assets/fonts/merriweather-regular-webfont.svg +294 -0
  146. data/assets/fonts/merriweather-regular-webfont.ttf +0 -0
  147. data/assets/fonts/merriweather-regular-webfont.woff +0 -0
  148. data/assets/fonts/merriweather-regular-webfont.woff2 +0 -0
  149. data/assets/fonts/sourcesanspro-bold-webfont.eot +0 -0
  150. data/assets/fonts/sourcesanspro-bold-webfont.svg +965 -0
  151. data/assets/fonts/sourcesanspro-bold-webfont.ttf +0 -0
  152. data/assets/fonts/sourcesanspro-bold-webfont.woff +0 -0
  153. data/assets/fonts/sourcesanspro-bold-webfont.woff2 +0 -0
  154. data/assets/fonts/sourcesanspro-italic-webfont.eot +0 -0
  155. data/assets/fonts/sourcesanspro-italic-webfont.svg +853 -0
  156. data/assets/fonts/sourcesanspro-italic-webfont.ttf +0 -0
  157. data/assets/fonts/sourcesanspro-italic-webfont.woff +0 -0
  158. data/assets/fonts/sourcesanspro-italic-webfont.woff2 +0 -0
  159. data/assets/fonts/sourcesanspro-light-webfont.eot +0 -0
  160. data/assets/fonts/sourcesanspro-light-webfont.svg +915 -0
  161. data/assets/fonts/sourcesanspro-light-webfont.ttf +0 -0
  162. data/assets/fonts/sourcesanspro-light-webfont.woff +0 -0
  163. data/assets/fonts/sourcesanspro-light-webfont.woff2 +0 -0
  164. data/assets/fonts/sourcesanspro-regular-webfont.eot +0 -0
  165. data/assets/fonts/sourcesanspro-regular-webfont.svg +989 -0
  166. data/assets/fonts/sourcesanspro-regular-webfont.ttf +0 -0
  167. data/assets/fonts/sourcesanspro-regular-webfont.woff +0 -0
  168. data/assets/fonts/sourcesanspro-regular-webfont.woff2 +0 -0
  169. data/assets/img/alerts/error.png +0 -0
  170. data/assets/img/alerts/error.svg +17 -0
  171. data/assets/img/alerts/info.png +0 -0
  172. data/assets/img/alerts/info.svg +18 -0
  173. data/assets/img/alerts/success.png +0 -0
  174. data/assets/img/alerts/success.svg +12 -0
  175. data/assets/img/alerts/warning.png +0 -0
  176. data/assets/img/alerts/warning.svg +16 -0
  177. data/assets/img/arrow-down.png +0 -0
  178. data/assets/img/arrow-down.svg +1 -0
  179. data/assets/img/arrow-right.png +0 -0
  180. data/assets/img/arrow-right.svg +1 -0
  181. data/assets/img/correct8.png +0 -0
  182. data/assets/img/correct8.svg +1 -0
  183. data/assets/img/correct9.png +0 -0
  184. data/assets/img/correct9.svg +1 -0
  185. data/assets/img/favicons/favicon-114.png +0 -0
  186. data/assets/img/favicons/favicon-144.png +0 -0
  187. data/assets/img/favicons/favicon-16.png +0 -0
  188. data/assets/img/favicons/favicon-192.png +0 -0
  189. data/assets/img/favicons/favicon-57.png +0 -0
  190. data/assets/img/favicons/favicon-72.png +0 -0
  191. data/assets/img/favicons/favicon.ico +0 -0
  192. data/assets/img/favicons/favicon.png +0 -0
  193. data/assets/img/logo-img.png +0 -0
  194. data/assets/img/minus.png +0 -0
  195. data/assets/img/minus.svg +1 -0
  196. data/assets/img/plus.png +0 -0
  197. data/assets/img/plus.svg +1 -0
  198. data/assets/img/search.png +0 -0
  199. data/assets/img/search.svg +1 -0
  200. data/assets/img/social-icons/png/facebook25.png +0 -0
  201. data/assets/img/social-icons/png/rss25.png +0 -0
  202. data/assets/img/social-icons/png/twitter16.png +0 -0
  203. data/assets/img/social-icons/png/youtube15.png +0 -0
  204. data/assets/img/social-icons/svg/facebook25.svg +1 -0
  205. data/assets/img/social-icons/svg/rss25.svg +1 -0
  206. data/assets/img/social-icons/svg/twitter16.svg +1 -0
  207. data/assets/img/social-icons/svg/youtube15.svg +1 -0
  208. data/assets/img/us_flag_small.png +0 -0
  209. data/assets/js/components.js +376 -0
  210. data/assets/js/vendor/html5shiv.js +301 -0
  211. data/assets/js/vendor/jquery-1.11.3.min.js +5 -0
  212. data/assets/js/vendor/jquery-1.11.3.min.map +1 -0
  213. data/assets/js/vendor/rem.min.js +7 -0
  214. data/assets/js/vendor/respond.js +341 -0
  215. data/assets/js/vendor/selectivizr-min.js +22 -0
  216. data/lib/us_web_design_standards.rb +4 -0
  217. data/lib/us_web_design_standards/assets.rb +17 -0
  218. data/lib/us_web_design_standards/generator.rb +9 -0
  219. data/lib/us_web_design_standards/sass.rb +8 -0
  220. data/lib/us_web_design_standards/version.rb +3 -0
  221. metadata +334 -0
@@ -0,0 +1,94 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Specifies the number of columns an element should span. If the selector is nested the number of columns of its parent element should be passed as an argument as well.
4
+ ///
5
+ /// @param {List} $span
6
+ /// A list containing `$columns`, the unitless number of columns the element spans (required), and `$container-columns`, the number of columns the parent element spans (optional).
7
+ ///
8
+ /// If only one value is passed, it is assumed that it's `$columns` and that that `$container-columns` is equal to `$grid-columns`, the total number of columns in the grid.
9
+ ///
10
+ /// The values can be separated with any string such as `of`, `/`, etc.
11
+ ///
12
+ /// `$columns` also accepts decimals for when it's necessary to break out of the standard grid. E.g. Passing `2.4` in a standard 12 column grid will divide the row into 5 columns.
13
+ ///
14
+ /// @param {String} $display [block]
15
+ /// Sets the display property of the element. By default it sets the display propert of the element to `block`.
16
+ ///
17
+ /// If passed `block-collapse`, it also removes the margin gutter by adding it to the element width.
18
+ ///
19
+ /// If passed `table`, it sets the display property to `table-cell` and calculates the width of the element without taking gutters into consideration. The result does not align with the block-based grid.
20
+ ///
21
+ /// @example scss - Usage
22
+ /// .element {
23
+ /// @include span-columns(6);
24
+ ///
25
+ /// .nested-element {
26
+ /// @include span-columns(2 of 6);
27
+ /// }
28
+ /// }
29
+ ///
30
+ /// @example css - CSS Output
31
+ /// .element {
32
+ /// display: block;
33
+ /// float: left;
34
+ /// margin-right: 2.35765%;
35
+ /// width: 48.82117%;
36
+ /// }
37
+ ///
38
+ /// .element:last-child {
39
+ /// margin-right: 0;
40
+ /// }
41
+ ///
42
+ /// .element .nested-element {
43
+ /// display: block;
44
+ /// float: left;
45
+ /// margin-right: 4.82916%;
46
+ /// width: 30.11389%;
47
+ /// }
48
+ ///
49
+ /// .element .nested-element:last-child {
50
+ /// margin-right: 0;
51
+ /// }
52
+
53
+ @mixin span-columns($span: $columns of $container-columns, $display: block) {
54
+ $columns: nth($span, 1);
55
+ $container-columns: container-span($span);
56
+
57
+ $parent-columns: get-parent-columns($container-columns) !global;
58
+
59
+ $direction: get-direction($layout-direction, $default-layout-direction);
60
+ $opposite-direction: get-opposite-direction($direction);
61
+
62
+ $display-table: is-display-table($container-display-table, $display);
63
+
64
+ @if $display-table {
65
+ display: table-cell;
66
+ width: percentage($columns / $container-columns);
67
+ } @else {
68
+ float: #{$opposite-direction};
69
+
70
+ @if $display != no-display {
71
+ display: block;
72
+ }
73
+
74
+ @if $display == collapse {
75
+ @include -neat-warn("The 'collapse' argument will be deprecated. Use 'block-collapse' instead.");
76
+ }
77
+
78
+ @if $display == collapse or $display == block-collapse {
79
+ width: flex-grid($columns, $container-columns) + flex-gutter($container-columns);
80
+
81
+ &:last-child {
82
+ width: flex-grid($columns, $container-columns);
83
+ }
84
+
85
+ } @else {
86
+ margin-#{$direction}: flex-gutter($container-columns);
87
+ width: flex-grid($columns, $container-columns);
88
+
89
+ &:last-child {
90
+ margin-#{$direction}: 0;
91
+ }
92
+ }
93
+ }
94
+ }
@@ -0,0 +1,97 @@
1
+ @charset "UTF-8";
2
+
3
+ @mixin breakpoint($query:$feature $value $columns, $total-columns: $grid-columns) {
4
+ @include -neat-warn("The breakpoint() mixin was renamed to media() in Neat 1.0. Please update your project with the new syntax before the next version bump.");
5
+
6
+ @if length($query) == 1 {
7
+ @media screen and ($default-feature: nth($query, 1)) {
8
+ $default-grid-columns: $grid-columns;
9
+ $grid-columns: $total-columns;
10
+ @content;
11
+ $grid-columns: $default-grid-columns;
12
+ }
13
+ } @else if length($query) == 2 {
14
+ @media screen and (nth($query, 1): nth($query, 2)) {
15
+ $default-grid-columns: $grid-columns;
16
+ $grid-columns: $total-columns;
17
+ @content;
18
+ $grid-columns: $default-grid-columns;
19
+ }
20
+ } @else if length($query) == 3 {
21
+ @media screen and (nth($query, 1): nth($query, 2)) {
22
+ $default-grid-columns: $grid-columns;
23
+ $grid-columns: nth($query, 3);
24
+ @content;
25
+ $grid-columns: $default-grid-columns;
26
+ }
27
+ } @else if length($query) == 4 {
28
+ @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
29
+ $default-grid-columns: $grid-columns;
30
+ $grid-columns: $total-columns;
31
+ @content;
32
+ $grid-columns: $default-grid-columns;
33
+ }
34
+ } @else if length($query) == 5 {
35
+ @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
36
+ $default-grid-columns: $grid-columns;
37
+ $grid-columns: nth($query, 5);
38
+ @content;
39
+ $grid-columns: $default-grid-columns;
40
+ }
41
+ } @else {
42
+ @include -neat-warn("Wrong number of arguments for breakpoint(). Read the documentation for more details.");
43
+ }
44
+ }
45
+
46
+ @mixin nth-omega($nth, $display: block, $direction: default) {
47
+ @include -neat-warn("The nth-omega() mixin is deprecated. Please use omega() instead.");
48
+ @include omega($nth $display, $direction);
49
+ }
50
+
51
+ /// Resets the active display property to `block`. Particularly useful when changing the display property in a single row.
52
+ ///
53
+ /// @example scss - Usage
54
+ /// .element {
55
+ /// @include row(table);
56
+ /// // Context changed to table display
57
+ /// }
58
+ ///
59
+ /// @include reset-display;
60
+ /// // Context is reset to block display
61
+
62
+ @mixin reset-display {
63
+ $container-display-table: false !global;
64
+ @include -neat-warn("Resetting $display will be deprecated in future versions in favor of the display(){...} mixin.");
65
+ }
66
+
67
+ /// Resets the active layout direction to the default value set in `$default-layout-direction`. Particularly useful when changing the layout direction in a single row.
68
+ ///
69
+ /// @example scss - Usage
70
+ /// .element {
71
+ /// @include row($direction: RTL);
72
+ /// // Context changed to right-to-left
73
+ /// }
74
+ ///
75
+ /// @include reset-layout-direction;
76
+ /// // Context is reset to left-to-right
77
+
78
+ @mixin reset-layout-direction {
79
+ $layout-direction: $default-layout-direction !global;
80
+ @include -neat-warn("Resetting $direction will be deprecated in future versions in favor of the direction(){...} mixin.");
81
+ }
82
+
83
+ /// Resets both the active layout direction and the active display property.
84
+ ///
85
+ /// @example scss - Usage
86
+ /// .element {
87
+ /// @include row(table, RTL);
88
+ /// // Context changed to table table and right-to-left
89
+ /// }
90
+ ///
91
+ /// @include reset-all;
92
+ /// // Context is reset to block display and left-to-right
93
+
94
+ @mixin reset-all {
95
+ @include reset-display;
96
+ @include reset-layout-direction;
97
+ }
@@ -0,0 +1,42 @@
1
+ @charset "UTF-8";
2
+
3
+ @mixin grid-column-gradient($values...) {
4
+ background-image: -webkit-linear-gradient(left, $values);
5
+ background-image: -moz-linear-gradient(left, $values);
6
+ background-image: -ms-linear-gradient(left, $values);
7
+ background-image: -o-linear-gradient(left, $values);
8
+ background-image: unquote("linear-gradient(to left, #{$values})");
9
+ }
10
+
11
+ @if $visual-grid == true or $visual-grid == yes {
12
+ body:before {
13
+ @include grid-column-gradient(gradient-stops($grid-columns));
14
+ content: "";
15
+ display: inline-block;
16
+ height: 100%;
17
+ left: 0;
18
+ margin: 0 auto;
19
+ max-width: $max-width;
20
+ opacity: $visual-grid-opacity;
21
+ pointer-events: none;
22
+ position: fixed;
23
+ right: 0;
24
+ width: 100%;
25
+
26
+ @if $visual-grid-index == back {
27
+ z-index: -1;
28
+ }
29
+
30
+ @else if $visual-grid-index == front {
31
+ z-index: 9999;
32
+ }
33
+
34
+ @each $breakpoint in $visual-grid-breakpoints {
35
+ @if $breakpoint {
36
+ @include media($breakpoint) {
37
+ @include grid-column-gradient(gradient-stops($grid-columns));
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,13 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
4
+ ///
5
+ /// @type Bool
6
+
7
+ $disable-warnings: false !default;
8
+
9
+ @mixin -neat-warn($message) {
10
+ @if $disable-warnings == false {
11
+ @warn "#{$message}";
12
+ }
13
+ }
@@ -0,0 +1,51 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. To learn more about modular-scale() see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with a `!global` flag.
4
+ ///
5
+ /// @type Number (Unit)
6
+
7
+ $column: modular-scale(3, 1em, $golden) !default;
8
+
9
+ /// Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. To learn more about modular-scale() see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with the `!global` flag.
10
+ ///
11
+ /// @type Number (Unit)
12
+
13
+ $gutter: modular-scale(1, 1em, $golden) !default;
14
+
15
+ /// Sets the total number of columns in the grid. Its value can be overridden inside a media query using the `media()` mixin. Set with the `!global` flag.
16
+ ///
17
+ /// @type Number (Unitless)
18
+
19
+ $grid-columns: 12 !default;
20
+
21
+ /// Sets the max-width property of the element that includes `outer-container()`. To learn more about `em()` see [Bourbon docs](http://bourbon.io/docs/#px-to-em). Set with the `!global` flag.
22
+ ///
23
+ /// @type Number (Unit)
24
+ ///
25
+ $max-width: em(1088) !default;
26
+
27
+ /// When set to true, it sets the box-sizing property of all elements to `border-box`. Set with a `!global` flag.
28
+ ///
29
+ /// @type Bool
30
+ ///
31
+ /// @example css - CSS Output
32
+ /// html {
33
+ /// box-sizing: border-box; }
34
+ ///
35
+ /// *, *::after, *::before {
36
+ /// box-sizing: inherit;
37
+ /// }
38
+
39
+ $border-box-sizing: true !default;
40
+
41
+ /// Sets the default [media feature](http://www.w3.org/TR/css3-mediaqueries/#media) that `media()` and `new-breakpoint()` revert to when only a breakpoint value is passed. Set with a `!global` flag.
42
+ ///
43
+ /// @type String
44
+
45
+ $default-feature: min-width; // Default @media feature for the breakpoint() mixin
46
+
47
+ ///Sets the default layout direction of the grid. Can be `LTR` or `RTL`. Set with a `!global` flag.
48
+ ///
49
+ ///@type String
50
+
51
+ $default-layout-direction: LTR !default;
@@ -0,0 +1,27 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Displays the visual grid when set to true. The overlaid grid may be few pixels off depending on the browser's rendering engine and pixel rounding algorithm. Set with the `!global` flag.
4
+ ///
5
+ /// @type Bool
6
+
7
+ $visual-grid: false !default;
8
+
9
+ /// Sets the visual grid color. Set with `!global` flag.
10
+ ///
11
+ /// @type Color
12
+
13
+ $visual-grid-color: #eee !default;
14
+
15
+ /// Sets the `z-index` property of the visual grid. Can be `back` (behind content) or `front` (in front of content). Set with `!global` flag.
16
+ ///
17
+ /// @type String
18
+
19
+ $visual-grid-index: back !default;
20
+
21
+ /// Sets the opacity property of the visual grid. Set with `!global` flag.
22
+ ///
23
+ /// @type Number (unitless)
24
+
25
+ $visual-grid-opacity: 0.4 !default;
26
+
27
+ $visual-grid-breakpoints: () !default;
@@ -0,0 +1,39 @@
1
+ // Vendor -------------- //
2
+
3
+ @import './lib/bourbon/bourbon';
4
+ @import './lib/neat/neat';
5
+ @import './lib/normalize';
6
+
7
+
8
+ // Core -------------- //
9
+
10
+ @import './core/grid-settings';
11
+ @import './core/defaults';
12
+ @import './core/variables';
13
+ @import './core/base';
14
+ @import './core/grid';
15
+ @import './core/utilities';
16
+
17
+
18
+ // Elements -------------- //
19
+ // Styles basic html elements
20
+
21
+ @import './elements/typography';
22
+ @import './elements/list';
23
+ @import './elements/inputs';
24
+ @import './elements/buttons';
25
+ @import './elements/table';
26
+ @import './elements/figure';
27
+ @import './elements/labels';
28
+
29
+
30
+ // Components -------------- //
31
+
32
+ @import './components/skipnav';
33
+ @import './components/disclaimer';
34
+ @import './components/sidenav';
35
+ @import './components/footer';
36
+ @import './components/forms';
37
+ @import './components/search';
38
+ @import './components/alerts';
39
+ @import './components/accordions';
@@ -0,0 +1,102 @@
1
+ @font-face {
2
+ font-family: 'Source Sans Pro';
3
+ font-style: normal;
4
+ font-weight: 300;
5
+ src: url('../fonts/sourcesanspro-light-webfont.eot');
6
+ src: url('../fonts/sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'),
7
+ url('../fonts/sourcesanspro-light-webfont.woff2') format('woff2'),
8
+ url('../fonts/sourcesanspro-light-webfont.woff') format('woff'),
9
+ url('../fonts/sourcesanspro-light-webfont.ttf') format('truetype'),
10
+ url('../fonts/sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg');
11
+ }
12
+
13
+ @font-face {
14
+ font-family: 'Source Sans Pro';
15
+ font-style: normal;
16
+ font-weight: 400;
17
+ src: url('../fonts/sourcesanspro-regular-webfont.eot');
18
+ src: url('../fonts/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
19
+ url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'),
20
+ url('../fonts/sourcesanspro-regular-webfont.woff') format('woff'),
21
+ url('../fonts/sourcesanspro-regular-webfont.ttf') format('truetype'),
22
+ url('../fonts/sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
23
+
24
+ }
25
+
26
+ @font-face {
27
+ font-family: 'Source Sans Pro';
28
+ font-style: italic;
29
+ font-weight: 400;
30
+ src: url('../fonts/sourcesanspro-italic-webfont.eot');
31
+ src: url('../fonts/sourcesanspro-italic-webfont.eot?#iefix') format('embedded-opentype'),
32
+ url('../fonts/sourcesanspro-italic-webfont.woff2') format('woff2'),
33
+ url('../fonts/sourcesanspro-italic-webfont.woff') format('woff'),
34
+ url('../fonts/sourcesanspro-italic-webfont.ttf') format('truetype'),
35
+ url('../fonts/sourcesanspro-italic-webfont.svg#source_sans_proitalic') format('svg');
36
+
37
+ }
38
+
39
+ @font-face {
40
+ font-family: 'Source Sans Pro';
41
+ font-style: normal;
42
+ font-weight: 700;
43
+ src: url('../fonts/sourcesanspro-bold-webfont.eot');
44
+ src: url('../fonts/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),
45
+ url('../fonts/sourcesanspro-bold-webfont.woff2') format('woff2'),
46
+ url('../fonts/sourcesanspro-bold-webfont.woff') format('woff'),
47
+ url('../fonts/sourcesanspro-bold-webfont.ttf') format('truetype'),
48
+ url('../fonts/sourcesanspro-bold-webfont.svg#source_sans_probold') format('svg');
49
+
50
+ }
51
+
52
+ @font-face {
53
+ font-family: 'Merriweather';
54
+ font-style: normal;
55
+ font-weight: 300;
56
+ src: url('../fonts/merriweather-light-webfont.eot');
57
+ src: url('../fonts/merriweather-light-webfont.eot?#iefix') format('embedded-opentype'),
58
+ url('../fonts/merriweather-light-webfont.woff2') format('woff2'),
59
+ url('../fonts/merriweather-light-webfont.woff') format('woff'),
60
+ url('../fonts/merriweather-light-webfont.ttf') format('truetype'),
61
+ url('../fonts/merriweather-light-webfont.svg#source_sans_proregular') format('svg');
62
+
63
+ }
64
+
65
+ @font-face {
66
+ font-family: 'Merriweather';
67
+ font-style: normal;
68
+ font-weight: 400;
69
+ src: url('../fonts/merriweather-regular-webfont.eot');
70
+ src: url('../fonts/merriweather-regular-webfont.eot?#iefix') format('embedded-opentype'),
71
+ url('../fonts/merriweather-regular-webfont.woff2') format('woff2'),
72
+ url('../fonts/merriweather-regular-webfont.woff') format('woff'),
73
+ url('../fonts/merriweather-regular-webfont.ttf') format('truetype'),
74
+ url('../fonts/merriweather-regular-webfont.svg#source_sans_proitalic') format('svg');
75
+
76
+ }
77
+
78
+ @font-face {
79
+ font-family: 'Merriweather';
80
+ font-style: italic;
81
+ font-weight: 400;
82
+ src: url('../fonts/merriweather-italic-webfont.eot');
83
+ src: url('../fonts/merriweather-italic-webfont.eot?#iefix') format('embedded-opentype'),
84
+ url('../fonts/merriweather-italic-webfont.woff2') format('woff2'),
85
+ url('../fonts/merriweather-italic-webfont.woff') format('woff'),
86
+ url('../fonts/merriweather-italic-webfont.ttf') format('truetype'),
87
+ url('../fonts/merriweather-italic-webfont.svg#source_sans_proitalic') format('svg');
88
+
89
+ }
90
+
91
+ @font-face {
92
+ font-family: 'Merriweather';
93
+ font-style: normal;
94
+ font-weight: 700;
95
+ src: url('../fonts/merriweather-bold-webfont.eot');
96
+ src: url('../fonts/merriweather-bold-webfont.eot?#iefix') format('embedded-opentype'),
97
+ url('../fonts/merriweather-bold-webfont.woff2') format('woff2'),
98
+ url('../fonts/merriweather-bold-webfont.woff') format('woff'),
99
+ url('../fonts/merriweather-bold-webfont.ttf') format('truetype'),
100
+ url('../fonts/merriweather-bold-webfont.svg#source_sans_probold') format('svg');
101
+
102
+ }