jekyll-theme-woforo 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +690 -0
  3. data/{LICENSE → LICENSE.txt} +5 -5
  4. data/README.md +128 -19
  5. data/_includes/analytics-providers/custom.html +3 -0
  6. data/_includes/analytics-providers/google-universal.html +9 -0
  7. data/_includes/analytics-providers/google.html +11 -0
  8. data/_includes/analytics.html +12 -0
  9. data/_includes/archive-single.html +38 -0
  10. data/_includes/author-profile-custom-links.html +7 -0
  11. data/_includes/author-profile.html +241 -0
  12. data/_includes/base_path +5 -0
  13. data/_includes/breadcrumbs.html +39 -0
  14. data/_includes/browser-upgrade.html +3 -0
  15. data/_includes/category-list.html +26 -0
  16. data/_includes/comment.html +22 -0
  17. data/_includes/comments-providers/custom.html +3 -0
  18. data/_includes/comments-providers/discourse.html +13 -0
  19. data/_includes/comments-providers/disqus.html +22 -0
  20. data/_includes/comments-providers/facebook.html +8 -0
  21. data/_includes/comments-providers/google-plus.html +2 -0
  22. data/_includes/comments-providers/scripts.html +18 -0
  23. data/_includes/comments-providers/staticman.html +42 -0
  24. data/_includes/comments.html +80 -0
  25. data/_includes/feature_row +50 -0
  26. data/_includes/figure +12 -0
  27. data/_includes/footer.html +22 -0
  28. data/_includes/footer/custom.html +3 -0
  29. data/_includes/gallery +47 -0
  30. data/_includes/group-by-array +47 -0
  31. data/_includes/head.html +19 -9
  32. data/_includes/head/custom.html +5 -0
  33. data/_includes/masthead.html +21 -0
  34. data/_includes/nav_list +47 -0
  35. data/_includes/page__hero.html +53 -0
  36. data/_includes/page__taxonomy.html +7 -0
  37. data/_includes/paginator.html +68 -0
  38. data/_includes/post_pagination.html +14 -0
  39. data/_includes/read-time.html +15 -0
  40. data/_includes/scripts.html +4 -0
  41. data/_includes/seo.html +145 -0
  42. data/_includes/sidebar.html +23 -0
  43. data/_includes/social-share.html +13 -0
  44. data/_includes/tag-list.html +26 -0
  45. data/_includes/toc +7 -0
  46. data/_layouts/archive-taxonomy.html +15 -0
  47. data/_layouts/archive.html +24 -0
  48. data/_layouts/compress.html +10 -0
  49. data/_layouts/default.html +25 -5
  50. data/_layouts/home.html +11 -0
  51. data/_layouts/single.html +74 -0
  52. data/_layouts/splash.html +20 -0
  53. data/_sass/_animations.scss +21 -0
  54. data/_sass/_archive.scss +238 -0
  55. data/_sass/_base.scss +315 -0
  56. data/_sass/_buttons.scss +153 -0
  57. data/_sass/_footer.scss +80 -0
  58. data/_sass/_forms.scss +391 -0
  59. data/_sass/_masthead.scss +53 -0
  60. data/_sass/_mixins.scss +53 -0
  61. data/_sass/_navigation.scss +544 -0
  62. data/_sass/_notices.scss +99 -0
  63. data/_sass/_page.scss +401 -0
  64. data/_sass/_print.scss +18 -0
  65. data/_sass/_reset.scss +187 -0
  66. data/_sass/_sidebar.scss +231 -0
  67. data/_sass/_syntax.scss +146 -0
  68. data/_sass/_tables.scss +38 -0
  69. data/_sass/_utilities.scss +470 -0
  70. data/_sass/_variables.scss +128 -0
  71. data/_sass/vendor/breakpoint/_breakpoint.scss +114 -0
  72. data/_sass/vendor/breakpoint/_context.scss +95 -0
  73. data/_sass/vendor/breakpoint/_helpers.scss +151 -0
  74. data/_sass/vendor/breakpoint/_legacy-settings.scss +50 -0
  75. data/_sass/vendor/breakpoint/_no-query.scss +15 -0
  76. data/_sass/vendor/breakpoint/_parsers.scss +215 -0
  77. data/_sass/vendor/breakpoint/_respond-to.scss +82 -0
  78. data/_sass/vendor/breakpoint/_settings.scss +71 -0
  79. data/_sass/vendor/breakpoint/parsers/_double.scss +33 -0
  80. data/_sass/vendor/breakpoint/parsers/_query.scss +82 -0
  81. data/_sass/vendor/breakpoint/parsers/_resolution.scss +31 -0
  82. data/_sass/vendor/breakpoint/parsers/_single.scss +26 -0
  83. data/_sass/vendor/breakpoint/parsers/_triple.scss +36 -0
  84. data/_sass/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  85. data/_sass/vendor/breakpoint/parsers/double/_default.scss +22 -0
  86. data/_sass/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  87. data/_sass/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  88. data/_sass/vendor/breakpoint/parsers/single/_default.scss +13 -0
  89. data/_sass/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  90. data/_sass/vendor/font-awesome/_animated.scss +34 -0
  91. data/_sass/vendor/font-awesome/_bordered-pulled.scss +25 -0
  92. data/_sass/vendor/font-awesome/_core.scss +12 -0
  93. data/_sass/vendor/font-awesome/_fixed-width.scss +6 -0
  94. data/_sass/vendor/font-awesome/_font-awesome.scss +18 -0
  95. data/_sass/vendor/font-awesome/_icons.scss +789 -0
  96. data/_sass/vendor/font-awesome/_larger.scss +13 -0
  97. data/_sass/vendor/font-awesome/_list.scss +19 -0
  98. data/_sass/vendor/font-awesome/_mixins.scss +60 -0
  99. data/_sass/vendor/font-awesome/_path.scss +15 -0
  100. data/_sass/vendor/font-awesome/_rotated-flipped.scss +20 -0
  101. data/_sass/vendor/font-awesome/_screen-reader.scss +5 -0
  102. data/_sass/vendor/font-awesome/_stacked.scss +20 -0
  103. data/_sass/vendor/font-awesome/_variables.scss +800 -0
  104. data/_sass/vendor/magnific-popup/_magnific-popup.scss +649 -0
  105. data/_sass/vendor/magnific-popup/_settings.scss +46 -0
  106. data/_sass/vendor/susy/_su.scss +4 -0
  107. data/_sass/vendor/susy/_susy.scss +4 -0
  108. data/_sass/vendor/susy/_susyone.scss +4 -0
  109. data/_sass/vendor/susy/susy/_su.scss +7 -0
  110. data/_sass/vendor/susy/susy/language/_susy.scss +24 -0
  111. data/_sass/vendor/susy/susy/language/_susyone.scss +13 -0
  112. data/_sass/vendor/susy/susy/language/susy/_background.scss +385 -0
  113. data/_sass/vendor/susy/susy/language/susy/_bleed.scss +200 -0
  114. data/_sass/vendor/susy/susy/language/susy/_box-sizing.scss +47 -0
  115. data/_sass/vendor/susy/susy/language/susy/_breakpoint-plugin.scss +185 -0
  116. data/_sass/vendor/susy/susy/language/susy/_container.scss +81 -0
  117. data/_sass/vendor/susy/susy/language/susy/_context.scss +36 -0
  118. data/_sass/vendor/susy/susy/language/susy/_gallery.scss +94 -0
  119. data/_sass/vendor/susy/susy/language/susy/_grids.scss +64 -0
  120. data/_sass/vendor/susy/susy/language/susy/_gutters.scss +154 -0
  121. data/_sass/vendor/susy/susy/language/susy/_isolate.scss +77 -0
  122. data/_sass/vendor/susy/susy/language/susy/_margins.scss +94 -0
  123. data/_sass/vendor/susy/susy/language/susy/_padding.scss +74 -0
  124. data/_sass/vendor/susy/susy/language/susy/_rows.scss +138 -0
  125. data/_sass/vendor/susy/susy/language/susy/_settings.scss +216 -0
  126. data/_sass/vendor/susy/susy/language/susy/_span.scss +163 -0
  127. data/_sass/vendor/susy/susy/language/susy/_validation.scss +16 -0
  128. data/_sass/vendor/susy/susy/language/susyone/_background.scss +18 -0
  129. data/_sass/vendor/susy/susy/language/susyone/_functions.scss +377 -0
  130. data/_sass/vendor/susy/susy/language/susyone/_grid.scss +312 -0
  131. data/_sass/vendor/susy/susy/language/susyone/_isolation.scss +51 -0
  132. data/_sass/vendor/susy/susy/language/susyone/_margin.scss +93 -0
  133. data/_sass/vendor/susy/susy/language/susyone/_media.scss +105 -0
  134. data/_sass/vendor/susy/susy/language/susyone/_padding.scss +92 -0
  135. data/_sass/vendor/susy/susy/language/susyone/_settings.scss +60 -0
  136. data/_sass/vendor/susy/susy/output/_float.scss +9 -0
  137. data/_sass/vendor/susy/susy/output/_shared.scss +15 -0
  138. data/_sass/vendor/susy/susy/output/_support.scss +9 -0
  139. data/_sass/vendor/susy/susy/output/float/_container.scss +16 -0
  140. data/_sass/vendor/susy/susy/output/float/_end.scss +40 -0
  141. data/_sass/vendor/susy/susy/output/float/_isolate.scss +22 -0
  142. data/_sass/vendor/susy/susy/output/float/_span.scss +35 -0
  143. data/_sass/vendor/susy/susy/output/shared/_background.scss +26 -0
  144. data/_sass/vendor/susy/susy/output/shared/_container.scss +21 -0
  145. data/_sass/vendor/susy/susy/output/shared/_direction.scss +42 -0
  146. data/_sass/vendor/susy/susy/output/shared/_inspect.scss +25 -0
  147. data/_sass/vendor/susy/susy/output/shared/_margins.scss +23 -0
  148. data/_sass/vendor/susy/susy/output/shared/_output.scss +14 -0
  149. data/_sass/vendor/susy/susy/output/shared/_padding.scss +23 -0
  150. data/_sass/vendor/susy/susy/output/support/_background.scss +58 -0
  151. data/_sass/vendor/susy/susy/output/support/_box-sizing.scss +19 -0
  152. data/_sass/vendor/susy/susy/output/support/_clearfix.scss +18 -0
  153. data/_sass/vendor/susy/susy/output/support/_prefix.scss +19 -0
  154. data/_sass/vendor/susy/susy/output/support/_rem.scss +22 -0
  155. data/_sass/vendor/susy/susy/output/support/_support.scss +85 -0
  156. data/_sass/vendor/susy/susy/su/_grid.scss +103 -0
  157. data/_sass/vendor/susy/susy/su/_settings.scss +73 -0
  158. data/_sass/vendor/susy/susy/su/_utilities.scss +111 -0
  159. data/_sass/vendor/susy/susy/su/_validation.scss +57 -0
  160. data/assets/css/main.scss +79 -0
  161. data/assets/fonts/FontAwesome.otf +0 -0
  162. data/assets/fonts/fontawesome-webfont.eot +0 -0
  163. data/assets/fonts/fontawesome-webfont.svg +2671 -0
  164. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  165. data/assets/fonts/fontawesome-webfont.woff +0 -0
  166. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  167. data/assets/js/_main.js +100 -0
  168. data/assets/js/main.min.js +5 -0
  169. data/assets/js/plugins/jquery.fitvids.js +82 -0
  170. data/assets/js/plugins/jquery.greedy-navigation.js +72 -0
  171. data/assets/js/plugins/jquery.magnific-popup.js +2049 -0
  172. data/assets/js/plugins/jquery.smooth-scroll.min.js +8 -0
  173. data/assets/js/plugins/stickyfill.min.js +8 -0
  174. data/assets/js/vendor/jquery/jquery-1.12.4.min.js +5 -0
  175. metadata +243 -16
  176. data/_includes/header.html +0 -0
  177. data/_layouts/page.html +0 -5
  178. data/_layouts/post.html +0 -9
  179. data/_sass/woforo.scss +0 -24
@@ -0,0 +1,80 @@
1
+ /* ==========================================================================
2
+ FOOTER
3
+ ========================================================================== */
4
+
5
+ .page__footer {
6
+ @include full();
7
+ @include clearfix;
8
+ /* sticky footer fix start */
9
+ position: absolute;
10
+ bottom: 0;
11
+ width: 100%;
12
+ clear: both;
13
+ height: auto;
14
+ /* sticky footer fix end */
15
+ margin-top: 3em;
16
+ color: mix(#fff, $gray, 25%);
17
+ -webkit-animation: intro 0.3s both;
18
+ animation: intro 0.3s both;
19
+ -webkit-animation-delay: 0.45s;
20
+ animation-delay: 0.45s;
21
+ background-color: $lighter-gray;
22
+ border-top: 1px solid $light-gray;
23
+
24
+ footer {
25
+ @include container;
26
+ @include clearfix;
27
+ margin-top: 2em;
28
+ padding: 0 1em 2em;
29
+
30
+ @include breakpoint($x-large) {
31
+ max-width: $x-large;
32
+ }
33
+ }
34
+
35
+ a {
36
+ color: inherit;
37
+ text-decoration: none;
38
+
39
+ &:hover {
40
+ text-decoration: underline;
41
+ }
42
+ }
43
+
44
+ .fa {
45
+ color: mix(#fff, $gray, 25%);
46
+ }
47
+ }
48
+
49
+ .page__footer-copyright {
50
+ font-family: $global-font-family;
51
+ font-size: $type-size-7;
52
+ }
53
+
54
+ .page__footer-follow {
55
+
56
+ ul {
57
+ margin: 0;
58
+ padding: 0;
59
+ list-style-type: none;
60
+ }
61
+
62
+ li {
63
+ display: inline-block;
64
+ padding-top: 5px;
65
+ padding-bottom: 5px;
66
+ font-family: $sans-serif-narrow;
67
+ font-size: $type-size-6;
68
+ text-transform: uppercase;
69
+ }
70
+
71
+ li + li:before {
72
+ content: "";
73
+ padding-right: 5px;
74
+ }
75
+
76
+ a {
77
+ padding-right: 10px;
78
+ font-weight: bold;
79
+ }
80
+ }
@@ -0,0 +1,391 @@
1
+ /* ==========================================================================
2
+ Forms
3
+ ========================================================================== */
4
+
5
+ form {
6
+ margin: 0 0 5px 0;
7
+
8
+ fieldset {
9
+ margin-bottom: 5px;
10
+ padding: 0;
11
+ border-width: 0;
12
+ }
13
+
14
+ legend {
15
+ display: block;
16
+ width: 100%;
17
+ margin-bottom: 5px * 2;
18
+ *margin-left: -7px;
19
+ padding: 0;
20
+ color: $text-color;
21
+ border: 0;
22
+ border-bottom: 1px solid mix(#fff, #000, 80%);
23
+ white-space: normal;
24
+ }
25
+
26
+ p {
27
+ margin-bottom: 5px / 2;
28
+ }
29
+
30
+ ul {
31
+ list-style-type: none;
32
+ margin: 0 0 5px 0;
33
+ padding: 0;
34
+ }
35
+
36
+ br {
37
+ display: none;
38
+ }
39
+ }
40
+
41
+ label,
42
+ input,
43
+ button,
44
+ select,
45
+ textarea {
46
+ vertical-align: baseline;
47
+ *vertical-align: middle;
48
+ }
49
+
50
+ input,
51
+ button,
52
+ select,
53
+ textarea {
54
+ box-sizing: border-box;
55
+ font-family: $sans-serif;
56
+ }
57
+
58
+ label {
59
+ display: block;
60
+ margin-bottom: 0.25em;
61
+ color: $text-color;
62
+ cursor: pointer;
63
+
64
+ small {
65
+ font-size: $type-size-6;
66
+ }
67
+
68
+ input,
69
+ textarea,
70
+ select {
71
+ display: block;
72
+ }
73
+ }
74
+
75
+ input,
76
+ textarea,
77
+ select {
78
+ display: inline-block;
79
+ width: 100%;
80
+ padding: 0.25em;
81
+ margin-bottom: 0.5em;
82
+ color: $text-color;
83
+ background-color: #fff;
84
+ border: 1px solid mix(#fff, #000, 80%);
85
+ border-radius: $border-radius;
86
+ box-shadow: $box-shadow;
87
+
88
+ &:hover {
89
+ border-color: mix(#fff, $primary-color, 50%);
90
+ }
91
+ }
92
+
93
+ .input-mini {
94
+ width: 60px;
95
+ }
96
+
97
+ .input-small {
98
+ width: 90px;
99
+ }
100
+
101
+ input[type="image"],
102
+ input[type="checkbox"],
103
+ input[type="radio"] {
104
+ width: auto;
105
+ height: auto;
106
+ padding: 0;
107
+ margin: 3px 0;
108
+ *margin-top: 0;
109
+ line-height: normal;
110
+ cursor: pointer;
111
+ border-radius: 0;
112
+ border: 0 \9;
113
+ }
114
+
115
+ input[type="checkbox"],
116
+ input[type="radio"] {
117
+ box-sizing: border-box;
118
+ padding: 0;
119
+ *width: 13px;
120
+ *height: 13px;
121
+ }
122
+
123
+ input[type="image"] {
124
+ border: 0;
125
+ box-shadow: none;
126
+ }
127
+
128
+ input[type="file"] {
129
+ width: auto;
130
+ padding: initial;
131
+ line-height: initial;
132
+ border: initial;
133
+ background-color: transparent;
134
+ background-color: initial;
135
+ box-shadow: none;
136
+ }
137
+
138
+ input[type="button"],
139
+ input[type="reset"],
140
+ input[type="submit"] {
141
+ width: auto;
142
+ height: auto;
143
+ cursor: pointer;
144
+ *overflow: visible;
145
+ }
146
+
147
+ select,
148
+ input[type="file"] {
149
+ *margin-top: 4px;
150
+ }
151
+
152
+ select {
153
+ width: auto;
154
+ background-color: #fff;
155
+ }
156
+
157
+ select[multiple],
158
+ select[size] {
159
+ height: auto;
160
+ }
161
+
162
+ textarea {
163
+ resize: vertical;
164
+ height: auto;
165
+ overflow: auto;
166
+ vertical-align: top;
167
+ }
168
+
169
+ input[type="hidden"] {
170
+ display: none;
171
+ }
172
+
173
+ .form {
174
+ position: relative;
175
+ }
176
+
177
+ .radio,
178
+ .checkbox {
179
+ padding-left: 18px;
180
+ font-weight: normal;
181
+ }
182
+
183
+ .radio input[type="radio"],
184
+ .checkbox input[type="checkbox"] {
185
+ float: left;
186
+ margin-left: -18px;
187
+ }
188
+
189
+ .radio.inline,
190
+ .checkbox.inline {
191
+ display: inline-block;
192
+ padding-top: 5px;
193
+ margin-bottom: 0;
194
+ vertical-align: middle;
195
+ }
196
+
197
+ .radio.inline + .radio.inline,
198
+ .checkbox.inline + .checkbox.inline {
199
+ margin-left: 10px;
200
+ }
201
+
202
+
203
+ /*
204
+ Disabled state
205
+ ========================================================================== */
206
+
207
+ input[disabled],
208
+ select[disabled],
209
+ textarea[disabled],
210
+ input[readonly],
211
+ select[readonly],
212
+ textarea[readonly] {
213
+ opacity: 0.5;
214
+ cursor: not-allowed;
215
+ }
216
+
217
+
218
+ /*
219
+ Focus & active state
220
+ ========================================================================== */
221
+
222
+ input:focus,
223
+ textarea:focus {
224
+ border-color: $primary-color;
225
+ outline: 0;
226
+ outline: thin dotted \9;
227
+ }
228
+
229
+ input[type="file"]:focus,
230
+ input[type="radio"]:focus,
231
+ input[type="checkbox"]:focus,
232
+ select:focus {
233
+ box-shadow: none;
234
+ }
235
+
236
+
237
+ /*
238
+ Help text
239
+ ========================================================================== */
240
+
241
+ .help-block,
242
+ .help-inline {
243
+ color: $info-color;
244
+ }
245
+
246
+ .help-block {
247
+ display: block;
248
+ margin-bottom: 1em;
249
+ line-height: 1em;
250
+ }
251
+
252
+ .help-inline {
253
+ display: inline-block;
254
+ vertical-align: middle;
255
+ padding-left: 5px;
256
+ }
257
+
258
+
259
+ /*
260
+ .form-inline
261
+ ========================================================================== */
262
+
263
+ .form-inline input,
264
+ .form-inline textarea,
265
+ .form-inline select {
266
+ display: inline-block;
267
+ margin-bottom: 0;
268
+ }
269
+
270
+ .form-inline label {
271
+ display: inline-block;
272
+ }
273
+
274
+ .form-inline .radio,
275
+ .form-inline .checkbox,
276
+ .form-inline .radio {
277
+ padding-left: 0;
278
+ margin-bottom: 0;
279
+ vertical-align: middle;
280
+ }
281
+
282
+ .form-inline .radio input[type="radio"],
283
+ .form-inline .checkbox input[type="checkbox"] {
284
+ float: left;
285
+ margin-left: 0;
286
+ margin-right: 3px; }
287
+
288
+
289
+ /*
290
+ .form-search
291
+ ========================================================================== */
292
+
293
+ .form-search input,
294
+ .form-search textarea,
295
+ .form-search select {
296
+ display: inline-block;
297
+ margin-bottom: 0;
298
+ }
299
+
300
+ .form-search .search-query {
301
+ padding-left: 14px;
302
+ padding-right: 14px;
303
+ margin-bottom: 0;
304
+ border-radius: 14px;
305
+ }
306
+
307
+ .form-search label {
308
+ display: inline-block;
309
+ }
310
+
311
+ .form-search .radio,
312
+ .form-search .checkbox,
313
+ .form-inline .radio {
314
+ padding-left: 0;
315
+ margin-bottom: 0;
316
+ vertical-align: middle;
317
+ }
318
+
319
+ .form-search .radio input[type="radio"],
320
+ .form-search .checkbox input[type="checkbox"] {
321
+ float: left;
322
+ margin-left: 0;
323
+ margin-right: 3px;
324
+ }
325
+
326
+
327
+ /*
328
+ .form--loading
329
+ ========================================================================== */
330
+
331
+ .form--loading:before {
332
+ content: '';
333
+ }
334
+
335
+ .form--loading .form__spinner {
336
+ display: block;
337
+ }
338
+
339
+ .form:before {
340
+ position: absolute;
341
+ top: 0;
342
+ left: 0;
343
+ width: 100%;
344
+ height: 100%;
345
+ background-color: rgba(255, 255, 255, 0.7);
346
+ z-index: 10;
347
+ }
348
+
349
+ .form__spinner {
350
+ display: none;
351
+ position: absolute;
352
+ top: 50%;
353
+ left: 50%;
354
+ z-index: 11;
355
+ }
356
+
357
+
358
+
359
+ /*
360
+ Google search form
361
+ ========================================================================== */
362
+
363
+ #goog-fixurl {
364
+ ul {
365
+ list-style: none;
366
+ margin-left: 0;
367
+ padding-left: 0;
368
+ li {
369
+ list-style-type: none;
370
+ }
371
+ }
372
+ }
373
+
374
+ #goog-wm-qt {
375
+ width: auto;
376
+ margin-right: 10px;
377
+ margin-bottom: 20px;
378
+ padding: 8px 20px;
379
+ display: inline-block;
380
+ font-size: $type-size-6;
381
+ background-color: #fff;
382
+ color: #000;
383
+ border-width: 2px !important;
384
+ border-style: solid !important;
385
+ border-color: lighten(#000,50);
386
+ border-radius: $border-radius;
387
+ }
388
+
389
+ #goog-wm-sb {
390
+ @extend .btn;
391
+ }