jekyll_patternbot 0.12.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 (116) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +12 -0
  3. data/.gitattributes +13 -0
  4. data/.gitignore +73 -0
  5. data/CHANGELOG.md +68 -0
  6. data/Gemfile +16 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +39 -0
  9. data/Rakefile +1 -0
  10. data/_config.yml +54 -0
  11. data/_data/locales/en-ca.yml +5 -0
  12. data/_includes/patternbot_icons.html +38 -0
  13. data/_includes/patternbot_pattern_brand_color_swatches.html +48 -0
  14. data/_includes/patternbot_pattern_brand_typeface.html +32 -0
  15. data/_includes/patternbot_pattern_brand_typeface_weight.html +15 -0
  16. data/_includes/patternbot_pattern_copy_script.html +22 -0
  17. data/_includes/patternbot_patternlib_pattern.html +241 -0
  18. data/_layouts/patternbot_pattern_internal.html +94 -0
  19. data/_layouts/patternbot_pattern_lib.html +214 -0
  20. data/_layouts/patternbot_pattern_user.html +27 -0
  21. data/_patterns/brand/colors.html +23 -0
  22. data/_patterns/brand/config.yml +22 -0
  23. data/_patterns/brand/logos.html +43 -0
  24. data/_patterns/brand/typefaces.html +18 -0
  25. data/_patterns/grid/config.yml +14 -0
  26. data/_patterns/grid/grid-sizes.html +47 -0
  27. data/_patterns/icons/config.yml +13 -0
  28. data/_patterns/icons/icons.html +91 -0
  29. data/_patterns/modules/config.yml +32 -0
  30. data/_patterns/modules/embed.html +23 -0
  31. data/_patterns/modules/list-groups.html +21 -0
  32. data/_patterns/modules/media-objects.html +16 -0
  33. data/_patterns/typography/config.yml +55 -0
  34. data/_patterns/typography/emphasis-and-edits.html +80 -0
  35. data/_patterns/typography/font-sizes.html +90 -0
  36. data/_patterns/typography/headings.html +31 -0
  37. data/_patterns/typography/horizontal-spacing.html +46 -0
  38. data/_patterns/typography/links.html +11 -0
  39. data/_patterns/typography/lists.html +43 -0
  40. data/_patterns/typography/quotations.html +17 -0
  41. data/_patterns/typography/size-adjustments.html +20 -0
  42. data/_patterns/typography/typesetting.html +32 -0
  43. data/_patterns/typography/vertical-spacing.html +55 -0
  44. data/_patterns/utilities/config.yml +11 -0
  45. data/_patterns/utilities/utilities.html +18 -0
  46. data/_plugins/jekyll_patternbot/config.rb +19 -0
  47. data/_plugins/jekyll_patternbot/filters/color.rb +87 -0
  48. data/_plugins/jekyll_patternbot/filters/number.rb +11 -0
  49. data/_plugins/jekyll_patternbot/filters/pattern.rb +15 -0
  50. data/_plugins/jekyll_patternbot/filters/text.rb +33 -0
  51. data/_plugins/jekyll_patternbot/finders/finder.rb +34 -0
  52. data/_plugins/jekyll_patternbot/finders/icons.rb +25 -0
  53. data/_plugins/jekyll_patternbot/finders/logos.rb +26 -0
  54. data/_plugins/jekyll_patternbot/finders/patterns.rb +69 -0
  55. data/_plugins/jekyll_patternbot/finders/sample_pages.rb +18 -0
  56. data/_plugins/jekyll_patternbot/generators/internal_patterns.rb +56 -0
  57. data/_plugins/jekyll_patternbot/generators/pattern_lib.rb +27 -0
  58. data/_plugins/jekyll_patternbot/generators/user_patterns.rb +57 -0
  59. data/_plugins/jekyll_patternbot/helpers/color.rb +26 -0
  60. data/_plugins/jekyll_patternbot/helpers/file.rb +17 -0
  61. data/_plugins/jekyll_patternbot/helpers/jekyll.rb +60 -0
  62. data/_plugins/jekyll_patternbot/helpers/pattern.rb +36 -0
  63. data/_plugins/jekyll_patternbot/hooks/pattern_lib.rb +57 -0
  64. data/_plugins/jekyll_patternbot/loggers/patternbot.rb +24 -0
  65. data/_plugins/jekyll_patternbot/parsers/css_color.rb +54 -0
  66. data/_plugins/jekyll_patternbot/parsers/css_font.rb +109 -0
  67. data/_plugins/jekyll_patternbot/parsers/css_utility.rb +27 -0
  68. data/_plugins/jekyll_patternbot/parsers/gridifier.rb +22 -0
  69. data/_plugins/jekyll_patternbot/parsers/icons.rb +27 -0
  70. data/_plugins/jekyll_patternbot/parsers/modulifier.rb +10 -0
  71. data/_plugins/jekyll_patternbot/parsers/theme.rb +39 -0
  72. data/_plugins/jekyll_patternbot/parsers/typografier.rb +21 -0
  73. data/_plugins/jekyll_patternbot/parsers/web_dev_tool.rb +41 -0
  74. data/_plugins/jekyll_patternbot/processors/brand.rb +22 -0
  75. data/_plugins/jekyll_patternbot/processors/modules.rb +35 -0
  76. data/_plugins/jekyll_patternbot/tags/pattern.rb +19 -0
  77. data/_plugins/jekyll_patternbot/tags/pattern_css.rb +27 -0
  78. data/_plugins/jekyll_patternbot/tags/pattern_js.rb +27 -0
  79. data/_plugins/jekyll_patternbot.rb +55 -0
  80. data/_sass/.gitignore +0 -0
  81. data/assets/.gitignore +0 -0
  82. data/assets/_patternbot/common/common.css +223 -0
  83. data/assets/_patternbot/common/common.min.css +1 -0
  84. data/assets/_patternbot/common/gridifier.css +1175 -0
  85. data/assets/_patternbot/common/gridifier.min.css +1 -0
  86. data/assets/_patternbot/common/modulifier.css +539 -0
  87. data/assets/_patternbot/common/modulifier.min.css +1 -0
  88. data/assets/_patternbot/common/typografier.css +1787 -0
  89. data/assets/_patternbot/common/typografier.min.css +1 -0
  90. data/assets/_patternbot/images/placeholder-16by9.svg +1 -0
  91. data/assets/_patternbot/images/placeholder-1by1.svg +1 -0
  92. data/assets/_patternbot/patterns/brand/brand.css +79 -0
  93. data/assets/_patternbot/patterns/brand/brand.min.css +1 -0
  94. data/assets/_patternbot/patterns/grid/grid.css +27 -0
  95. data/assets/_patternbot/patterns/grid/grid.min.css +1 -0
  96. data/assets/_patternbot/patterns/icons/icons.css +41 -0
  97. data/assets/_patternbot/patterns/icons/icons.min.css +1 -0
  98. data/assets/_patternbot/patterns/modules/modules.css +4 -0
  99. data/assets/_patternbot/patterns/modules/modules.min.css +1 -0
  100. data/assets/_patternbot/patterns/typography/typography.css +11 -0
  101. data/assets/_patternbot/patterns/typography/typography.min.css +1 -0
  102. data/assets/_patternbot/patterns/utilities/utilities.css +4 -0
  103. data/assets/_patternbot/patterns/utilities/utilities.min.css +1 -0
  104. data/assets/_patternbot/ui/gridifier.css +1175 -0
  105. data/assets/_patternbot/ui/main.css +513 -0
  106. data/assets/_patternbot/ui/main.js +301 -0
  107. data/assets/_patternbot/ui/modulifier.css +725 -0
  108. data/assets/_patternbot/ui/pattern-lib.css +4 -0
  109. data/assets/_patternbot/ui/pattern-lib.min.css +1 -0
  110. data/assets/_patternbot/ui/pattern-lib.min.js +1 -0
  111. data/assets/_patternbot/ui/typografier.css +1787 -0
  112. data/jekyll_patternbot.gemspec +34 -0
  113. data/package.json +35 -0
  114. data/version.rb +3 -0
  115. data/yarn.lock +2783 -0
  116. metadata +312 -0
@@ -0,0 +1 @@
1
+ :root{--color-patternbot-primary:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9);--color-patternbot-opposite:rgba(var(--color-patternbot-interface-opposite),var(--color-patternbot-interface-opposite),var(--color-patternbot-interface-opposite),.9);--color-patternbot-interface-background:#fff;--font-patternbot-primary:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-patternbot-code:"Source Code Pro",monospace}html{font-family:var(--font-patternbot-primary)}.patternbot-no-wrap{white-space:nowrap}.patternbot-list-group{background-color:transparent;text-align:left}.patternbot-list-group>li:before{content:"";display:none}.patternbot-font-primary{font-family:var(--font-patternbot-primary)}.patternbot-color-body{color:var(--color-patternbot-primary)}.patternbot-max-length{margin-left:0;margin-right:0}code,pre{display:block;margin:0;overflow-x:hidden;color:var(--color-patternbot-primary);font-family:var(--font-patternbot-code);font-size:14px;font-style:normal;font-weight:400;line-height:2}code{padding:0 .4em .15em;background-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);border:1px solid transparent;border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);border-radius:4px}.patternbot-hr{border-width:1px;border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1)}.patternbot-hr:last-child,.patternbot-hr:last-of-type:not(:first-child){display:none}.patternbot-code-invisible{background-color:transparent;border-color:transparent}.patternbot-pad-box{background-color:var(--color-patternbot-interface-accent,--color-primary,rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface)))}.patternbot-pad-box-inner{overflow:hidden;background-color:var(--color-patternbot-interface-background)}.patternbot-spacing-display h2{color:var(--color-patternbot-primary);line-height:1.9;font-family:var(--font-patternbot-primary);font-size:32px;font-style:normal;font-weight:700}.patternbot-mq-display-wrap{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;width:100%}.patternbot-mq-display-wrap,.patternbot-mq-display-wrap *{color:var(--color-patternbot-primary);line-height:2;font-family:var(--font-patternbot-primary);font-size:14px;font-style:normal;font-weight:400}.patternbot-mq-display{background-color:transparent;overflow:hidden}.patternbot-mq-display>li{padding:0}.patternbot-mq-display>li:last-child{padding-bottom:6rem}.patternbot-mq-inner{min-height:2rem;background-color:var(--color-patternbot-interface-accent,--color-primary,rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1));border-top:2px solid var(--color-patternbot-interface-background)}.patternbot-mq-list{min-width:24em;padding-top:2.2rem;border-left:2px solid var(--color-patternbot-interface-accent,--color-primary,rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1))}.patternbot-mq-list>dd,.patternbot-mq-list>dt{padding:0;font-weight:400;font-style:normal;font-size:inherit}.patternbot-mq-list>dt{width:7em}.patternbot-code-details{margin:0 0 .75em;padding:1.5em 0 0;border-bottom:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);font-size:14px;line-height:2;text-align:left}.patternbot-code-details,.patternbot-code-details *{color:var(--color-patternbot-primary)}.patternbot-code-details-under{padding-top:0;border:0}.patternbot-code-details-center{text-align:center}.patternbot-tool-btn{display:flex;left:100%;min-height:1.4em;min-width:1.2em;padding:1px 2px 2px;position:absolute;top:50%;transform:translateY(-50%);background-color:transparent;border:2px solid transparent;border-radius:4px;cursor:pointer;opacity:.4}.patternbot-tool-btn,.patternbot-tool-btn *{stroke:var(--color-patternbot-primary);color:var(--color-patternbot-primary)}.patternbot-tool-btn:focus,.patternbot-tool-btn:hover{background-color:transparent;border-color:transparent;outline:none;opacity:1;color:var(--color-patternbot-primary)}.patternbot-tool-btn:active,.patternbot-tool-btn:focus,.patternbot-tool-btn[aria-pressed=true]{border-color:var(--color-patternbot-primary)}
@@ -0,0 +1,1175 @@
1
+ /*
2
+ Gridifier || Code released under the UNLICENSE
3
+ https://gridifier.web-dev.tools/#xs,6,0,0,0;s,6,25,0,0;m,6,38,1,1;l,6,60,1,1
4
+ */
5
+
6
+ .grid {
7
+ margin: 0;
8
+ padding: 0;
9
+ letter-spacing: -.31em;
10
+ text-rendering: optimizeSpeed;
11
+ display: -webkit-flex;
12
+ display: -ms-flexbox;
13
+ display: flex;
14
+ -webkit-flex-flow: row wrap;
15
+ -ms-flex-flow: row wrap;
16
+ flex-flow: row wrap;
17
+ }
18
+
19
+ .grid-bottom {
20
+ -webkit-align-items: flex-end;
21
+ -ms-align-items: flex-end;
22
+ align-items: flex-end;
23
+ }
24
+
25
+ .grid-middle {
26
+ -webkit-align-items: center;
27
+ -ms-align-items: center;
28
+ align-items: center;
29
+ }
30
+
31
+ .grid-stretch {
32
+ -webkit-align-items: stretch;
33
+ -ms-align-items: stretch;
34
+ align-items: stretch;
35
+ }
36
+
37
+ .opera-only :-o-prefocus,
38
+ .grid {
39
+ word-spacing: -.43em;
40
+ }
41
+
42
+ .unit {
43
+ letter-spacing: normal;
44
+ text-rendering: auto;
45
+ vertical-align: top;
46
+ word-spacing: normal;
47
+ display: inline-block;
48
+ visibility: visible;
49
+ }
50
+
51
+ .grid-bottom .unit {
52
+ vertical-align: bottom;
53
+ }
54
+
55
+ .grid-middle .unit {
56
+ vertical-align: middle;
57
+ }
58
+
59
+ [class*="unit-push-"],
60
+ [class*="unit-pull-"] {
61
+ position: relative;
62
+ }
63
+
64
+ .unit-content-distribute {
65
+ display: -ms-flexbox;
66
+ display: -webkit-flex;
67
+ display: flex;
68
+ -ms-flex-direction: column;
69
+ -webkit-flex-direction: column;
70
+ flex-direction: column;
71
+ -ms-flex-pack: justify;
72
+ -webkit-justify-content: space-between;
73
+ justify-content: space-between;
74
+ }
75
+
76
+ .unit-content-center,
77
+ .unit-content-center-vertical {
78
+ display: -webkit-flex;
79
+ display: -ms-flexbox;
80
+ display: flex;
81
+ -webkit-justify-content: center;
82
+ -ms-flex-pack: center;
83
+ justify-content: center;
84
+ -webkit-align-items: center;
85
+ -ms-flex-align: center;
86
+ align-items: center;
87
+ -webkit-align-content: center;
88
+ -ms-flex-line-pack: center;
89
+ align-content: center;
90
+ -webkit-flex-direction: column wrap;
91
+ -ms-flex-direction: column wrap;
92
+ flex-flow: column wrap;
93
+ }
94
+
95
+ .unit-content-center-horizontal {
96
+ display: -webkit-flex;
97
+ display: -ms-flexbox;
98
+ display: flex;
99
+ -webkit-justify-content: center;
100
+ -ms-flex-pack: center;
101
+ justify-content: center;
102
+ -webkit-align-items: center;
103
+ -ms-flex-align: center;
104
+ align-items: center;
105
+ -webkit-align-content: center;
106
+ -ms-flex-line-pack: center;
107
+ align-content: center;
108
+ -webkit-flex-direction: row wrap;
109
+ -ms-flex-direction: row wrap;
110
+ flex-flow: row wrap;
111
+ }
112
+
113
+ .content-fill,
114
+ .content-stretch {
115
+ -ms-flex-grow: 2;
116
+ -webkit-flex-grow: 2;
117
+ flex-grow: 2;
118
+ max-width: 100%; /* @bugfix: IE 10, 11 */
119
+ }
120
+
121
+ .content-shrink {
122
+ -ms-align-self: center;
123
+ -webkit-align-self: center;
124
+ align-self: center;
125
+ }
126
+
127
+ .unit-xs-hidden,
128
+ .xs-0 {
129
+ display: none;
130
+ visibility: hidden;
131
+ }
132
+
133
+ .unit-xs-centered {
134
+ margin: 0 auto;
135
+ }
136
+
137
+ .unit-xs-1,
138
+ .xs-1 {
139
+ display: block;
140
+ visibility: visible;
141
+ width: 100%;
142
+ }
143
+
144
+ .unit-xs-1-2,
145
+ .xs-1-2 {
146
+ width: 50%;
147
+ }
148
+
149
+ .unit-xs-1-3,
150
+ .xs-1-3 {
151
+ width: 33.3333%;
152
+ }
153
+
154
+ .unit-xs-2-3,
155
+ .xs-2-3 {
156
+ width: 66.6667%;
157
+ }
158
+
159
+ .unit-xs-1-4,
160
+ .xs-1-4 {
161
+ width: 25%;
162
+ }
163
+
164
+ .unit-xs-3-4,
165
+ .xs-3-4 {
166
+ width: 75%;
167
+ }
168
+
169
+ .unit-xs-1-5,
170
+ .xs-1-5 {
171
+ width: 20%;
172
+ }
173
+
174
+ .unit-xs-2-5,
175
+ .xs-2-5 {
176
+ width: 40%;
177
+ }
178
+
179
+ .unit-xs-3-5,
180
+ .xs-3-5 {
181
+ width: 60%;
182
+ }
183
+
184
+ .unit-xs-4-5,
185
+ .xs-4-5 {
186
+ width: 80%;
187
+ }
188
+
189
+ .unit-xs-1-6,
190
+ .xs-1-6 {
191
+ width: 16.6667%;
192
+ }
193
+
194
+ .unit-xs-5-6,
195
+ .xs-5-6 {
196
+ width: 83.3333%;
197
+ }
198
+
199
+ .unit-xs-1-2,
200
+ .xs-1-2,
201
+ .unit-xs-1-3,
202
+ .xs-1-3,
203
+ .unit-xs-2-3,
204
+ .xs-2-3,
205
+ .unit-xs-1-4,
206
+ .xs-1-4,
207
+ .unit-xs-3-4,
208
+ .xs-3-4,
209
+ .unit-xs-1-5,
210
+ .xs-1-5,
211
+ .unit-xs-2-5,
212
+ .xs-2-5,
213
+ .unit-xs-3-5,
214
+ .xs-3-5,
215
+ .unit-xs-4-5,
216
+ .xs-4-5,
217
+ .unit-xs-1-6,
218
+ .xs-1-6,
219
+ .unit-xs-5-6,
220
+ .xs-5-6 {
221
+ display: inline-block;
222
+ visibility: visible;
223
+ }
224
+
225
+ .unit-xs-1-2[class*="-content-"],
226
+ .xs-1-2[class*="-content-"],
227
+ .unit-xs-1-3[class*="-content-"],
228
+ .xs-1-3[class*="-content-"],
229
+ .unit-xs-2-3[class*="-content-"],
230
+ .xs-2-3[class*="-content-"],
231
+ .unit-xs-1-4[class*="-content-"],
232
+ .xs-1-4[class*="-content-"],
233
+ .unit-xs-3-4[class*="-content-"],
234
+ .xs-3-4[class*="-content-"],
235
+ .unit-xs-1-5[class*="-content-"],
236
+ .xs-1-5[class*="-content-"],
237
+ .unit-xs-2-5[class*="-content-"],
238
+ .xs-2-5[class*="-content-"],
239
+ .unit-xs-3-5[class*="-content-"],
240
+ .xs-3-5[class*="-content-"],
241
+ .unit-xs-4-5[class*="-content-"],
242
+ .xs-4-5[class*="-content-"],
243
+ .unit-xs-1-6[class*="-content-"],
244
+ .xs-1-6[class*="-content-"],
245
+ .unit-xs-5-6[class*="-content-"],
246
+ .xs-5-6[class*="-content-"] {
247
+ display: -webkit-flex;
248
+ display: -ms-flexbox;
249
+ display: flex;
250
+ }
251
+
252
+ .unit-xs-content-distribute,
253
+ .xs-content-distribute {
254
+ display: -ms-flexbox;
255
+ display: -webkit-flex;
256
+ display: flex;
257
+ -ms-flex-direction: column;
258
+ -webkit-flex-direction: column;
259
+ flex-direction: column;
260
+ -ms-flex-pack: justify;
261
+ -webkit-justify-content: space-between;
262
+ justify-content: space-between;
263
+ }
264
+
265
+ .unit-xs-content-center,
266
+ .unit-xs-content-center-vertical {
267
+ display: -webkit-flex;
268
+ display: -ms-flexbox;
269
+ display: flex;
270
+ -webkit-justify-content: center;
271
+ -ms-flex-pack: center;
272
+ justify-content: center;
273
+ -webkit-align-items: center;
274
+ -ms-flex-align: center;
275
+ align-items: center;
276
+ -webkit-align-content: center;
277
+ -ms-flex-line-pack: center;
278
+ align-content: center;
279
+ -webkit-flex-direction: column wrap;
280
+ -ms-flex-direction: column wrap;
281
+ flex-flow: column wrap;
282
+ }
283
+
284
+ .unit-xs-content-center-horizontal {
285
+ display: -webkit-flex;
286
+ display: -ms-flexbox;
287
+ display: flex;
288
+ -webkit-justify-content: center;
289
+ -ms-flex-pack: center;
290
+ justify-content: center;
291
+ -webkit-align-items: center;
292
+ -ms-flex-align: center;
293
+ align-items: center;
294
+ -webkit-align-content: center;
295
+ -ms-flex-line-pack: center;
296
+ align-content: center;
297
+ -webkit-flex-direction: row wrap;
298
+ -ms-flex-direction: row wrap;
299
+ flex-flow: row wrap;
300
+ }
301
+
302
+ .xs-content-fill,
303
+ .xs-content-stretch {
304
+ -ms-flex-grow: 2;
305
+ -webkit-flex-grow: 2;
306
+ flex-grow: 2;
307
+ max-width: 100%; /* @bugfix: IE 10, 11 */
308
+ }
309
+
310
+ .xs-content-shrink {
311
+ -ms-align-self: center;
312
+ -webkit-align-self: center;
313
+ align-self: center;
314
+ }
315
+
316
+ @media only screen and (min-width: 25em) {
317
+
318
+ .unit-s-hidden,
319
+ .s-0 {
320
+ display: none;
321
+ visibility: hidden;
322
+ }
323
+
324
+ .unit-s-centered {
325
+ margin: 0 auto;
326
+ }
327
+
328
+ .unit-s-1,
329
+ .s-1 {
330
+ display: block;
331
+ visibility: visible;
332
+ width: 100%;
333
+ }
334
+
335
+ .unit-s-1-2,
336
+ .s-1-2 {
337
+ width: 50%;
338
+ }
339
+
340
+ .unit-s-1-3,
341
+ .s-1-3 {
342
+ width: 33.3333%;
343
+ }
344
+
345
+ .unit-s-2-3,
346
+ .s-2-3 {
347
+ width: 66.6667%;
348
+ }
349
+
350
+ .unit-s-1-4,
351
+ .s-1-4 {
352
+ width: 25%;
353
+ }
354
+
355
+ .unit-s-3-4,
356
+ .s-3-4 {
357
+ width: 75%;
358
+ }
359
+
360
+ .unit-s-1-5,
361
+ .s-1-5 {
362
+ width: 20%;
363
+ }
364
+
365
+ .unit-s-2-5,
366
+ .s-2-5 {
367
+ width: 40%;
368
+ }
369
+
370
+ .unit-s-3-5,
371
+ .s-3-5 {
372
+ width: 60%;
373
+ }
374
+
375
+ .unit-s-4-5,
376
+ .s-4-5 {
377
+ width: 80%;
378
+ }
379
+
380
+ .unit-s-1-6,
381
+ .s-1-6 {
382
+ width: 16.6667%;
383
+ }
384
+
385
+ .unit-s-5-6,
386
+ .s-5-6 {
387
+ width: 83.3333%;
388
+ }
389
+
390
+ .unit-s-1-2,
391
+ .s-1-2,
392
+ .unit-s-1-3,
393
+ .s-1-3,
394
+ .unit-s-2-3,
395
+ .s-2-3,
396
+ .unit-s-1-4,
397
+ .s-1-4,
398
+ .unit-s-3-4,
399
+ .s-3-4,
400
+ .unit-s-1-5,
401
+ .s-1-5,
402
+ .unit-s-2-5,
403
+ .s-2-5,
404
+ .unit-s-3-5,
405
+ .s-3-5,
406
+ .unit-s-4-5,
407
+ .s-4-5,
408
+ .unit-s-1-6,
409
+ .s-1-6,
410
+ .unit-s-5-6,
411
+ .s-5-6 {
412
+ display: inline-block;
413
+ visibility: visible;
414
+ }
415
+
416
+ .unit-s-1-2[class*="-content-"],
417
+ .s-1-2[class*="-content-"],
418
+ .unit-s-1-3[class*="-content-"],
419
+ .s-1-3[class*="-content-"],
420
+ .unit-s-2-3[class*="-content-"],
421
+ .s-2-3[class*="-content-"],
422
+ .unit-s-1-4[class*="-content-"],
423
+ .s-1-4[class*="-content-"],
424
+ .unit-s-3-4[class*="-content-"],
425
+ .s-3-4[class*="-content-"],
426
+ .unit-s-1-5[class*="-content-"],
427
+ .s-1-5[class*="-content-"],
428
+ .unit-s-2-5[class*="-content-"],
429
+ .s-2-5[class*="-content-"],
430
+ .unit-s-3-5[class*="-content-"],
431
+ .s-3-5[class*="-content-"],
432
+ .unit-s-4-5[class*="-content-"],
433
+ .s-4-5[class*="-content-"],
434
+ .unit-s-1-6[class*="-content-"],
435
+ .s-1-6[class*="-content-"],
436
+ .unit-s-5-6[class*="-content-"],
437
+ .s-5-6[class*="-content-"] {
438
+ display: -webkit-flex;
439
+ display: -ms-flexbox;
440
+ display: flex;
441
+ }
442
+
443
+ .unit-s-content-distribute,
444
+ .s-content-distribute {
445
+ display: -ms-flexbox;
446
+ display: -webkit-flex;
447
+ display: flex;
448
+ -ms-flex-direction: column;
449
+ -webkit-flex-direction: column;
450
+ flex-direction: column;
451
+ -ms-flex-pack: justify;
452
+ -webkit-justify-content: space-between;
453
+ justify-content: space-between;
454
+ }
455
+
456
+ .unit-s-content-center,
457
+ .unit-s-content-center-vertical {
458
+ display: -webkit-flex;
459
+ display: -ms-flexbox;
460
+ display: flex;
461
+ -webkit-justify-content: center;
462
+ -ms-flex-pack: center;
463
+ justify-content: center;
464
+ -webkit-align-items: center;
465
+ -ms-flex-align: center;
466
+ align-items: center;
467
+ -webkit-align-content: center;
468
+ -ms-flex-line-pack: center;
469
+ align-content: center;
470
+ -webkit-flex-direction: column wrap;
471
+ -ms-flex-direction: column wrap;
472
+ flex-flow: column wrap;
473
+ }
474
+
475
+ .unit-s-content-center-horizontal {
476
+ display: -webkit-flex;
477
+ display: -ms-flexbox;
478
+ display: flex;
479
+ -webkit-justify-content: center;
480
+ -ms-flex-pack: center;
481
+ justify-content: center;
482
+ -webkit-align-items: center;
483
+ -ms-flex-align: center;
484
+ align-items: center;
485
+ -webkit-align-content: center;
486
+ -ms-flex-line-pack: center;
487
+ align-content: center;
488
+ -webkit-flex-direction: row wrap;
489
+ -ms-flex-direction: row wrap;
490
+ flex-flow: row wrap;
491
+ }
492
+
493
+ .s-content-fill,
494
+ .s-content-stretch {
495
+ -ms-flex-grow: 2;
496
+ -webkit-flex-grow: 2;
497
+ flex-grow: 2;
498
+ max-width: 100%; /* @bugfix: IE 10, 11 */
499
+ }
500
+
501
+ .s-content-shrink {
502
+ -ms-align-self: center;
503
+ -webkit-align-self: center;
504
+ align-self: center;
505
+ }
506
+
507
+ }
508
+
509
+ @media only screen and (min-width: 38em) {
510
+
511
+ .unit-m-hidden,
512
+ .m-0 {
513
+ display: none;
514
+ visibility: hidden;
515
+ }
516
+
517
+ .unit-m-centered {
518
+ margin: 0 auto;
519
+ }
520
+
521
+ .unit-m-1,
522
+ .m-1 {
523
+ display: block;
524
+ visibility: visible;
525
+ width: 100%;
526
+ }
527
+
528
+ .unit-offset-m-0 {
529
+ margin-left: 0;
530
+ }
531
+
532
+ .unit-push-m-0,
533
+ .unit-pull-m-0 {
534
+ left: 0;
535
+ }
536
+
537
+ .unit-m-1-2,
538
+ .m-1-2 {
539
+ width: 50%;
540
+ }
541
+
542
+ .unit-offset-m-1-2 {
543
+ margin-left: 50%;
544
+ }
545
+
546
+ .unit-push-m-1-2 {
547
+ left: 50%;
548
+ }
549
+
550
+ .unit-pull-m-1-2 {
551
+ left: -50%;
552
+ }
553
+
554
+ .unit-m-1-3,
555
+ .m-1-3 {
556
+ width: 33.3333%;
557
+ }
558
+
559
+ .unit-offset-m-1-3 {
560
+ margin-left: 33.3333%;
561
+ }
562
+
563
+ .unit-push-m-1-3 {
564
+ left: 33.3333%;
565
+ }
566
+
567
+ .unit-pull-m-1-3 {
568
+ left: -33.3333%;
569
+ }
570
+
571
+ .unit-m-2-3,
572
+ .m-2-3 {
573
+ width: 66.6667%;
574
+ }
575
+
576
+ .unit-offset-m-2-3 {
577
+ margin-left: 66.6667%;
578
+ }
579
+
580
+ .unit-push-m-2-3 {
581
+ left: 66.6667%;
582
+ }
583
+
584
+ .unit-pull-m-2-3 {
585
+ left: -66.6667%;
586
+ }
587
+
588
+ .unit-m-1-4,
589
+ .m-1-4 {
590
+ width: 25%;
591
+ }
592
+
593
+ .unit-offset-m-1-4 {
594
+ margin-left: 25%;
595
+ }
596
+
597
+ .unit-push-m-1-4 {
598
+ left: 25%;
599
+ }
600
+
601
+ .unit-pull-m-1-4 {
602
+ left: -25%;
603
+ }
604
+
605
+ .unit-m-3-4,
606
+ .m-3-4 {
607
+ width: 75%;
608
+ }
609
+
610
+ .unit-offset-m-3-4 {
611
+ margin-left: 75%;
612
+ }
613
+
614
+ .unit-push-m-3-4 {
615
+ left: 75%;
616
+ }
617
+
618
+ .unit-pull-m-3-4 {
619
+ left: -75%;
620
+ }
621
+
622
+ .unit-m-1-5,
623
+ .m-1-5 {
624
+ width: 20%;
625
+ }
626
+
627
+ .unit-offset-m-1-5 {
628
+ margin-left: 20%;
629
+ }
630
+
631
+ .unit-push-m-1-5 {
632
+ left: 20%;
633
+ }
634
+
635
+ .unit-pull-m-1-5 {
636
+ left: -20%;
637
+ }
638
+
639
+ .unit-m-2-5,
640
+ .m-2-5 {
641
+ width: 40%;
642
+ }
643
+
644
+ .unit-offset-m-2-5 {
645
+ margin-left: 40%;
646
+ }
647
+
648
+ .unit-push-m-2-5 {
649
+ left: 40%;
650
+ }
651
+
652
+ .unit-pull-m-2-5 {
653
+ left: -40%;
654
+ }
655
+
656
+ .unit-m-3-5,
657
+ .m-3-5 {
658
+ width: 60%;
659
+ }
660
+
661
+ .unit-offset-m-3-5 {
662
+ margin-left: 60%;
663
+ }
664
+
665
+ .unit-push-m-3-5 {
666
+ left: 60%;
667
+ }
668
+
669
+ .unit-pull-m-3-5 {
670
+ left: -60%;
671
+ }
672
+
673
+ .unit-m-4-5,
674
+ .m-4-5 {
675
+ width: 80%;
676
+ }
677
+
678
+ .unit-offset-m-4-5 {
679
+ margin-left: 80%;
680
+ }
681
+
682
+ .unit-push-m-4-5 {
683
+ left: 80%;
684
+ }
685
+
686
+ .unit-pull-m-4-5 {
687
+ left: -80%;
688
+ }
689
+
690
+ .unit-m-1-6,
691
+ .m-1-6 {
692
+ width: 16.6667%;
693
+ }
694
+
695
+ .unit-offset-m-1-6 {
696
+ margin-left: 16.6667%;
697
+ }
698
+
699
+ .unit-push-m-1-6 {
700
+ left: 16.6667%;
701
+ }
702
+
703
+ .unit-pull-m-1-6 {
704
+ left: -16.6667%;
705
+ }
706
+
707
+ .unit-m-5-6,
708
+ .m-5-6 {
709
+ width: 83.3333%;
710
+ }
711
+
712
+ .unit-offset-m-5-6 {
713
+ margin-left: 83.3333%;
714
+ }
715
+
716
+ .unit-push-m-5-6 {
717
+ left: 83.3333%;
718
+ }
719
+
720
+ .unit-pull-m-5-6 {
721
+ left: -83.3333%;
722
+ }
723
+
724
+ .unit-m-1-2,
725
+ .m-1-2,
726
+ .unit-m-1-3,
727
+ .m-1-3,
728
+ .unit-m-2-3,
729
+ .m-2-3,
730
+ .unit-m-1-4,
731
+ .m-1-4,
732
+ .unit-m-3-4,
733
+ .m-3-4,
734
+ .unit-m-1-5,
735
+ .m-1-5,
736
+ .unit-m-2-5,
737
+ .m-2-5,
738
+ .unit-m-3-5,
739
+ .m-3-5,
740
+ .unit-m-4-5,
741
+ .m-4-5,
742
+ .unit-m-1-6,
743
+ .m-1-6,
744
+ .unit-m-5-6,
745
+ .m-5-6 {
746
+ display: inline-block;
747
+ visibility: visible;
748
+ }
749
+
750
+ .unit-m-1-2[class*="-content-"],
751
+ .m-1-2[class*="-content-"],
752
+ .unit-m-1-3[class*="-content-"],
753
+ .m-1-3[class*="-content-"],
754
+ .unit-m-2-3[class*="-content-"],
755
+ .m-2-3[class*="-content-"],
756
+ .unit-m-1-4[class*="-content-"],
757
+ .m-1-4[class*="-content-"],
758
+ .unit-m-3-4[class*="-content-"],
759
+ .m-3-4[class*="-content-"],
760
+ .unit-m-1-5[class*="-content-"],
761
+ .m-1-5[class*="-content-"],
762
+ .unit-m-2-5[class*="-content-"],
763
+ .m-2-5[class*="-content-"],
764
+ .unit-m-3-5[class*="-content-"],
765
+ .m-3-5[class*="-content-"],
766
+ .unit-m-4-5[class*="-content-"],
767
+ .m-4-5[class*="-content-"],
768
+ .unit-m-1-6[class*="-content-"],
769
+ .m-1-6[class*="-content-"],
770
+ .unit-m-5-6[class*="-content-"],
771
+ .m-5-6[class*="-content-"] {
772
+ display: -webkit-flex;
773
+ display: -ms-flexbox;
774
+ display: flex;
775
+ }
776
+
777
+ .unit-m-content-distribute,
778
+ .m-content-distribute {
779
+ display: -ms-flexbox;
780
+ display: -webkit-flex;
781
+ display: flex;
782
+ -ms-flex-direction: column;
783
+ -webkit-flex-direction: column;
784
+ flex-direction: column;
785
+ -ms-flex-pack: justify;
786
+ -webkit-justify-content: space-between;
787
+ justify-content: space-between;
788
+ }
789
+
790
+ .unit-m-content-center,
791
+ .unit-m-content-center-vertical {
792
+ display: -webkit-flex;
793
+ display: -ms-flexbox;
794
+ display: flex;
795
+ -webkit-justify-content: center;
796
+ -ms-flex-pack: center;
797
+ justify-content: center;
798
+ -webkit-align-items: center;
799
+ -ms-flex-align: center;
800
+ align-items: center;
801
+ -webkit-align-content: center;
802
+ -ms-flex-line-pack: center;
803
+ align-content: center;
804
+ -webkit-flex-direction: column wrap;
805
+ -ms-flex-direction: column wrap;
806
+ flex-flow: column wrap;
807
+ }
808
+
809
+ .unit-m-content-center-horizontal {
810
+ display: -webkit-flex;
811
+ display: -ms-flexbox;
812
+ display: flex;
813
+ -webkit-justify-content: center;
814
+ -ms-flex-pack: center;
815
+ justify-content: center;
816
+ -webkit-align-items: center;
817
+ -ms-flex-align: center;
818
+ align-items: center;
819
+ -webkit-align-content: center;
820
+ -ms-flex-line-pack: center;
821
+ align-content: center;
822
+ -webkit-flex-direction: row wrap;
823
+ -ms-flex-direction: row wrap;
824
+ flex-flow: row wrap;
825
+ }
826
+
827
+ .m-content-fill,
828
+ .m-content-stretch {
829
+ -ms-flex-grow: 2;
830
+ -webkit-flex-grow: 2;
831
+ flex-grow: 2;
832
+ max-width: 100%; /* @bugfix: IE 10, 11 */
833
+ }
834
+
835
+ .m-content-shrink {
836
+ -ms-align-self: center;
837
+ -webkit-align-self: center;
838
+ align-self: center;
839
+ }
840
+
841
+ }
842
+
843
+ @media only screen and (min-width: 60em) {
844
+
845
+ .unit-l-hidden,
846
+ .l-0 {
847
+ display: none;
848
+ visibility: hidden;
849
+ }
850
+
851
+ .unit-l-centered {
852
+ margin: 0 auto;
853
+ }
854
+
855
+ .unit-l-1,
856
+ .l-1 {
857
+ display: block;
858
+ visibility: visible;
859
+ width: 100%;
860
+ }
861
+
862
+ .unit-offset-l-0 {
863
+ margin-left: 0;
864
+ }
865
+
866
+ .unit-push-l-0,
867
+ .unit-pull-l-0 {
868
+ left: 0;
869
+ }
870
+
871
+ .unit-l-1-2,
872
+ .l-1-2 {
873
+ width: 50%;
874
+ }
875
+
876
+ .unit-offset-l-1-2 {
877
+ margin-left: 50%;
878
+ }
879
+
880
+ .unit-push-l-1-2 {
881
+ left: 50%;
882
+ }
883
+
884
+ .unit-pull-l-1-2 {
885
+ left: -50%;
886
+ }
887
+
888
+ .unit-l-1-3,
889
+ .l-1-3 {
890
+ width: 33.3333%;
891
+ }
892
+
893
+ .unit-offset-l-1-3 {
894
+ margin-left: 33.3333%;
895
+ }
896
+
897
+ .unit-push-l-1-3 {
898
+ left: 33.3333%;
899
+ }
900
+
901
+ .unit-pull-l-1-3 {
902
+ left: -33.3333%;
903
+ }
904
+
905
+ .unit-l-2-3,
906
+ .l-2-3 {
907
+ width: 66.6667%;
908
+ }
909
+
910
+ .unit-offset-l-2-3 {
911
+ margin-left: 66.6667%;
912
+ }
913
+
914
+ .unit-push-l-2-3 {
915
+ left: 66.6667%;
916
+ }
917
+
918
+ .unit-pull-l-2-3 {
919
+ left: -66.6667%;
920
+ }
921
+
922
+ .unit-l-1-4,
923
+ .l-1-4 {
924
+ width: 25%;
925
+ }
926
+
927
+ .unit-offset-l-1-4 {
928
+ margin-left: 25%;
929
+ }
930
+
931
+ .unit-push-l-1-4 {
932
+ left: 25%;
933
+ }
934
+
935
+ .unit-pull-l-1-4 {
936
+ left: -25%;
937
+ }
938
+
939
+ .unit-l-3-4,
940
+ .l-3-4 {
941
+ width: 75%;
942
+ }
943
+
944
+ .unit-offset-l-3-4 {
945
+ margin-left: 75%;
946
+ }
947
+
948
+ .unit-push-l-3-4 {
949
+ left: 75%;
950
+ }
951
+
952
+ .unit-pull-l-3-4 {
953
+ left: -75%;
954
+ }
955
+
956
+ .unit-l-1-5,
957
+ .l-1-5 {
958
+ width: 20%;
959
+ }
960
+
961
+ .unit-offset-l-1-5 {
962
+ margin-left: 20%;
963
+ }
964
+
965
+ .unit-push-l-1-5 {
966
+ left: 20%;
967
+ }
968
+
969
+ .unit-pull-l-1-5 {
970
+ left: -20%;
971
+ }
972
+
973
+ .unit-l-2-5,
974
+ .l-2-5 {
975
+ width: 40%;
976
+ }
977
+
978
+ .unit-offset-l-2-5 {
979
+ margin-left: 40%;
980
+ }
981
+
982
+ .unit-push-l-2-5 {
983
+ left: 40%;
984
+ }
985
+
986
+ .unit-pull-l-2-5 {
987
+ left: -40%;
988
+ }
989
+
990
+ .unit-l-3-5,
991
+ .l-3-5 {
992
+ width: 60%;
993
+ }
994
+
995
+ .unit-offset-l-3-5 {
996
+ margin-left: 60%;
997
+ }
998
+
999
+ .unit-push-l-3-5 {
1000
+ left: 60%;
1001
+ }
1002
+
1003
+ .unit-pull-l-3-5 {
1004
+ left: -60%;
1005
+ }
1006
+
1007
+ .unit-l-4-5,
1008
+ .l-4-5 {
1009
+ width: 80%;
1010
+ }
1011
+
1012
+ .unit-offset-l-4-5 {
1013
+ margin-left: 80%;
1014
+ }
1015
+
1016
+ .unit-push-l-4-5 {
1017
+ left: 80%;
1018
+ }
1019
+
1020
+ .unit-pull-l-4-5 {
1021
+ left: -80%;
1022
+ }
1023
+
1024
+ .unit-l-1-6,
1025
+ .l-1-6 {
1026
+ width: 16.6667%;
1027
+ }
1028
+
1029
+ .unit-offset-l-1-6 {
1030
+ margin-left: 16.6667%;
1031
+ }
1032
+
1033
+ .unit-push-l-1-6 {
1034
+ left: 16.6667%;
1035
+ }
1036
+
1037
+ .unit-pull-l-1-6 {
1038
+ left: -16.6667%;
1039
+ }
1040
+
1041
+ .unit-l-5-6,
1042
+ .l-5-6 {
1043
+ width: 83.3333%;
1044
+ }
1045
+
1046
+ .unit-offset-l-5-6 {
1047
+ margin-left: 83.3333%;
1048
+ }
1049
+
1050
+ .unit-push-l-5-6 {
1051
+ left: 83.3333%;
1052
+ }
1053
+
1054
+ .unit-pull-l-5-6 {
1055
+ left: -83.3333%;
1056
+ }
1057
+
1058
+ .unit-l-1-2,
1059
+ .l-1-2,
1060
+ .unit-l-1-3,
1061
+ .l-1-3,
1062
+ .unit-l-2-3,
1063
+ .l-2-3,
1064
+ .unit-l-1-4,
1065
+ .l-1-4,
1066
+ .unit-l-3-4,
1067
+ .l-3-4,
1068
+ .unit-l-1-5,
1069
+ .l-1-5,
1070
+ .unit-l-2-5,
1071
+ .l-2-5,
1072
+ .unit-l-3-5,
1073
+ .l-3-5,
1074
+ .unit-l-4-5,
1075
+ .l-4-5,
1076
+ .unit-l-1-6,
1077
+ .l-1-6,
1078
+ .unit-l-5-6,
1079
+ .l-5-6 {
1080
+ display: inline-block;
1081
+ visibility: visible;
1082
+ }
1083
+
1084
+ .unit-l-1-2[class*="-content-"],
1085
+ .l-1-2[class*="-content-"],
1086
+ .unit-l-1-3[class*="-content-"],
1087
+ .l-1-3[class*="-content-"],
1088
+ .unit-l-2-3[class*="-content-"],
1089
+ .l-2-3[class*="-content-"],
1090
+ .unit-l-1-4[class*="-content-"],
1091
+ .l-1-4[class*="-content-"],
1092
+ .unit-l-3-4[class*="-content-"],
1093
+ .l-3-4[class*="-content-"],
1094
+ .unit-l-1-5[class*="-content-"],
1095
+ .l-1-5[class*="-content-"],
1096
+ .unit-l-2-5[class*="-content-"],
1097
+ .l-2-5[class*="-content-"],
1098
+ .unit-l-3-5[class*="-content-"],
1099
+ .l-3-5[class*="-content-"],
1100
+ .unit-l-4-5[class*="-content-"],
1101
+ .l-4-5[class*="-content-"],
1102
+ .unit-l-1-6[class*="-content-"],
1103
+ .l-1-6[class*="-content-"],
1104
+ .unit-l-5-6[class*="-content-"],
1105
+ .l-5-6[class*="-content-"] {
1106
+ display: -webkit-flex;
1107
+ display: -ms-flexbox;
1108
+ display: flex;
1109
+ }
1110
+
1111
+ .unit-l-content-distribute,
1112
+ .l-content-distribute {
1113
+ display: -ms-flexbox;
1114
+ display: -webkit-flex;
1115
+ display: flex;
1116
+ -ms-flex-direction: column;
1117
+ -webkit-flex-direction: column;
1118
+ flex-direction: column;
1119
+ -ms-flex-pack: justify;
1120
+ -webkit-justify-content: space-between;
1121
+ justify-content: space-between;
1122
+ }
1123
+
1124
+ .unit-l-content-center,
1125
+ .unit-l-content-center-vertical {
1126
+ display: -webkit-flex;
1127
+ display: -ms-flexbox;
1128
+ display: flex;
1129
+ -webkit-justify-content: center;
1130
+ -ms-flex-pack: center;
1131
+ justify-content: center;
1132
+ -webkit-align-items: center;
1133
+ -ms-flex-align: center;
1134
+ align-items: center;
1135
+ -webkit-align-content: center;
1136
+ -ms-flex-line-pack: center;
1137
+ align-content: center;
1138
+ -webkit-flex-direction: column wrap;
1139
+ -ms-flex-direction: column wrap;
1140
+ flex-flow: column wrap;
1141
+ }
1142
+
1143
+ .unit-l-content-center-horizontal {
1144
+ display: -webkit-flex;
1145
+ display: -ms-flexbox;
1146
+ display: flex;
1147
+ -webkit-justify-content: center;
1148
+ -ms-flex-pack: center;
1149
+ justify-content: center;
1150
+ -webkit-align-items: center;
1151
+ -ms-flex-align: center;
1152
+ align-items: center;
1153
+ -webkit-align-content: center;
1154
+ -ms-flex-line-pack: center;
1155
+ align-content: center;
1156
+ -webkit-flex-direction: row wrap;
1157
+ -ms-flex-direction: row wrap;
1158
+ flex-flow: row wrap;
1159
+ }
1160
+
1161
+ .l-content-fill,
1162
+ .l-content-stretch {
1163
+ -ms-flex-grow: 2;
1164
+ -webkit-flex-grow: 2;
1165
+ flex-grow: 2;
1166
+ max-width: 100%; /* @bugfix: IE 10, 11 */
1167
+ }
1168
+
1169
+ .l-content-shrink {
1170
+ -ms-align-self: center;
1171
+ -webkit-align-self: center;
1172
+ align-self: center;
1173
+ }
1174
+
1175
+ }