soffes-blog-jekyll 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +6 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +68 -0
  7. data/Rakefile +2 -0
  8. data/_includes/footer.html +4 -0
  9. data/_includes/head.html +13 -0
  10. data/_includes/header.html +5 -0
  11. data/_layouts/default.html +13 -0
  12. data/_layouts/home.html +21 -0
  13. data/_layouts/page.html +5 -0
  14. data/_layouts/post.html +22 -0
  15. data/_sass/application.scss +271 -0
  16. data/_sass/bourbon/_bourbon-deprecated-upcoming.scss +411 -0
  17. data/_sass/bourbon/_bourbon.scss +87 -0
  18. data/_sass/bourbon/addons/_border-color.scss +26 -0
  19. data/_sass/bourbon/addons/_border-radius.scss +48 -0
  20. data/_sass/bourbon/addons/_border-style.scss +25 -0
  21. data/_sass/bourbon/addons/_border-width.scss +25 -0
  22. data/_sass/bourbon/addons/_buttons.scss +64 -0
  23. data/_sass/bourbon/addons/_clearfix.scss +25 -0
  24. data/_sass/bourbon/addons/_ellipsis.scss +30 -0
  25. data/_sass/bourbon/addons/_font-stacks.scss +31 -0
  26. data/_sass/bourbon/addons/_hide-text.scss +27 -0
  27. data/_sass/bourbon/addons/_margin.scss +26 -0
  28. data/_sass/bourbon/addons/_padding.scss +26 -0
  29. data/_sass/bourbon/addons/_position.scss +48 -0
  30. data/_sass/bourbon/addons/_prefixer.scss +66 -0
  31. data/_sass/bourbon/addons/_retina-image.scss +25 -0
  32. data/_sass/bourbon/addons/_size.scss +51 -0
  33. data/_sass/bourbon/addons/_text-inputs.scss +112 -0
  34. data/_sass/bourbon/addons/_timing-functions.scss +34 -0
  35. data/_sass/bourbon/addons/_triangle.scss +63 -0
  36. data/_sass/bourbon/addons/_word-wrap.scss +29 -0
  37. data/_sass/bourbon/css3/_animation.scss +43 -0
  38. data/_sass/bourbon/css3/_appearance.scss +3 -0
  39. data/_sass/bourbon/css3/_backface-visibility.scss +3 -0
  40. data/_sass/bourbon/css3/_background-image.scss +42 -0
  41. data/_sass/bourbon/css3/_background.scss +55 -0
  42. data/_sass/bourbon/css3/_border-image.scss +59 -0
  43. data/_sass/bourbon/css3/_calc.scss +4 -0
  44. data/_sass/bourbon/css3/_columns.scss +47 -0
  45. data/_sass/bourbon/css3/_filter.scss +4 -0
  46. data/_sass/bourbon/css3/_flex-box.scss +289 -0
  47. data/_sass/bourbon/css3/_font-face.scss +24 -0
  48. data/_sass/bourbon/css3/_font-feature-settings.scss +4 -0
  49. data/_sass/bourbon/css3/_hidpi-media-query.scss +10 -0
  50. data/_sass/bourbon/css3/_hyphens.scss +4 -0
  51. data/_sass/bourbon/css3/_image-rendering.scss +14 -0
  52. data/_sass/bourbon/css3/_keyframes.scss +36 -0
  53. data/_sass/bourbon/css3/_linear-gradient.scss +38 -0
  54. data/_sass/bourbon/css3/_perspective.scss +8 -0
  55. data/_sass/bourbon/css3/_placeholder.scss +8 -0
  56. data/_sass/bourbon/css3/_radial-gradient.scss +39 -0
  57. data/_sass/bourbon/css3/_selection.scss +42 -0
  58. data/_sass/bourbon/css3/_text-decoration.scss +19 -0
  59. data/_sass/bourbon/css3/_transform.scss +15 -0
  60. data/_sass/bourbon/css3/_transition.scss +71 -0
  61. data/_sass/bourbon/css3/_user-select.scss +3 -0
  62. data/_sass/bourbon/functions/_assign-inputs.scss +11 -0
  63. data/_sass/bourbon/functions/_contains-falsy.scss +20 -0
  64. data/_sass/bourbon/functions/_contains.scss +26 -0
  65. data/_sass/bourbon/functions/_is-length.scss +11 -0
  66. data/_sass/bourbon/functions/_is-light.scss +21 -0
  67. data/_sass/bourbon/functions/_is-number.scss +11 -0
  68. data/_sass/bourbon/functions/_is-size.scss +13 -0
  69. data/_sass/bourbon/functions/_modular-scale.scss +69 -0
  70. data/_sass/bourbon/functions/_px-to-em.scss +13 -0
  71. data/_sass/bourbon/functions/_px-to-rem.scss +15 -0
  72. data/_sass/bourbon/functions/_shade.scss +24 -0
  73. data/_sass/bourbon/functions/_strip-units.scss +17 -0
  74. data/_sass/bourbon/functions/_tint.scss +24 -0
  75. data/_sass/bourbon/functions/_transition-property-name.scss +22 -0
  76. data/_sass/bourbon/functions/_unpack.scss +27 -0
  77. data/_sass/bourbon/helpers/_convert-units.scss +15 -0
  78. data/_sass/bourbon/helpers/_directional-values.scss +96 -0
  79. data/_sass/bourbon/helpers/_font-source-declaration.scss +43 -0
  80. data/_sass/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  81. data/_sass/bourbon/helpers/_linear-angle-parser.scss +25 -0
  82. data/_sass/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  83. data/_sass/bourbon/helpers/_linear-positions-parser.scss +61 -0
  84. data/_sass/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  85. data/_sass/bourbon/helpers/_radial-arg-parser.scss +69 -0
  86. data/_sass/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  87. data/_sass/bourbon/helpers/_radial-positions-parser.scss +18 -0
  88. data/_sass/bourbon/helpers/_render-gradients.scss +26 -0
  89. data/_sass/bourbon/helpers/_shape-size-stripper.scss +10 -0
  90. data/_sass/bourbon/helpers/_str-to-num.scss +50 -0
  91. data/_sass/bourbon/settings/_asset-pipeline.scss +7 -0
  92. data/_sass/bourbon/settings/_prefixer.scss +9 -0
  93. data/_sass/bourbon/settings/_px-to-em.scss +1 -0
  94. data/_sass/components/code.scss +89 -0
  95. data/_sass/components/pagination.scss +50 -0
  96. data/_sass/components/reset.scss +54 -0
  97. data/_sass/globals/variables.scss +25 -0
  98. data/_sass/sections/blog.scss +186 -0
  99. data/_sass/sections/error.scss +6 -0
  100. data/assets/application.js +38 -0
  101. data/assets/fonts.css +22 -0
  102. data/assets/main.scss +5 -0
  103. data/bin/console +14 -0
  104. data/bin/setup +8 -0
  105. data/lib/soffes/blog/jekyll.rb +9 -0
  106. data/lib/soffes/blog/jekyll/version.rb +7 -0
  107. data/soffes-blog-jekyll.gemspec +34 -0
  108. metadata +180 -0
@@ -0,0 +1,59 @@
1
+ @mixin border-image($borders...) {
2
+ $webkit-borders: ();
3
+ $spec-borders: ();
4
+
5
+ @each $border in $borders {
6
+ $webkit-border: ();
7
+ $spec-border: ();
8
+ $border-type: type-of($border);
9
+
10
+ @if $border-type == string or list {
11
+ $border-str: if($border-type == list, nth($border, 1), $border);
12
+
13
+ $url-str: str-slice($border-str, 0, 3);
14
+ $gradient-type: str-slice($border-str, 0, 6);
15
+
16
+ @if $url-str == "url" {
17
+ $webkit-border: $border;
18
+ $spec-border: $border;
19
+ }
20
+
21
+ @else if $gradient-type == "linear" {
22
+ $gradients: _linear-gradient-parser("#{$border}");
23
+ $webkit-border: map-get($gradients, webkit-image);
24
+ $spec-border: map-get($gradients, spec-image);
25
+ }
26
+
27
+ @else if $gradient-type == "radial" {
28
+ $gradients: _radial-gradient-parser("#{$border}");
29
+ $webkit-border: map-get($gradients, webkit-image);
30
+ $spec-border: map-get($gradients, spec-image);
31
+ }
32
+
33
+ @else {
34
+ $webkit-border: $border;
35
+ $spec-border: $border;
36
+ }
37
+ }
38
+
39
+ @else {
40
+ $webkit-border: $border;
41
+ $spec-border: $border;
42
+ }
43
+
44
+ $webkit-borders: append($webkit-borders, $webkit-border, comma);
45
+ $spec-borders: append($spec-borders, $spec-border, comma);
46
+ }
47
+
48
+ -webkit-border-image: $webkit-borders;
49
+ border-image: $spec-borders;
50
+ border-style: solid;
51
+ }
52
+
53
+ //Examples:
54
+ // @include border-image(url("image.png"));
55
+ // @include border-image(url("image.png") 20 stretch);
56
+ // @include border-image(linear-gradient(45deg, orange, yellow));
57
+ // @include border-image(linear-gradient(45deg, orange, yellow) stretch);
58
+ // @include border-image(linear-gradient(45deg, orange, yellow) 20 30 40 50 stretch round);
59
+ // @include border-image(radial-gradient(top, cover, orange, yellow, orange));
@@ -0,0 +1,4 @@
1
+ @mixin calc($property, $value) {
2
+ #{$property}: -webkit-calc(#{$value});
3
+ #{$property}: calc(#{$value});
4
+ }
@@ -0,0 +1,47 @@
1
+ @mixin columns($arg: auto) {
2
+ // <column-count> || <column-width>
3
+ @include prefixer(columns, $arg, webkit moz spec);
4
+ }
5
+
6
+ @mixin column-count($int: auto) {
7
+ // auto || integer
8
+ @include prefixer(column-count, $int, webkit moz spec);
9
+ }
10
+
11
+ @mixin column-gap($length: normal) {
12
+ // normal || length
13
+ @include prefixer(column-gap, $length, webkit moz spec);
14
+ }
15
+
16
+ @mixin column-fill($arg: auto) {
17
+ // auto || length
18
+ @include prefixer(column-fill, $arg, webkit moz spec);
19
+ }
20
+
21
+ @mixin column-rule($arg) {
22
+ // <border-width> || <border-style> || <color>
23
+ @include prefixer(column-rule, $arg, webkit moz spec);
24
+ }
25
+
26
+ @mixin column-rule-color($color) {
27
+ @include prefixer(column-rule-color, $color, webkit moz spec);
28
+ }
29
+
30
+ @mixin column-rule-style($style: none) {
31
+ // none | hidden | dashed | dotted | double | groove | inset | inset | outset | ridge | solid
32
+ @include prefixer(column-rule-style, $style, webkit moz spec);
33
+ }
34
+
35
+ @mixin column-rule-width ($width: none) {
36
+ @include prefixer(column-rule-width, $width, webkit moz spec);
37
+ }
38
+
39
+ @mixin column-span($arg: none) {
40
+ // none || all
41
+ @include prefixer(column-span, $arg, webkit moz spec);
42
+ }
43
+
44
+ @mixin column-width($length: auto) {
45
+ // auto || length
46
+ @include prefixer(column-width, $length, webkit moz spec);
47
+ }
@@ -0,0 +1,4 @@
1
+ @mixin filter($function: none) {
2
+ // <filter-function> [<filter-function]* | none
3
+ @include prefixer(filter, $function, webkit spec);
4
+ }
@@ -0,0 +1,289 @@
1
+ // CSS3 Flexible Box Model and property defaults
2
+
3
+ // Custom shorthand notation for flexbox
4
+ @mixin box($orient: inline-axis, $pack: start, $align: stretch) {
5
+ @include display-box;
6
+ @include box-orient($orient);
7
+ @include box-pack($pack);
8
+ @include box-align($align);
9
+ }
10
+
11
+ @mixin display-box {
12
+ display: -webkit-box;
13
+ display: -moz-box;
14
+ display: -ms-flexbox; // IE 10
15
+ display: box;
16
+ }
17
+
18
+ @mixin box-orient($orient: inline-axis) {
19
+ // horizontal|vertical|inline-axis|block-axis|inherit
20
+ @include prefixer(box-orient, $orient, webkit moz spec);
21
+ }
22
+
23
+ @mixin box-pack($pack: start) {
24
+ // start|end|center|justify
25
+ @include prefixer(box-pack, $pack, webkit moz spec);
26
+ -ms-flex-pack: $pack; // IE 10
27
+ }
28
+
29
+ @mixin box-align($align: stretch) {
30
+ // start|end|center|baseline|stretch
31
+ @include prefixer(box-align, $align, webkit moz spec);
32
+ -ms-flex-align: $align; // IE 10
33
+ }
34
+
35
+ @mixin box-direction($direction: normal) {
36
+ // normal|reverse|inherit
37
+ @include prefixer(box-direction, $direction, webkit moz spec);
38
+ -ms-flex-direction: $direction; // IE 10
39
+ }
40
+
41
+ @mixin box-lines($lines: single) {
42
+ // single|multiple
43
+ @include prefixer(box-lines, $lines, webkit moz spec);
44
+ }
45
+
46
+ @mixin box-ordinal-group($int: 1) {
47
+ @include prefixer(box-ordinal-group, $int, webkit moz spec);
48
+ -ms-flex-order: $int; // IE 10
49
+ }
50
+
51
+ @mixin box-flex($value: 0) {
52
+ @include prefixer(box-flex, $value, webkit moz spec);
53
+ -ms-flex: $value; // IE 10
54
+ }
55
+
56
+ @mixin box-flex-group($int: 1) {
57
+ @include prefixer(box-flex-group, $int, webkit moz spec);
58
+ }
59
+
60
+ // CSS3 Flexible Box Model and property defaults
61
+ // Unified attributes for 2009, 2011, and 2012 flavours.
62
+
63
+ // 2009 - display (box | inline-box)
64
+ // 2011 - display (flexbox | inline-flexbox)
65
+ // 2012 - display (flex | inline-flex)
66
+ @mixin display($value) {
67
+ // flex | inline-flex
68
+ @if $value == "flex" {
69
+ // 2009
70
+ display: -webkit-box;
71
+ display: -moz-box;
72
+ display: box;
73
+
74
+ // 2012
75
+ display: -webkit-flex;
76
+ display: -moz-flex;
77
+ display: -ms-flexbox; // 2011 (IE 10)
78
+ display: flex;
79
+ } @else if $value == "inline-flex" {
80
+ display: -webkit-inline-box;
81
+ display: -moz-inline-box;
82
+ display: inline-box;
83
+
84
+ display: -webkit-inline-flex;
85
+ display: -moz-inline-flex;
86
+ display: -ms-inline-flexbox;
87
+ display: inline-flex;
88
+ } @else {
89
+ display: $value;
90
+ }
91
+ }
92
+
93
+ // 2009 - box-flex (integer)
94
+ // 2011 - flex (decimal | width decimal)
95
+ // 2012 - flex (integer integer width)
96
+ @mixin flex($value) {
97
+
98
+ // Grab flex-grow for older browsers.
99
+ $flex-grow: nth($value, 1);
100
+
101
+ // 2009
102
+ @include prefixer(box-flex, $flex-grow, webkit moz spec);
103
+
104
+ // 2011 (IE 10), 2012
105
+ @include prefixer(flex, $value, webkit moz ms spec);
106
+ }
107
+
108
+ // 2009 - box-orient ( horizontal | vertical | inline-axis | block-axis)
109
+ // - box-direction (normal | reverse)
110
+ // 2011 - flex-direction (row | row-reverse | column | column-reverse)
111
+ // 2012 - flex-direction (row | row-reverse | column | column-reverse)
112
+ @mixin flex-direction($value: row) {
113
+
114
+ // Alt values.
115
+ $value-2009: $value;
116
+ $value-2011: $value;
117
+ $direction: "normal";
118
+
119
+ @if $value == row {
120
+ $value-2009: horizontal;
121
+ } @else if $value == "row-reverse" {
122
+ $value-2009: horizontal;
123
+ $direction: reverse;
124
+ } @else if $value == column {
125
+ $value-2009: vertical;
126
+ } @else if $value == "column-reverse" {
127
+ $value-2009: vertical;
128
+ $direction: reverse;
129
+ }
130
+
131
+ // 2009
132
+ @include prefixer(box-orient, $value-2009, webkit moz spec);
133
+ @if $direction == "reverse" {
134
+ @include prefixer(box-direction, $direction, webkit moz spec);
135
+ }
136
+
137
+ // 2012
138
+ @include prefixer(flex-direction, $value, webkit moz spec);
139
+
140
+ // 2011 (IE 10)
141
+ -ms-flex-direction: $value;
142
+ }
143
+
144
+ // 2009 - box-lines (single | multiple)
145
+ // 2011 - flex-wrap (nowrap | wrap | wrap-reverse)
146
+ // 2012 - flex-wrap (nowrap | wrap | wrap-reverse)
147
+ @mixin flex-wrap($value: nowrap) {
148
+ // Alt values
149
+ $alt-value: $value;
150
+ @if $value == nowrap {
151
+ $alt-value: single;
152
+ } @else if $value == wrap {
153
+ $alt-value: multiple;
154
+ } @else if $value == "wrap-reverse" {
155
+ $alt-value: multiple;
156
+ }
157
+
158
+ @include prefixer(box-lines, $alt-value, webkit moz spec);
159
+ @include prefixer(flex-wrap, $value, webkit moz ms spec);
160
+ }
161
+
162
+ // 2009 - TODO: parse values into flex-direction/flex-wrap
163
+ // 2011 - TODO: parse values into flex-direction/flex-wrap
164
+ // 2012 - flex-flow (flex-direction || flex-wrap)
165
+ @mixin flex-flow($value) {
166
+ @include prefixer(flex-flow, $value, webkit moz spec);
167
+ }
168
+
169
+ // 2009 - box-ordinal-group (integer)
170
+ // 2011 - flex-order (integer)
171
+ // 2012 - order (integer)
172
+ @mixin order($int: 0) {
173
+ // 2009
174
+ @include prefixer(box-ordinal-group, $int, webkit moz spec);
175
+
176
+ // 2012
177
+ @include prefixer(order, $int, webkit moz spec);
178
+
179
+ // 2011 (IE 10)
180
+ -ms-flex-order: $int;
181
+ }
182
+
183
+ // 2012 - flex-grow (number)
184
+ @mixin flex-grow($number: 0) {
185
+ @include prefixer(flex-grow, $number, webkit moz spec);
186
+ -ms-flex-positive: $number;
187
+ }
188
+
189
+ // 2012 - flex-shrink (number)
190
+ @mixin flex-shrink($number: 1) {
191
+ @include prefixer(flex-shrink, $number, webkit moz spec);
192
+ -ms-flex-negative: $number;
193
+ }
194
+
195
+ // 2012 - flex-basis (number)
196
+ @mixin flex-basis($width: auto) {
197
+ @include prefixer(flex-basis, $width, webkit moz spec);
198
+ -ms-flex-preferred-size: $width;
199
+ }
200
+
201
+ // 2009 - box-pack (start | end | center | justify)
202
+ // 2011 - flex-pack (start | end | center | justify)
203
+ // 2012 - justify-content (flex-start | flex-end | center | space-between | space-around)
204
+ @mixin justify-content($value: flex-start) {
205
+
206
+ // Alt values.
207
+ $alt-value: $value;
208
+ @if $value == "flex-start" {
209
+ $alt-value: start;
210
+ } @else if $value == "flex-end" {
211
+ $alt-value: end;
212
+ } @else if $value == "space-between" {
213
+ $alt-value: justify;
214
+ } @else if $value == "space-around" {
215
+ $alt-value: distribute;
216
+ }
217
+
218
+ // 2009
219
+ @include prefixer(box-pack, $alt-value, webkit moz spec);
220
+
221
+ // 2012
222
+ @include prefixer(justify-content, $value, webkit moz ms o spec);
223
+
224
+ // 2011 (IE 10)
225
+ -ms-flex-pack: $alt-value;
226
+ }
227
+
228
+ // 2009 - box-align (start | end | center | baseline | stretch)
229
+ // 2011 - flex-align (start | end | center | baseline | stretch)
230
+ // 2012 - align-items (flex-start | flex-end | center | baseline | stretch)
231
+ @mixin align-items($value: stretch) {
232
+
233
+ $alt-value: $value;
234
+
235
+ @if $value == "flex-start" {
236
+ $alt-value: start;
237
+ } @else if $value == "flex-end" {
238
+ $alt-value: end;
239
+ }
240
+
241
+ // 2009
242
+ @include prefixer(box-align, $alt-value, webkit moz spec);
243
+
244
+ // 2012
245
+ @include prefixer(align-items, $value, webkit moz ms o spec);
246
+
247
+ // 2011 (IE 10)
248
+ -ms-flex-align: $alt-value;
249
+ }
250
+
251
+ // 2011 - flex-item-align (auto | start | end | center | baseline | stretch)
252
+ // 2012 - align-self (auto | flex-start | flex-end | center | baseline | stretch)
253
+ @mixin align-self($value: auto) {
254
+
255
+ $value-2011: $value;
256
+ @if $value == "flex-start" {
257
+ $value-2011: start;
258
+ } @else if $value == "flex-end" {
259
+ $value-2011: end;
260
+ }
261
+
262
+ // 2012
263
+ @include prefixer(align-self, $value, webkit moz spec);
264
+
265
+ // 2011 (IE 10)
266
+ -ms-flex-item-align: $value-2011;
267
+ }
268
+
269
+ // 2011 - flex-line-pack (start | end | center | justify | distribute | stretch)
270
+ // 2012 - align-content (flex-start | flex-end | center | space-between | space-around | stretch)
271
+ @mixin align-content($value: stretch) {
272
+
273
+ $value-2011: $value;
274
+ @if $value == "flex-start" {
275
+ $value-2011: start;
276
+ } @else if $value == "flex-end" {
277
+ $value-2011: end;
278
+ } @else if $value == "space-between" {
279
+ $value-2011: justify;
280
+ } @else if $value == "space-around" {
281
+ $value-2011: distribute;
282
+ }
283
+
284
+ // 2012
285
+ @include prefixer(align-content, $value, webkit moz spec);
286
+
287
+ // 2011 (IE 10)
288
+ -ms-flex-line-pack: $value-2011;
289
+ }
@@ -0,0 +1,24 @@
1
+ @mixin font-face(
2
+ $font-family,
3
+ $file-path,
4
+ $weight: normal,
5
+ $style: normal,
6
+ $asset-pipeline: $asset-pipeline,
7
+ $file-formats: eot woff2 woff ttf svg) {
8
+
9
+ $font-url-prefix: font-url-prefixer($asset-pipeline);
10
+
11
+ @font-face {
12
+ font-family: $font-family;
13
+ font-style: $style;
14
+ font-weight: $weight;
15
+
16
+ src: font-source-declaration(
17
+ $font-family,
18
+ $file-path,
19
+ $asset-pipeline,
20
+ $file-formats,
21
+ $font-url-prefix
22
+ );
23
+ }
24
+ }
@@ -0,0 +1,4 @@
1
+ @mixin font-feature-settings($settings...) {
2
+ @if length($settings) == 0 { $settings: none; }
3
+ @include prefixer(font-feature-settings, $settings, webkit moz ms spec);
4
+ }
@@ -0,0 +1,10 @@
1
+ // HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/)
2
+ @mixin hidpi($ratio: 1.3) {
3
+ @media only screen and (-webkit-min-device-pixel-ratio: $ratio),
4
+ only screen and (min--moz-device-pixel-ratio: $ratio),
5
+ only screen and (-o-min-device-pixel-ratio: #{$ratio}/1),
6
+ only screen and (min-resolution: round($ratio * 96dpi)),
7
+ only screen and (min-resolution: $ratio * 1dppx) {
8
+ @content;
9
+ }
10
+ }