neat-classes 0.0.1
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.
- checksums.yaml +15 -0
- data/app/assets/stylesheets/breakpoints/large.scss +341 -0
- data/app/assets/stylesheets/breakpoints/medium.scss +341 -0
- data/app/assets/stylesheets/breakpoints/small.scss +341 -0
- data/app/assets/stylesheets/neat-breakpoint-classes.scss +3 -0
- data/lib/neat-classes.rb +3 -0
- data/lib/neat-classes/engine.rb +4 -0
- metadata +63 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
YjM3ZTEyMTA0ZjRlMzE2YTZhOTgyMDliZjZlNmJjYjA4YWE0YjBkYg==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
OWMxNWM2YmY3MTRkYTY0ZTg3Yjk4ODIzOGE3ODM2ZTRhZWVhMWFiZg==
|
|
7
|
+
!binary "U0hBNTEy":
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
ZjY2MTlhYjFjOWEzZGRlMTJhMjk0MDBkNjM5M2FhOWZhNGU0MWRhNzVmNWYx
|
|
10
|
+
M2RkOTJhYjQzYjFiMGQxNzFkODE5MjlkNTdiZTUyNjNhYjRjOTI0OTY1NGJm
|
|
11
|
+
NDlmNmQ0ZWFlNTFhNjBjMTM0NjU5MDQ3M2MzNTQzZDZhNDk0OGM=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
NGNkNzhkZjlhOGIyYjk4NGU5YWMxODM4ZDQ1YTE5N2JjN2FiZTZjZTVlOTQ0
|
|
14
|
+
M2M3ZmY3MjBmODMwNjZkOTUzZDBhOTNmYTdhOWQxNDEyYWQwZGRlOGNjNmRi
|
|
15
|
+
NjBmMjYyMjE4YzRjMWVjOGUwODJhZGNmYWVlNzA0NGExNDY0OGQ=
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
@include media($large) {
|
|
2
|
+
.large-1{
|
|
3
|
+
@include span-columns(1);
|
|
4
|
+
}
|
|
5
|
+
.large-2{
|
|
6
|
+
@include span-columns(2);
|
|
7
|
+
.large-1-of-2{
|
|
8
|
+
@include span-columns(1 of 2);
|
|
9
|
+
}
|
|
10
|
+
.large-2-of-2{
|
|
11
|
+
@include span-columns(2 of 2);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.large-3{
|
|
15
|
+
@include span-columns(3);
|
|
16
|
+
.large-1-of-3{
|
|
17
|
+
@include span-columns(1 of 3);
|
|
18
|
+
}
|
|
19
|
+
.large-2-of-3{
|
|
20
|
+
@include span-columns(2 of 3);
|
|
21
|
+
}
|
|
22
|
+
.large-3-of-3{
|
|
23
|
+
@include span-columns(3 of 3);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.large-4{
|
|
27
|
+
@include span-columns(4);
|
|
28
|
+
.large-1-of-4{
|
|
29
|
+
@include span-columns(1 of 4);
|
|
30
|
+
}
|
|
31
|
+
.large-2-of-4{
|
|
32
|
+
@include span-columns(2 of 4);
|
|
33
|
+
}
|
|
34
|
+
.large-3-of-4{
|
|
35
|
+
@include span-columns(3 of 4);
|
|
36
|
+
}
|
|
37
|
+
.large-4-of-4{
|
|
38
|
+
@include span-columns(4 of 4);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.large-5{
|
|
42
|
+
@include span-columns(5);
|
|
43
|
+
.large-1-of-5{
|
|
44
|
+
@include span-columns(1 of 5);
|
|
45
|
+
}
|
|
46
|
+
.large-2-of-5{
|
|
47
|
+
@include span-columns(2 of 5);
|
|
48
|
+
}
|
|
49
|
+
.large-3-of-5{
|
|
50
|
+
@include span-columns(3 of 5);
|
|
51
|
+
}
|
|
52
|
+
.large-4-of-5{
|
|
53
|
+
@include span-columns(4 of 5);
|
|
54
|
+
}
|
|
55
|
+
.large-5-of-5{
|
|
56
|
+
@include span-columns(5 of 5);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
.large-6{
|
|
60
|
+
@include span-columns(6);
|
|
61
|
+
.large-1-of-6{
|
|
62
|
+
@include span-columns(1 of 6);
|
|
63
|
+
}
|
|
64
|
+
.large-2-of-6{
|
|
65
|
+
@include span-columns(2 of 6);
|
|
66
|
+
}
|
|
67
|
+
.large-3-of-6{
|
|
68
|
+
@include span-columns(3 of 6);
|
|
69
|
+
}
|
|
70
|
+
.large-4-of-6{
|
|
71
|
+
@include span-columns(4 of 6);
|
|
72
|
+
}
|
|
73
|
+
.large-5-of-6{
|
|
74
|
+
@include span-columns(5 of 6);
|
|
75
|
+
}
|
|
76
|
+
.large-6-of-6{
|
|
77
|
+
@include span-columns(6 of 6);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.large-7{
|
|
81
|
+
@include span-columns(7);
|
|
82
|
+
.large-1-of-7{
|
|
83
|
+
@include span-columns(1 of 7);
|
|
84
|
+
}
|
|
85
|
+
.large-2-of-7{
|
|
86
|
+
@include span-columns(2 of 7);
|
|
87
|
+
}
|
|
88
|
+
.large-3-of-7{
|
|
89
|
+
@include span-columns(3 of 7);
|
|
90
|
+
}
|
|
91
|
+
.large-4-of-7{
|
|
92
|
+
@include span-columns(4 of 7);
|
|
93
|
+
}
|
|
94
|
+
.large-5-of-7{
|
|
95
|
+
@include span-columns(5 of 7);
|
|
96
|
+
}
|
|
97
|
+
.large-6-of-7{
|
|
98
|
+
@include span-columns(6 of 7);
|
|
99
|
+
}
|
|
100
|
+
.large-7-of-7{
|
|
101
|
+
@include span-columns(7 of 7);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
.large-8{
|
|
105
|
+
@include span-columns(8);
|
|
106
|
+
.large-1-of-8{
|
|
107
|
+
@include span-columns(1 of 8);
|
|
108
|
+
}
|
|
109
|
+
.large-2-of-8{
|
|
110
|
+
@include span-columns(2 of 8);
|
|
111
|
+
}
|
|
112
|
+
.large-3-of-8{
|
|
113
|
+
@include span-columns(3 of 8);
|
|
114
|
+
}
|
|
115
|
+
.large-4-of-8{
|
|
116
|
+
@include span-columns(4 of 8);
|
|
117
|
+
}
|
|
118
|
+
.large-5-of-8{
|
|
119
|
+
@include span-columns(5 of 8);
|
|
120
|
+
}
|
|
121
|
+
.large-6-of-8{
|
|
122
|
+
@include span-columns(6 of 8);
|
|
123
|
+
}
|
|
124
|
+
.large-7-of-8{
|
|
125
|
+
@include span-columns(7 of 8);
|
|
126
|
+
}
|
|
127
|
+
.large-8-of-8{
|
|
128
|
+
@include span-columns(8 of 8);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
.large-9{
|
|
132
|
+
@include span-columns(9);
|
|
133
|
+
.large-1-of-9{
|
|
134
|
+
@include span-columns(1 of 9);
|
|
135
|
+
}
|
|
136
|
+
.large-2-of-9{
|
|
137
|
+
@include span-columns(2 of 9);
|
|
138
|
+
}
|
|
139
|
+
.large-3-of-9{
|
|
140
|
+
@include span-columns(3 of 9);
|
|
141
|
+
}
|
|
142
|
+
.large-4-of-9{
|
|
143
|
+
@include span-columns(4 of 9);
|
|
144
|
+
}
|
|
145
|
+
.large-5-of-9{
|
|
146
|
+
@include span-columns(5 of 9);
|
|
147
|
+
}
|
|
148
|
+
.large-6-of-9{
|
|
149
|
+
@include span-columns(6 of 9);
|
|
150
|
+
}
|
|
151
|
+
.large-7-of-9{
|
|
152
|
+
@include span-columns(7 of 9);
|
|
153
|
+
}
|
|
154
|
+
.large-8-of-9{
|
|
155
|
+
@include span-columns(8 of 9);
|
|
156
|
+
}
|
|
157
|
+
.large-9-of-9{
|
|
158
|
+
@include span-columns(9 of 9);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.large-10{
|
|
162
|
+
@include span-columns(10);
|
|
163
|
+
.large-1-of-10{
|
|
164
|
+
@include span-columns(1 of 10);
|
|
165
|
+
}
|
|
166
|
+
.large-2-of-10{
|
|
167
|
+
@include span-columns(2 of 10);
|
|
168
|
+
}
|
|
169
|
+
.large-3-of-10{
|
|
170
|
+
@include span-columns(3 of 10);
|
|
171
|
+
}
|
|
172
|
+
.large-4-of-10{
|
|
173
|
+
@include span-columns(4 of 10);
|
|
174
|
+
}
|
|
175
|
+
.large-5-of-10{
|
|
176
|
+
@include span-columns(5 of 10);
|
|
177
|
+
}
|
|
178
|
+
.large-6-of-10{
|
|
179
|
+
@include span-columns(6 of 10);
|
|
180
|
+
}
|
|
181
|
+
.large-7-of-10{
|
|
182
|
+
@include span-columns(7 of 10);
|
|
183
|
+
}
|
|
184
|
+
.large-8-of-10{
|
|
185
|
+
@include span-columns(8 of 10);
|
|
186
|
+
}
|
|
187
|
+
.large-9-of-10{
|
|
188
|
+
@include span-columns(9 of 10);
|
|
189
|
+
}
|
|
190
|
+
.large-10-of-10{
|
|
191
|
+
@include span-columns(10 of 10);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
.large-11{
|
|
195
|
+
@include span-columns(11);
|
|
196
|
+
.large-1-of-11{
|
|
197
|
+
@include span-columns(1 of 11);
|
|
198
|
+
}
|
|
199
|
+
.large-2-of-11{
|
|
200
|
+
@include span-columns(2 of 11);
|
|
201
|
+
}
|
|
202
|
+
.large-3-of-11{
|
|
203
|
+
@include span-columns(3 of 11);
|
|
204
|
+
}
|
|
205
|
+
.large-4-of-11{
|
|
206
|
+
@include span-columns(4 of 11);
|
|
207
|
+
}
|
|
208
|
+
.large-5-of-11{
|
|
209
|
+
@include span-columns(5 of 11);
|
|
210
|
+
}
|
|
211
|
+
.large-6-of-11{
|
|
212
|
+
@include span-columns(6 of 11);
|
|
213
|
+
}
|
|
214
|
+
.large-7-of-11{
|
|
215
|
+
@include span-columns(7 of 11);
|
|
216
|
+
}
|
|
217
|
+
.large-8-of-11{
|
|
218
|
+
@include span-columns(8 of 11);
|
|
219
|
+
}
|
|
220
|
+
.large-9-of-11{
|
|
221
|
+
@include span-columns(9 of 11);
|
|
222
|
+
}
|
|
223
|
+
.large-10-of-11{
|
|
224
|
+
@include span-columns(10 of 11);
|
|
225
|
+
}
|
|
226
|
+
.large-11-of-11{
|
|
227
|
+
@include span-columns(11 of 11);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.large-12{
|
|
231
|
+
@include span-columns(12);
|
|
232
|
+
.large-1-of-12{
|
|
233
|
+
@include span-columns(1 of 12);
|
|
234
|
+
}
|
|
235
|
+
.large-2-of-12{
|
|
236
|
+
@include span-columns(2 of 12);
|
|
237
|
+
}
|
|
238
|
+
.large-3-of-12{
|
|
239
|
+
@include span-columns(3 of 12);
|
|
240
|
+
}
|
|
241
|
+
.large-4-of-12{
|
|
242
|
+
@include span-columns(4 of 12);
|
|
243
|
+
}
|
|
244
|
+
.large-5-of-12{
|
|
245
|
+
@include span-columns(5 of 12);
|
|
246
|
+
}
|
|
247
|
+
.large-6-of-12{
|
|
248
|
+
@include span-columns(6 of 12);
|
|
249
|
+
}
|
|
250
|
+
.large-7-of-12{
|
|
251
|
+
@include span-columns(7 of 12);
|
|
252
|
+
}
|
|
253
|
+
.large-8-of-12{
|
|
254
|
+
@include span-columns(8 of 12);
|
|
255
|
+
}
|
|
256
|
+
.large-9-of-12{
|
|
257
|
+
@include span-columns(9 of 12);
|
|
258
|
+
}
|
|
259
|
+
.large-10-of-12{
|
|
260
|
+
@include span-columns(10 of 12);
|
|
261
|
+
}
|
|
262
|
+
.large-11-of-12{
|
|
263
|
+
@include span-columns(11 of 12);
|
|
264
|
+
}
|
|
265
|
+
.large-12-of-12{
|
|
266
|
+
@include span-columns(12 of 12);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
.large-push-1{
|
|
270
|
+
@include shift(1);
|
|
271
|
+
}
|
|
272
|
+
.large-pull-1{
|
|
273
|
+
@include shift(-1);
|
|
274
|
+
}
|
|
275
|
+
.large-push-2{
|
|
276
|
+
@include shift(2);
|
|
277
|
+
}
|
|
278
|
+
.large-pull-2{
|
|
279
|
+
@include shift(-2);
|
|
280
|
+
}
|
|
281
|
+
.large-push-3{
|
|
282
|
+
@include shift(3);
|
|
283
|
+
}
|
|
284
|
+
.large-pull-3{
|
|
285
|
+
@include shift(-3);
|
|
286
|
+
}
|
|
287
|
+
.large-push-4{
|
|
288
|
+
@include shift(4);
|
|
289
|
+
}
|
|
290
|
+
.large-pull-4{
|
|
291
|
+
@include shift(-4);
|
|
292
|
+
}
|
|
293
|
+
.large-push-5{
|
|
294
|
+
@include shift(5);
|
|
295
|
+
}
|
|
296
|
+
.large-pull-5{
|
|
297
|
+
@include shift(-5);
|
|
298
|
+
}
|
|
299
|
+
.large-push-6{
|
|
300
|
+
@include shift(6);
|
|
301
|
+
}
|
|
302
|
+
.large-pull-6{
|
|
303
|
+
@include shift(-6);
|
|
304
|
+
}
|
|
305
|
+
.large-push-7{
|
|
306
|
+
@include shift(7);
|
|
307
|
+
}
|
|
308
|
+
.large-pull-7{
|
|
309
|
+
@include shift(-7);
|
|
310
|
+
}
|
|
311
|
+
.large-push-8{
|
|
312
|
+
@include shift(8);
|
|
313
|
+
}
|
|
314
|
+
.large-pull-8{
|
|
315
|
+
@include shift(-8);
|
|
316
|
+
}
|
|
317
|
+
.large-push-9{
|
|
318
|
+
@include shift(9);
|
|
319
|
+
}
|
|
320
|
+
.large-pull-9{
|
|
321
|
+
@include shift(-9);
|
|
322
|
+
}
|
|
323
|
+
.large-push-10{
|
|
324
|
+
@include shift(10);
|
|
325
|
+
}
|
|
326
|
+
.large-pull-10{
|
|
327
|
+
@include shift(-10);
|
|
328
|
+
}
|
|
329
|
+
.large-push-11{
|
|
330
|
+
@include shift(11);
|
|
331
|
+
}
|
|
332
|
+
.large-pull-11{
|
|
333
|
+
@include shift(-11);
|
|
334
|
+
}
|
|
335
|
+
.large-push-12{
|
|
336
|
+
@include shift(12);
|
|
337
|
+
}
|
|
338
|
+
.large-pull-12{
|
|
339
|
+
@include shift(-12);
|
|
340
|
+
}
|
|
341
|
+
}
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
@include media($medium) {
|
|
2
|
+
.medium-1{
|
|
3
|
+
@include span-columns(1);
|
|
4
|
+
}
|
|
5
|
+
.medium-2{
|
|
6
|
+
@include span-columns(2);
|
|
7
|
+
.medium-1-of-2{
|
|
8
|
+
@include span-columns(1 of 2);
|
|
9
|
+
}
|
|
10
|
+
.medium-2-of-2{
|
|
11
|
+
@include span-columns(2 of 2);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.medium-3{
|
|
15
|
+
@include span-columns(3);
|
|
16
|
+
.medium-1-of-3{
|
|
17
|
+
@include span-columns(1 of 3);
|
|
18
|
+
}
|
|
19
|
+
.medium-2-of-3{
|
|
20
|
+
@include span-columns(2 of 3);
|
|
21
|
+
}
|
|
22
|
+
.medium-3-of-3{
|
|
23
|
+
@include span-columns(3 of 3);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.medium-4{
|
|
27
|
+
@include span-columns(4);
|
|
28
|
+
.medium-1-of-4{
|
|
29
|
+
@include span-columns(1 of 4);
|
|
30
|
+
}
|
|
31
|
+
.medium-2-of-4{
|
|
32
|
+
@include span-columns(2 of 4);
|
|
33
|
+
}
|
|
34
|
+
.medium-3-of-4{
|
|
35
|
+
@include span-columns(3 of 4);
|
|
36
|
+
}
|
|
37
|
+
.medium-4-of-4{
|
|
38
|
+
@include span-columns(4 of 4);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.medium-5{
|
|
42
|
+
@include span-columns(5);
|
|
43
|
+
.medium-1-of-5{
|
|
44
|
+
@include span-columns(1 of 5);
|
|
45
|
+
}
|
|
46
|
+
.medium-2-of-5{
|
|
47
|
+
@include span-columns(2 of 5);
|
|
48
|
+
}
|
|
49
|
+
.medium-3-of-5{
|
|
50
|
+
@include span-columns(3 of 5);
|
|
51
|
+
}
|
|
52
|
+
.medium-4-of-5{
|
|
53
|
+
@include span-columns(4 of 5);
|
|
54
|
+
}
|
|
55
|
+
.medium-5-of-5{
|
|
56
|
+
@include span-columns(5 of 5);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
.medium-6{
|
|
60
|
+
@include span-columns(6);
|
|
61
|
+
.medium-1-of-6{
|
|
62
|
+
@include span-columns(1 of 6);
|
|
63
|
+
}
|
|
64
|
+
.medium-2-of-6{
|
|
65
|
+
@include span-columns(2 of 6);
|
|
66
|
+
}
|
|
67
|
+
.medium-3-of-6{
|
|
68
|
+
@include span-columns(3 of 6);
|
|
69
|
+
}
|
|
70
|
+
.medium-4-of-6{
|
|
71
|
+
@include span-columns(4 of 6);
|
|
72
|
+
}
|
|
73
|
+
.medium-5-of-6{
|
|
74
|
+
@include span-columns(5 of 6);
|
|
75
|
+
}
|
|
76
|
+
.medium-6-of-6{
|
|
77
|
+
@include span-columns(6 of 6);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.medium-7{
|
|
81
|
+
@include span-columns(7);
|
|
82
|
+
.medium-1-of-7{
|
|
83
|
+
@include span-columns(1 of 7);
|
|
84
|
+
}
|
|
85
|
+
.medium-2-of-7{
|
|
86
|
+
@include span-columns(2 of 7);
|
|
87
|
+
}
|
|
88
|
+
.medium-3-of-7{
|
|
89
|
+
@include span-columns(3 of 7);
|
|
90
|
+
}
|
|
91
|
+
.medium-4-of-7{
|
|
92
|
+
@include span-columns(4 of 7);
|
|
93
|
+
}
|
|
94
|
+
.medium-5-of-7{
|
|
95
|
+
@include span-columns(5 of 7);
|
|
96
|
+
}
|
|
97
|
+
.medium-6-of-7{
|
|
98
|
+
@include span-columns(6 of 7);
|
|
99
|
+
}
|
|
100
|
+
.medium-7-of-7{
|
|
101
|
+
@include span-columns(7 of 7);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
.medium-8{
|
|
105
|
+
@include span-columns(8);
|
|
106
|
+
.medium-1-of-8{
|
|
107
|
+
@include span-columns(1 of 8);
|
|
108
|
+
}
|
|
109
|
+
.medium-2-of-8{
|
|
110
|
+
@include span-columns(2 of 8);
|
|
111
|
+
}
|
|
112
|
+
.medium-3-of-8{
|
|
113
|
+
@include span-columns(3 of 8);
|
|
114
|
+
}
|
|
115
|
+
.medium-4-of-8{
|
|
116
|
+
@include span-columns(4 of 8);
|
|
117
|
+
}
|
|
118
|
+
.medium-5-of-8{
|
|
119
|
+
@include span-columns(5 of 8);
|
|
120
|
+
}
|
|
121
|
+
.medium-6-of-8{
|
|
122
|
+
@include span-columns(6 of 8);
|
|
123
|
+
}
|
|
124
|
+
.medium-7-of-8{
|
|
125
|
+
@include span-columns(7 of 8);
|
|
126
|
+
}
|
|
127
|
+
.medium-8-of-8{
|
|
128
|
+
@include span-columns(8 of 8);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
.medium-9{
|
|
132
|
+
@include span-columns(9);
|
|
133
|
+
.medium-1-of-9{
|
|
134
|
+
@include span-columns(1 of 9);
|
|
135
|
+
}
|
|
136
|
+
.medium-2-of-9{
|
|
137
|
+
@include span-columns(2 of 9);
|
|
138
|
+
}
|
|
139
|
+
.medium-3-of-9{
|
|
140
|
+
@include span-columns(3 of 9);
|
|
141
|
+
}
|
|
142
|
+
.medium-4-of-9{
|
|
143
|
+
@include span-columns(4 of 9);
|
|
144
|
+
}
|
|
145
|
+
.medium-5-of-9{
|
|
146
|
+
@include span-columns(5 of 9);
|
|
147
|
+
}
|
|
148
|
+
.medium-6-of-9{
|
|
149
|
+
@include span-columns(6 of 9);
|
|
150
|
+
}
|
|
151
|
+
.medium-7-of-9{
|
|
152
|
+
@include span-columns(7 of 9);
|
|
153
|
+
}
|
|
154
|
+
.medium-8-of-9{
|
|
155
|
+
@include span-columns(8 of 9);
|
|
156
|
+
}
|
|
157
|
+
.medium-9-of-9{
|
|
158
|
+
@include span-columns(9 of 9);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.medium-10{
|
|
162
|
+
@include span-columns(10);
|
|
163
|
+
.medium-1-of-10{
|
|
164
|
+
@include span-columns(1 of 10);
|
|
165
|
+
}
|
|
166
|
+
.medium-2-of-10{
|
|
167
|
+
@include span-columns(2 of 10);
|
|
168
|
+
}
|
|
169
|
+
.medium-3-of-10{
|
|
170
|
+
@include span-columns(3 of 10);
|
|
171
|
+
}
|
|
172
|
+
.medium-4-of-10{
|
|
173
|
+
@include span-columns(4 of 10);
|
|
174
|
+
}
|
|
175
|
+
.medium-5-of-10{
|
|
176
|
+
@include span-columns(5 of 10);
|
|
177
|
+
}
|
|
178
|
+
.medium-6-of-10{
|
|
179
|
+
@include span-columns(6 of 10);
|
|
180
|
+
}
|
|
181
|
+
.medium-7-of-10{
|
|
182
|
+
@include span-columns(7 of 10);
|
|
183
|
+
}
|
|
184
|
+
.medium-8-of-10{
|
|
185
|
+
@include span-columns(8 of 10);
|
|
186
|
+
}
|
|
187
|
+
.medium-9-of-10{
|
|
188
|
+
@include span-columns(9 of 10);
|
|
189
|
+
}
|
|
190
|
+
.medium-10-of-10{
|
|
191
|
+
@include span-columns(10 of 10);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
.medium-11{
|
|
195
|
+
@include span-columns(11);
|
|
196
|
+
.medium-1-of-11{
|
|
197
|
+
@include span-columns(1 of 11);
|
|
198
|
+
}
|
|
199
|
+
.medium-2-of-11{
|
|
200
|
+
@include span-columns(2 of 11);
|
|
201
|
+
}
|
|
202
|
+
.medium-3-of-11{
|
|
203
|
+
@include span-columns(3 of 11);
|
|
204
|
+
}
|
|
205
|
+
.medium-4-of-11{
|
|
206
|
+
@include span-columns(4 of 11);
|
|
207
|
+
}
|
|
208
|
+
.medium-5-of-11{
|
|
209
|
+
@include span-columns(5 of 11);
|
|
210
|
+
}
|
|
211
|
+
.medium-6-of-11{
|
|
212
|
+
@include span-columns(6 of 11);
|
|
213
|
+
}
|
|
214
|
+
.medium-7-of-11{
|
|
215
|
+
@include span-columns(7 of 11);
|
|
216
|
+
}
|
|
217
|
+
.medium-8-of-11{
|
|
218
|
+
@include span-columns(8 of 11);
|
|
219
|
+
}
|
|
220
|
+
.medium-9-of-11{
|
|
221
|
+
@include span-columns(9 of 11);
|
|
222
|
+
}
|
|
223
|
+
.medium-10-of-11{
|
|
224
|
+
@include span-columns(10 of 11);
|
|
225
|
+
}
|
|
226
|
+
.medium-11-of-11{
|
|
227
|
+
@include span-columns(11 of 11);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.medium-12{
|
|
231
|
+
@include span-columns(12);
|
|
232
|
+
.medium-1-of-12{
|
|
233
|
+
@include span-columns(1 of 12);
|
|
234
|
+
}
|
|
235
|
+
.medium-2-of-12{
|
|
236
|
+
@include span-columns(2 of 12);
|
|
237
|
+
}
|
|
238
|
+
.medium-3-of-12{
|
|
239
|
+
@include span-columns(3 of 12);
|
|
240
|
+
}
|
|
241
|
+
.medium-4-of-12{
|
|
242
|
+
@include span-columns(4 of 12);
|
|
243
|
+
}
|
|
244
|
+
.medium-5-of-12{
|
|
245
|
+
@include span-columns(5 of 12);
|
|
246
|
+
}
|
|
247
|
+
.medium-6-of-12{
|
|
248
|
+
@include span-columns(6 of 12);
|
|
249
|
+
}
|
|
250
|
+
.medium-7-of-12{
|
|
251
|
+
@include span-columns(7 of 12);
|
|
252
|
+
}
|
|
253
|
+
.medium-8-of-12{
|
|
254
|
+
@include span-columns(8 of 12);
|
|
255
|
+
}
|
|
256
|
+
.medium-9-of-12{
|
|
257
|
+
@include span-columns(9 of 12);
|
|
258
|
+
}
|
|
259
|
+
.medium-10-of-12{
|
|
260
|
+
@include span-columns(10 of 12);
|
|
261
|
+
}
|
|
262
|
+
.medium-11-of-12{
|
|
263
|
+
@include span-columns(11 of 12);
|
|
264
|
+
}
|
|
265
|
+
.medium-12-of-12{
|
|
266
|
+
@include span-columns(12 of 12);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
.medium-push-1{
|
|
270
|
+
@include shift(1);
|
|
271
|
+
}
|
|
272
|
+
.medium-pull-1{
|
|
273
|
+
@include shift(-1);
|
|
274
|
+
}
|
|
275
|
+
.medium-push-2{
|
|
276
|
+
@include shift(2);
|
|
277
|
+
}
|
|
278
|
+
.medium-pull-2{
|
|
279
|
+
@include shift(-2);
|
|
280
|
+
}
|
|
281
|
+
.medium-push-3{
|
|
282
|
+
@include shift(3);
|
|
283
|
+
}
|
|
284
|
+
.medium-pull-3{
|
|
285
|
+
@include shift(-3);
|
|
286
|
+
}
|
|
287
|
+
.medium-push-4{
|
|
288
|
+
@include shift(4);
|
|
289
|
+
}
|
|
290
|
+
.medium-pull-4{
|
|
291
|
+
@include shift(-4);
|
|
292
|
+
}
|
|
293
|
+
.medium-push-5{
|
|
294
|
+
@include shift(5);
|
|
295
|
+
}
|
|
296
|
+
.medium-pull-5{
|
|
297
|
+
@include shift(-5);
|
|
298
|
+
}
|
|
299
|
+
.medium-push-6{
|
|
300
|
+
@include shift(6);
|
|
301
|
+
}
|
|
302
|
+
.medium-pull-6{
|
|
303
|
+
@include shift(-6);
|
|
304
|
+
}
|
|
305
|
+
.medium-push-7{
|
|
306
|
+
@include shift(7);
|
|
307
|
+
}
|
|
308
|
+
.medium-pull-7{
|
|
309
|
+
@include shift(-7);
|
|
310
|
+
}
|
|
311
|
+
.medium-push-8{
|
|
312
|
+
@include shift(8);
|
|
313
|
+
}
|
|
314
|
+
.medium-pull-8{
|
|
315
|
+
@include shift(-8);
|
|
316
|
+
}
|
|
317
|
+
.medium-push-9{
|
|
318
|
+
@include shift(9);
|
|
319
|
+
}
|
|
320
|
+
.medium-pull-9{
|
|
321
|
+
@include shift(-9);
|
|
322
|
+
}
|
|
323
|
+
.medium-push-10{
|
|
324
|
+
@include shift(10);
|
|
325
|
+
}
|
|
326
|
+
.medium-pull-10{
|
|
327
|
+
@include shift(-10);
|
|
328
|
+
}
|
|
329
|
+
.medium-push-11{
|
|
330
|
+
@include shift(11);
|
|
331
|
+
}
|
|
332
|
+
.medium-pull-11{
|
|
333
|
+
@include shift(-11);
|
|
334
|
+
}
|
|
335
|
+
.medium-push-12{
|
|
336
|
+
@include shift(12);
|
|
337
|
+
}
|
|
338
|
+
.medium-pull-12{
|
|
339
|
+
@include shift(-12);
|
|
340
|
+
}
|
|
341
|
+
}
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
@include media($small) {
|
|
2
|
+
.small-1{
|
|
3
|
+
@include span-columns(1);
|
|
4
|
+
}
|
|
5
|
+
.small-2{
|
|
6
|
+
@include span-columns(2);
|
|
7
|
+
.small-1-of-2{
|
|
8
|
+
@include span-columns(1 of 2);
|
|
9
|
+
}
|
|
10
|
+
.small-2-of-2{
|
|
11
|
+
@include span-columns(2 of 2);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.small-3{
|
|
15
|
+
@include span-columns(3);
|
|
16
|
+
.small-1-of-3{
|
|
17
|
+
@include span-columns(1 of 3);
|
|
18
|
+
}
|
|
19
|
+
.small-2-of-3{
|
|
20
|
+
@include span-columns(2 of 3);
|
|
21
|
+
}
|
|
22
|
+
.small-3-of-3{
|
|
23
|
+
@include span-columns(3 of 3);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.small-4{
|
|
27
|
+
@include span-columns(4);
|
|
28
|
+
.small-1-of-4{
|
|
29
|
+
@include span-columns(1 of 4);
|
|
30
|
+
}
|
|
31
|
+
.small-2-of-4{
|
|
32
|
+
@include span-columns(2 of 4);
|
|
33
|
+
}
|
|
34
|
+
.small-3-of-4{
|
|
35
|
+
@include span-columns(3 of 4);
|
|
36
|
+
}
|
|
37
|
+
.small-4-of-4{
|
|
38
|
+
@include span-columns(4 of 4);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.small-5{
|
|
42
|
+
@include span-columns(5);
|
|
43
|
+
.small-1-of-5{
|
|
44
|
+
@include span-columns(1 of 5);
|
|
45
|
+
}
|
|
46
|
+
.small-2-of-5{
|
|
47
|
+
@include span-columns(2 of 5);
|
|
48
|
+
}
|
|
49
|
+
.small-3-of-5{
|
|
50
|
+
@include span-columns(3 of 5);
|
|
51
|
+
}
|
|
52
|
+
.small-4-of-5{
|
|
53
|
+
@include span-columns(4 of 5);
|
|
54
|
+
}
|
|
55
|
+
.small-5-of-5{
|
|
56
|
+
@include span-columns(5 of 5);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
.small-6{
|
|
60
|
+
@include span-columns(6);
|
|
61
|
+
.small-1-of-6{
|
|
62
|
+
@include span-columns(1 of 6);
|
|
63
|
+
}
|
|
64
|
+
.small-2-of-6{
|
|
65
|
+
@include span-columns(2 of 6);
|
|
66
|
+
}
|
|
67
|
+
.small-3-of-6{
|
|
68
|
+
@include span-columns(3 of 6);
|
|
69
|
+
}
|
|
70
|
+
.small-4-of-6{
|
|
71
|
+
@include span-columns(4 of 6);
|
|
72
|
+
}
|
|
73
|
+
.small-5-of-6{
|
|
74
|
+
@include span-columns(5 of 6);
|
|
75
|
+
}
|
|
76
|
+
.small-6-of-6{
|
|
77
|
+
@include span-columns(6 of 6);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.small-7{
|
|
81
|
+
@include span-columns(7);
|
|
82
|
+
.small-1-of-7{
|
|
83
|
+
@include span-columns(1 of 7);
|
|
84
|
+
}
|
|
85
|
+
.small-2-of-7{
|
|
86
|
+
@include span-columns(2 of 7);
|
|
87
|
+
}
|
|
88
|
+
.small-3-of-7{
|
|
89
|
+
@include span-columns(3 of 7);
|
|
90
|
+
}
|
|
91
|
+
.small-4-of-7{
|
|
92
|
+
@include span-columns(4 of 7);
|
|
93
|
+
}
|
|
94
|
+
.small-5-of-7{
|
|
95
|
+
@include span-columns(5 of 7);
|
|
96
|
+
}
|
|
97
|
+
.small-6-of-7{
|
|
98
|
+
@include span-columns(6 of 7);
|
|
99
|
+
}
|
|
100
|
+
.small-7-of-7{
|
|
101
|
+
@include span-columns(7 of 7);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
.small-8{
|
|
105
|
+
@include span-columns(8);
|
|
106
|
+
.small-1-of-8{
|
|
107
|
+
@include span-columns(1 of 8);
|
|
108
|
+
}
|
|
109
|
+
.small-2-of-8{
|
|
110
|
+
@include span-columns(2 of 8);
|
|
111
|
+
}
|
|
112
|
+
.small-3-of-8{
|
|
113
|
+
@include span-columns(3 of 8);
|
|
114
|
+
}
|
|
115
|
+
.small-4-of-8{
|
|
116
|
+
@include span-columns(4 of 8);
|
|
117
|
+
}
|
|
118
|
+
.small-5-of-8{
|
|
119
|
+
@include span-columns(5 of 8);
|
|
120
|
+
}
|
|
121
|
+
.small-6-of-8{
|
|
122
|
+
@include span-columns(6 of 8);
|
|
123
|
+
}
|
|
124
|
+
.small-7-of-8{
|
|
125
|
+
@include span-columns(7 of 8);
|
|
126
|
+
}
|
|
127
|
+
.small-8-of-8{
|
|
128
|
+
@include span-columns(8 of 8);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
.small-9{
|
|
132
|
+
@include span-columns(9);
|
|
133
|
+
.small-1-of-9{
|
|
134
|
+
@include span-columns(1 of 9);
|
|
135
|
+
}
|
|
136
|
+
.small-2-of-9{
|
|
137
|
+
@include span-columns(2 of 9);
|
|
138
|
+
}
|
|
139
|
+
.small-3-of-9{
|
|
140
|
+
@include span-columns(3 of 9);
|
|
141
|
+
}
|
|
142
|
+
.small-4-of-9{
|
|
143
|
+
@include span-columns(4 of 9);
|
|
144
|
+
}
|
|
145
|
+
.small-5-of-9{
|
|
146
|
+
@include span-columns(5 of 9);
|
|
147
|
+
}
|
|
148
|
+
.small-6-of-9{
|
|
149
|
+
@include span-columns(6 of 9);
|
|
150
|
+
}
|
|
151
|
+
.small-7-of-9{
|
|
152
|
+
@include span-columns(7 of 9);
|
|
153
|
+
}
|
|
154
|
+
.small-8-of-9{
|
|
155
|
+
@include span-columns(8 of 9);
|
|
156
|
+
}
|
|
157
|
+
.small-9-of-9{
|
|
158
|
+
@include span-columns(9 of 9);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.small-10{
|
|
162
|
+
@include span-columns(10);
|
|
163
|
+
.small-1-of-10{
|
|
164
|
+
@include span-columns(1 of 10);
|
|
165
|
+
}
|
|
166
|
+
.small-2-of-10{
|
|
167
|
+
@include span-columns(2 of 10);
|
|
168
|
+
}
|
|
169
|
+
.small-3-of-10{
|
|
170
|
+
@include span-columns(3 of 10);
|
|
171
|
+
}
|
|
172
|
+
.small-4-of-10{
|
|
173
|
+
@include span-columns(4 of 10);
|
|
174
|
+
}
|
|
175
|
+
.small-5-of-10{
|
|
176
|
+
@include span-columns(5 of 10);
|
|
177
|
+
}
|
|
178
|
+
.small-6-of-10{
|
|
179
|
+
@include span-columns(6 of 10);
|
|
180
|
+
}
|
|
181
|
+
.small-7-of-10{
|
|
182
|
+
@include span-columns(7 of 10);
|
|
183
|
+
}
|
|
184
|
+
.small-8-of-10{
|
|
185
|
+
@include span-columns(8 of 10);
|
|
186
|
+
}
|
|
187
|
+
.small-9-of-10{
|
|
188
|
+
@include span-columns(9 of 10);
|
|
189
|
+
}
|
|
190
|
+
.small-10-of-10{
|
|
191
|
+
@include span-columns(10 of 10);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
.small-11{
|
|
195
|
+
@include span-columns(11);
|
|
196
|
+
.small-1-of-11{
|
|
197
|
+
@include span-columns(1 of 11);
|
|
198
|
+
}
|
|
199
|
+
.small-2-of-11{
|
|
200
|
+
@include span-columns(2 of 11);
|
|
201
|
+
}
|
|
202
|
+
.small-3-of-11{
|
|
203
|
+
@include span-columns(3 of 11);
|
|
204
|
+
}
|
|
205
|
+
.small-4-of-11{
|
|
206
|
+
@include span-columns(4 of 11);
|
|
207
|
+
}
|
|
208
|
+
.small-5-of-11{
|
|
209
|
+
@include span-columns(5 of 11);
|
|
210
|
+
}
|
|
211
|
+
.small-6-of-11{
|
|
212
|
+
@include span-columns(6 of 11);
|
|
213
|
+
}
|
|
214
|
+
.small-7-of-11{
|
|
215
|
+
@include span-columns(7 of 11);
|
|
216
|
+
}
|
|
217
|
+
.small-8-of-11{
|
|
218
|
+
@include span-columns(8 of 11);
|
|
219
|
+
}
|
|
220
|
+
.small-9-of-11{
|
|
221
|
+
@include span-columns(9 of 11);
|
|
222
|
+
}
|
|
223
|
+
.small-10-of-11{
|
|
224
|
+
@include span-columns(10 of 11);
|
|
225
|
+
}
|
|
226
|
+
.small-11-of-11{
|
|
227
|
+
@include span-columns(11 of 11);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.small-12{
|
|
231
|
+
@include span-columns(12);
|
|
232
|
+
.small-1-of-12{
|
|
233
|
+
@include span-columns(1 of 12);
|
|
234
|
+
}
|
|
235
|
+
.small-2-of-12{
|
|
236
|
+
@include span-columns(2 of 12);
|
|
237
|
+
}
|
|
238
|
+
.small-3-of-12{
|
|
239
|
+
@include span-columns(3 of 12);
|
|
240
|
+
}
|
|
241
|
+
.small-4-of-12{
|
|
242
|
+
@include span-columns(4 of 12);
|
|
243
|
+
}
|
|
244
|
+
.small-5-of-12{
|
|
245
|
+
@include span-columns(5 of 12);
|
|
246
|
+
}
|
|
247
|
+
.small-6-of-12{
|
|
248
|
+
@include span-columns(6 of 12);
|
|
249
|
+
}
|
|
250
|
+
.small-7-of-12{
|
|
251
|
+
@include span-columns(7 of 12);
|
|
252
|
+
}
|
|
253
|
+
.small-8-of-12{
|
|
254
|
+
@include span-columns(8 of 12);
|
|
255
|
+
}
|
|
256
|
+
.small-9-of-12{
|
|
257
|
+
@include span-columns(9 of 12);
|
|
258
|
+
}
|
|
259
|
+
.small-10-of-12{
|
|
260
|
+
@include span-columns(10 of 12);
|
|
261
|
+
}
|
|
262
|
+
.small-11-of-12{
|
|
263
|
+
@include span-columns(11 of 12);
|
|
264
|
+
}
|
|
265
|
+
.small-12-of-12{
|
|
266
|
+
@include span-columns(12 of 12);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
.small-push-1{
|
|
270
|
+
@include shift(1);
|
|
271
|
+
}
|
|
272
|
+
.small-pull-1{
|
|
273
|
+
@include shift(-1);
|
|
274
|
+
}
|
|
275
|
+
.small-push-2{
|
|
276
|
+
@include shift(2);
|
|
277
|
+
}
|
|
278
|
+
.small-pull-2{
|
|
279
|
+
@include shift(-2);
|
|
280
|
+
}
|
|
281
|
+
.small-push-3{
|
|
282
|
+
@include shift(3);
|
|
283
|
+
}
|
|
284
|
+
.small-pull-3{
|
|
285
|
+
@include shift(-3);
|
|
286
|
+
}
|
|
287
|
+
.small-push-4{
|
|
288
|
+
@include shift(4);
|
|
289
|
+
}
|
|
290
|
+
.small-pull-4{
|
|
291
|
+
@include shift(-4);
|
|
292
|
+
}
|
|
293
|
+
.small-push-5{
|
|
294
|
+
@include shift(5);
|
|
295
|
+
}
|
|
296
|
+
.small-pull-5{
|
|
297
|
+
@include shift(-5);
|
|
298
|
+
}
|
|
299
|
+
.small-push-6{
|
|
300
|
+
@include shift(6);
|
|
301
|
+
}
|
|
302
|
+
.small-pull-6{
|
|
303
|
+
@include shift(-6);
|
|
304
|
+
}
|
|
305
|
+
.small-push-7{
|
|
306
|
+
@include shift(7);
|
|
307
|
+
}
|
|
308
|
+
.small-pull-7{
|
|
309
|
+
@include shift(-7);
|
|
310
|
+
}
|
|
311
|
+
.small-push-8{
|
|
312
|
+
@include shift(8);
|
|
313
|
+
}
|
|
314
|
+
.small-pull-8{
|
|
315
|
+
@include shift(-8);
|
|
316
|
+
}
|
|
317
|
+
.small-push-9{
|
|
318
|
+
@include shift(9);
|
|
319
|
+
}
|
|
320
|
+
.small-pull-9{
|
|
321
|
+
@include shift(-9);
|
|
322
|
+
}
|
|
323
|
+
.small-push-10{
|
|
324
|
+
@include shift(10);
|
|
325
|
+
}
|
|
326
|
+
.small-pull-10{
|
|
327
|
+
@include shift(-10);
|
|
328
|
+
}
|
|
329
|
+
.small-push-11{
|
|
330
|
+
@include shift(11);
|
|
331
|
+
}
|
|
332
|
+
.small-pull-11{
|
|
333
|
+
@include shift(-11);
|
|
334
|
+
}
|
|
335
|
+
.small-push-12{
|
|
336
|
+
@include shift(12);
|
|
337
|
+
}
|
|
338
|
+
.small-pull-12{
|
|
339
|
+
@include shift(-12);
|
|
340
|
+
}
|
|
341
|
+
}
|
data/lib/neat-classes.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: neat-classes
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nick Franken
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-05-13 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: neat
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ! '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ! '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
description: Foundation style classes for span-columns using Bourbon Neat
|
|
28
|
+
email:
|
|
29
|
+
- nf@the42.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- lib/neat-classes.rb
|
|
35
|
+
- lib/neat-classes/engine.rb
|
|
36
|
+
- app/assets/stylesheets/neat-breakpoint-classes.scss
|
|
37
|
+
- app/assets/stylesheets/breakpoints/large.scss
|
|
38
|
+
- app/assets/stylesheets/breakpoints/medium.scss
|
|
39
|
+
- app/assets/stylesheets/breakpoints/small.scss
|
|
40
|
+
homepage:
|
|
41
|
+
licenses: []
|
|
42
|
+
metadata: {}
|
|
43
|
+
post_install_message:
|
|
44
|
+
rdoc_options: []
|
|
45
|
+
require_paths:
|
|
46
|
+
- lib
|
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ! '>='
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '0'
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ! '>='
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: '0'
|
|
57
|
+
requirements: []
|
|
58
|
+
rubyforge_project:
|
|
59
|
+
rubygems_version: 2.0.3
|
|
60
|
+
signing_key:
|
|
61
|
+
specification_version: 4
|
|
62
|
+
summary: Foundation style classes for span-columns using Bourbon Neat
|
|
63
|
+
test_files: []
|