futuro 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_includes/html/analytics.html +12 -0
  5. data/_includes/html/head.html +19 -0
  6. data/_includes/html/overlay-load.html +11 -0
  7. data/_includes/html/scripts.html +4 -0
  8. data/_layouts/demo.html +36 -0
  9. data/_sass/_area.scss +8 -0
  10. data/_sass/_bar.scss +19 -0
  11. data/_sass/_base.scss +67 -0
  12. data/_sass/_box.scss +19 -0
  13. data/_sass/_btn.scss +15 -0
  14. data/_sass/_container.scss +10 -0
  15. data/_sass/_exit.scss +7 -0
  16. data/_sass/_fonts.scss +26 -0
  17. data/_sass/_form.scss +7 -0
  18. data/_sass/_helpers.scss +62 -0
  19. data/_sass/_input.scss +40 -0
  20. data/_sass/_overlay.scss +20 -0
  21. data/_sass/_site.scss +14 -0
  22. data/_sass/_task.scss +15 -0
  23. data/_sass/_textarea.scss +10 -0
  24. data/_sass/_titles.scss +23 -0
  25. data/_sass/_wrap.scss +7 -0
  26. data/_sass/barbs.scss +21 -0
  27. data/assets/art/favicon.psd +0 -0
  28. data/assets/css/normalize.css +423 -0
  29. data/assets/css/styles.scss +5 -0
  30. data/assets/fonts/230883_0_0.eot +0 -0
  31. data/assets/fonts/230883_0_0.ttf +0 -0
  32. data/assets/fonts/230883_0_0.woff +0 -0
  33. data/assets/fonts/230883_1_0.eot +0 -0
  34. data/assets/fonts/230883_1_0.ttf +0 -0
  35. data/assets/fonts/230883_1_0.woff +0 -0
  36. data/assets/fonts/230883_2_0.eot +0 -0
  37. data/assets/fonts/230883_2_0.ttf +0 -0
  38. data/assets/fonts/230883_2_0.woff +0 -0
  39. data/assets/fonts/230883_3_0.eot +0 -0
  40. data/assets/fonts/230883_3_0.ttf +0 -0
  41. data/assets/fonts/230883_3_0.woff +0 -0
  42. data/assets/img/apple-touch-icon-152x152-precomposed.png +0 -0
  43. data/assets/img/favicon.ico +0 -0
  44. data/assets/img/favicon.png +0 -0
  45. data/assets/img/tileicon.png +0 -0
  46. data/assets/js/vendor/enquire.min.js +7 -0
  47. data/assets/js/vendor/jquery.min.js +5 -0
  48. data/assets/js/vendor/modernizr.min.js +3 -0
  49. data/assets/js/vendor/paulh.load.js +25 -0
  50. data/assets/js/vendor/paulh.scroll.js +40 -0
  51. data/assets/js/vendor/tweenmax.min.js +17 -0
  52. data/assets/ref/_config.yml +26 -0
  53. data/assets/ref/gem.txt +8 -0
  54. data/assets/ref/jekyll.txt +6 -0
  55. data/assets/ref/js/paulh.click.js +11 -0
  56. data/assets/ref/js/paulh.random.js +6 -0
  57. data/assets/ref/js/paulh.timeline.js +21 -0
  58. data/assets/ref/js/scripts.js +8 -0
  59. data/assets/ref/liquid.txt +24 -0
  60. data/assets/ref/markdown.md +30 -0
  61. metadata +172 -0
@@ -0,0 +1,423 @@
1
+
2
+ /*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
3
+
4
+ /**
5
+ * 1. Change the default font family in all browsers (opinionated).
6
+ * 2. Correct the line height in all browsers.
7
+ * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
8
+ */
9
+
10
+ html {
11
+ font-family: sans-serif; /* 1 */
12
+ line-height: 1.15; /* 2 */
13
+ -ms-text-size-adjust: 100%; /* 3 */
14
+ -webkit-text-size-adjust: 100%; /* 3 */
15
+ }
16
+
17
+ /**
18
+ * Remove the margin in all browsers (opinionated).
19
+ */
20
+
21
+ body {
22
+ margin: 0;
23
+ }
24
+
25
+ /* HTML5 display definitions
26
+ ========================================================================== */
27
+
28
+ /**
29
+ * Add the correct display in IE 9-.
30
+ * 1. Add the correct display in Edge, IE, and Firefox.
31
+ * 2. Add the correct display in IE.
32
+ */
33
+
34
+ article,
35
+ aside,
36
+ details, /* 1 */
37
+ figcaption,
38
+ figure,
39
+ footer,
40
+ header,
41
+ main, /* 2 */
42
+ menu,
43
+ nav,
44
+ section,
45
+ summary { /* 1 */
46
+ display: block;
47
+ }
48
+
49
+ /**
50
+ * Add the correct display in IE 9-.
51
+ */
52
+
53
+ audio,
54
+ canvas,
55
+ progress,
56
+ video {
57
+ display: inline-block;
58
+ }
59
+
60
+ /**
61
+ * Add the correct display in iOS 4-7.
62
+ */
63
+
64
+ audio:not([controls]) {
65
+ display: none;
66
+ height: 0;
67
+ }
68
+
69
+ /**
70
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
71
+ */
72
+
73
+ progress {
74
+ vertical-align: baseline;
75
+ }
76
+
77
+ /**
78
+ * Add the correct display in IE 10-.
79
+ * 1. Add the correct display in IE.
80
+ */
81
+
82
+ template, /* 1 */
83
+ [hidden] {
84
+ display: none;
85
+ }
86
+
87
+ /* Links
88
+ ========================================================================== */
89
+
90
+ /**
91
+ * 1. Remove the gray background on active links in IE 10.
92
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
93
+ */
94
+
95
+ a {
96
+ background-color: transparent; /* 1 */
97
+ -webkit-text-decoration-skip: objects; /* 2 */
98
+ }
99
+
100
+ /**
101
+ * Remove the outline on focused links when they are also active or hovered
102
+ * in all browsers (opinionated).
103
+ */
104
+
105
+ a:active,
106
+ a:hover {
107
+ outline-width: 0;
108
+ }
109
+
110
+ /* Text-level semantics
111
+ ========================================================================== */
112
+
113
+ /**
114
+ * 1. Remove the bottom border in Firefox 39-.
115
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
116
+ */
117
+
118
+ abbr[title] {
119
+ border-bottom: none; /* 1 */
120
+ text-decoration: underline; /* 2 */
121
+ text-decoration: underline dotted; /* 2 */
122
+ }
123
+
124
+ /**
125
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
126
+ */
127
+
128
+ b,
129
+ strong {
130
+ font-weight: inherit;
131
+ }
132
+
133
+ /**
134
+ * Add the correct font weight in Chrome, Edge, and Safari.
135
+ */
136
+
137
+ b,
138
+ strong {
139
+ font-weight: bolder;
140
+ }
141
+
142
+ /**
143
+ * Add the correct font style in Android 4.3-.
144
+ */
145
+
146
+ dfn {
147
+ font-style: italic;
148
+ }
149
+
150
+ /**
151
+ * Correct the font size and margin on `h1` elements within `section` and
152
+ * `article` contexts in Chrome, Firefox, and Safari.
153
+ */
154
+
155
+ h1 {
156
+ font-size: 2em;
157
+ margin: 0.67em 0;
158
+ }
159
+
160
+ /**
161
+ * Add the correct background and color in IE 9-.
162
+ */
163
+
164
+ mark {
165
+ background-color: #ff0;
166
+ color: #000;
167
+ }
168
+
169
+ /**
170
+ * Add the correct font size in all browsers.
171
+ */
172
+
173
+ small {
174
+ font-size: 80%;
175
+ }
176
+
177
+ /**
178
+ * Prevent `sub` and `sup` elements from affecting the line height in
179
+ * all browsers.
180
+ */
181
+
182
+ sub,
183
+ sup {
184
+ font-size: 75%;
185
+ line-height: 0;
186
+ position: relative;
187
+ vertical-align: baseline;
188
+ }
189
+
190
+ sub {
191
+ bottom: -0.25em;
192
+ }
193
+
194
+ sup {
195
+ top: -0.5em;
196
+ }
197
+
198
+ /* Embedded content
199
+ ========================================================================== */
200
+
201
+ /**
202
+ * Remove the border on images inside links in IE 10-.
203
+ */
204
+
205
+ img {
206
+ border-style: none;
207
+ }
208
+
209
+ /**
210
+ * Hide the overflow in IE.
211
+ */
212
+
213
+ svg:not(:root) {
214
+ overflow: hidden;
215
+ }
216
+
217
+ /* Grouping content
218
+ ========================================================================== */
219
+
220
+ /**
221
+ * 1. Correct the inheritance and scaling of font size in all browsers.
222
+ * 2. Correct the odd `em` font sizing in all browsers.
223
+ */
224
+
225
+ code,
226
+ kbd,
227
+ pre,
228
+ samp {
229
+ font-family: monospace, monospace; /* 1 */
230
+ font-size: 1em; /* 2 */
231
+ }
232
+
233
+ /**
234
+ * Add the correct margin in IE 8.
235
+ */
236
+
237
+ figure {
238
+ margin: 1em 40px;
239
+ }
240
+
241
+ /**
242
+ * 1. Add the correct box sizing in Firefox.
243
+ * 2. Show the overflow in Edge and IE.
244
+ */
245
+
246
+ hr {
247
+ box-sizing: content-box; /* 1 */
248
+ height: 0; /* 1 */
249
+ overflow: visible; /* 2 */
250
+ }
251
+
252
+ /* Forms
253
+ ========================================================================== */
254
+
255
+ /**
256
+ * 1. Change font properties to `inherit` in all browsers (opinionated).
257
+ * 2. Remove the margin in Firefox and Safari.
258
+ */
259
+
260
+ button,
261
+ input,
262
+ optgroup,
263
+ select,
264
+ textarea {
265
+ font: inherit; /* 1 */
266
+ margin: 0; /* 2 */
267
+ }
268
+
269
+ /**
270
+ * Restore the font weight unset by the previous rule.
271
+ */
272
+
273
+ optgroup {
274
+ font-weight: bold;
275
+ }
276
+
277
+ /**
278
+ * Show the overflow in IE.
279
+ * 1. Show the overflow in Edge.
280
+ */
281
+
282
+ button,
283
+ input { /* 1 */
284
+ overflow: visible;
285
+ }
286
+
287
+ /**
288
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
289
+ * 1. Remove the inheritance of text transform in Firefox.
290
+ */
291
+
292
+ button,
293
+ select { /* 1 */
294
+ text-transform: none;
295
+ }
296
+
297
+ /**
298
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
299
+ * controls in Android 4.
300
+ * 2. Correct the inability to style clickable types in iOS and Safari.
301
+ */
302
+
303
+ button,
304
+ html [type="button"], /* 1 */
305
+ [type="reset"],
306
+ [type="submit"] {
307
+ -webkit-appearance: button; /* 2 */
308
+ }
309
+
310
+ /**
311
+ * Remove the inner border and padding in Firefox.
312
+ */
313
+
314
+ button::-moz-focus-inner,
315
+ [type="button"]::-moz-focus-inner,
316
+ [type="reset"]::-moz-focus-inner,
317
+ [type="submit"]::-moz-focus-inner {
318
+ border-style: none;
319
+ padding: 0;
320
+ }
321
+
322
+ /**
323
+ * Restore the focus styles unset by the previous rule.
324
+ */
325
+
326
+ button:-moz-focusring,
327
+ [type="button"]:-moz-focusring,
328
+ [type="reset"]:-moz-focusring,
329
+ [type="submit"]:-moz-focusring {
330
+ outline: 1px dotted ButtonText;
331
+ }
332
+
333
+ /**
334
+ * Change the border, margin, and padding in all browsers (opinionated).
335
+ */
336
+
337
+ fieldset {
338
+ border: 1px solid #c0c0c0;
339
+ margin: 0 2px;
340
+ padding: 0.35em 0.625em 0.75em;
341
+ }
342
+
343
+ /**
344
+ * 1. Correct the text wrapping in Edge and IE.
345
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
346
+ * 3. Remove the padding so developers are not caught out when they zero out
347
+ * `fieldset` elements in all browsers.
348
+ */
349
+
350
+ legend {
351
+ box-sizing: border-box; /* 1 */
352
+ color: inherit; /* 2 */
353
+ display: table; /* 1 */
354
+ max-width: 100%; /* 1 */
355
+ padding: 0; /* 3 */
356
+ white-space: normal; /* 1 */
357
+ }
358
+
359
+ /**
360
+ * Remove the default vertical scrollbar in IE.
361
+ */
362
+
363
+ textarea {
364
+ overflow: auto;
365
+ }
366
+
367
+ /**
368
+ * 1. Add the correct box sizing in IE 10-.
369
+ * 2. Remove the padding in IE 10-.
370
+ */
371
+
372
+ [type="checkbox"],
373
+ [type="radio"] {
374
+ box-sizing: border-box; /* 1 */
375
+ padding: 0; /* 2 */
376
+ }
377
+
378
+ /**
379
+ * Correct the cursor style of increment and decrement buttons in Chrome.
380
+ */
381
+
382
+ [type="number"]::-webkit-inner-spin-button,
383
+ [type="number"]::-webkit-outer-spin-button {
384
+ height: auto;
385
+ }
386
+
387
+ /**
388
+ * 1. Correct the odd appearance in Chrome and Safari.
389
+ * 2. Correct the outline style in Safari.
390
+ */
391
+
392
+ [type="search"] {
393
+ -webkit-appearance: textfield; /* 1 */
394
+ outline-offset: -2px; /* 2 */
395
+ }
396
+
397
+ /**
398
+ * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
399
+ */
400
+
401
+ [type="search"]::-webkit-search-cancel-button,
402
+ [type="search"]::-webkit-search-decoration {
403
+ -webkit-appearance: none;
404
+ }
405
+
406
+ /**
407
+ * Correct the text style of placeholders in Chrome, Edge, and Safari.
408
+ */
409
+
410
+ ::-webkit-input-placeholder {
411
+ color: inherit;
412
+ opacity: 0.54;
413
+ }
414
+
415
+ /**
416
+ * 1. Correct the inability to style clickable types in iOS and Safari.
417
+ * 2. Change font properties to `inherit` in Safari.
418
+ */
419
+
420
+ ::-webkit-file-upload-button {
421
+ -webkit-appearance: button; /* 1 */
422
+ font: inherit; /* 2 */
423
+ }
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+
4
+ @import "normalize.css";
5
+ @import "barbs";
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * enquire.js v2.1.2 - Awesome Media Queries in JavaScript
3
+ * Copyright (c) 2014 Nick Williams - http://wicky.nillia.ms/enquire.js
4
+ * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
+ */
6
+
7
+ !function(a,b,c){var d=window.matchMedia;"undefined"!=typeof module&&module.exports?module.exports=c(d):"function"==typeof define&&define.amd?define(function(){return b[a]=c(d)}):b[a]=c(d)}("enquire",this,function(a){"use strict";function b(a,b){var c,d=0,e=a.length;for(d;e>d&&(c=b(a[d],d),c!==!1);d++);}function c(a){return"[object Array]"===Object.prototype.toString.apply(a)}function d(a){return"function"==typeof a}function e(a){this.options=a,!a.deferSetup&&this.setup()}function f(b,c){this.query=b,this.isUnconditional=c,this.handlers=[],this.mql=a(b);var d=this;this.listener=function(a){d.mql=a,d.assess()},this.mql.addListener(this.listener)}function g(){if(!a)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!a("only all").matches}return e.prototype={setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(a){return this.options===a||this.options.match===a}},f.prototype={addHandler:function(a){var b=new e(a);this.handlers.push(b),this.matches()&&b.on()},removeHandler:function(a){var c=this.handlers;b(c,function(b,d){return b.equals(a)?(b.destroy(),!c.splice(d,1)):void 0})},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){b(this.handlers,function(a){a.destroy()}),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var a=this.matches()?"on":"off";b(this.handlers,function(b){b[a]()})}},g.prototype={register:function(a,e,g){var h=this.queries,i=g&&this.browserIsIncapable;return h[a]||(h[a]=new f(a,i)),d(e)&&(e={match:e}),c(e)||(e=[e]),b(e,function(b){d(b)&&(b={match:b}),h[a].addHandler(b)}),this},unregister:function(a,b){var c=this.queries[a];return c&&(b?c.removeHandler(b):(c.clear(),delete this.queries[a])),this}},new g});