ezy 0.2.9 → 0.3.0.beta
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 +4 -4
- data/VERSION +1 -1
- data/ezy.gemspec +2 -2
- data/sass/ezy/grid/_layout.scss +30 -4
- data/templates/project/assets/config.rb +45 -0
- data/templates/project/assets/css/screen.css +657 -0
- data/templates/project/assets/img/test-sprite/alien.png +0 -0
- data/templates/project/assets/img/test-sprite/classic.png +0 -0
- data/templates/project/assets/img/test-sprite/indy.png +0 -0
- data/templates/project/assets/img/test-sprite.png +0 -0
- data/templates/project/assets/img/test-sprite@2x/classic.png +0 -0
- data/templates/project/assets/img/test-sprite@2x/indy.png +0 -0
- data/templates/project/assets/img/test-sprite@2x.png +0 -0
- data/templates/project/assets/js/html5shiv-3.6.2.js +8 -0
- data/templates/project/assets/sass/core/_base.scss +2 -0
- data/templates/project/assets/sass/core/_layouts.scss +88 -0
- data/templates/project/assets/sass/core/_settings.scss +2 -0
- data/templates/project/assets/sass/lib/_normalize.scss +396 -0
- data/templates/project/assets/sass/partials/_sprite-examples.scss +43 -0
- data/templates/project/assets/sass/screen.scss +17 -0
- data/templates/project/index.html +83 -23
- data/templates/project/manifest.rb +39 -8
- data/test/css/grid/elastic.css +5 -5
- data/test/css/grid/fluid.css +17 -17
- data/test/css/grid/gutter.css +18 -18
- data/test/css/grid/layout/fluid.css +12 -12
- data/test/css/grid/layout/grid-settings.css +149 -0
- data/test/css/grid/layout/responsive.css +41 -35
- data/test/css/grid/layout.css +20 -20
- data/test/css/grid/responsive.css +20 -20
- data/test/css/sprites/layout.css +2 -2
- data/test/css/sprites/position.css +4 -4
- data/test/css/sprites/repeat.css +2 -2
- data/test/css/sprites/resolution.css +2 -2
- data/test/css/sprites/responsive.css +7 -7
- data/test/css/sprites/retina.css +2 -2
- data/test/css/sprites/simple.css +1 -1
- data/test/css/sprites/spacing.css +2 -2
- data/test/html/grid/grid-settings.html +75 -0
- data/test/scss/grid/layout/grid-settings.scss +101 -0
- metadata +24 -7
- data/templates/project/_settings.scss +0 -32
- data/templates/project/screen.scss +0 -40
@@ -0,0 +1,657 @@
|
|
1
|
+
/* ------------------------------------------------- *
|
2
|
+
* Ezy Grid by Frej Raahede Nielsen
|
3
|
+
* http://github.com/raahede/ezy
|
4
|
+
* ------------------------------------------------- *
|
5
|
+
*/
|
6
|
+
/* ------------------------------------------------- *
|
7
|
+
* Micro Clearfix
|
8
|
+
* http://nicolasgallagher.com/micro-clearfix-hack/
|
9
|
+
*/
|
10
|
+
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_clearfix.scss */
|
11
|
+
.page:before, .grid:before,
|
12
|
+
.page:after,
|
13
|
+
.grid:after {
|
14
|
+
content: " ";
|
15
|
+
display: table;
|
16
|
+
}
|
17
|
+
|
18
|
+
/* line 12, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_clearfix.scss */
|
19
|
+
.page:after, .grid:after {
|
20
|
+
clear: both;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* line 17, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_clearfix.scss */
|
24
|
+
.page, .grid {
|
25
|
+
/**
|
26
|
+
* For IE 6/7 only
|
27
|
+
* Include this rule to trigger hasLayout and contain floats.
|
28
|
+
*/
|
29
|
+
*zoom: 1;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* --- End clearfix --- */
|
33
|
+
/* line 40, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_grid.scss */
|
34
|
+
.page {
|
35
|
+
margin-left: auto;
|
36
|
+
margin-right: auto;
|
37
|
+
}
|
38
|
+
|
39
|
+
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
40
|
+
/* ==========================================================================
|
41
|
+
HTML5 display definitions
|
42
|
+
========================================================================== */
|
43
|
+
/**
|
44
|
+
* Correct `block` display not defined in IE 8/9.
|
45
|
+
*/
|
46
|
+
/* line 22, ../sass/lib/_normalize.scss */
|
47
|
+
article,
|
48
|
+
aside,
|
49
|
+
details,
|
50
|
+
figcaption,
|
51
|
+
figure,
|
52
|
+
footer,
|
53
|
+
header,
|
54
|
+
hgroup,
|
55
|
+
main,
|
56
|
+
nav,
|
57
|
+
section,
|
58
|
+
summary {
|
59
|
+
display: block;
|
60
|
+
}
|
61
|
+
|
62
|
+
/**
|
63
|
+
* Correct `inline-block` display not defined in IE 8/9.
|
64
|
+
*/
|
65
|
+
/* line 32, ../sass/lib/_normalize.scss */
|
66
|
+
audio,
|
67
|
+
canvas,
|
68
|
+
video {
|
69
|
+
display: inline-block;
|
70
|
+
}
|
71
|
+
|
72
|
+
/**
|
73
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
74
|
+
* Remove excess height in iOS 5 devices.
|
75
|
+
*/
|
76
|
+
/* line 41, ../sass/lib/_normalize.scss */
|
77
|
+
audio:not([controls]) {
|
78
|
+
display: none;
|
79
|
+
height: 0;
|
80
|
+
}
|
81
|
+
|
82
|
+
/**
|
83
|
+
* Address styling not present in IE 8/9.
|
84
|
+
*/
|
85
|
+
/* line 50, ../sass/lib/_normalize.scss */
|
86
|
+
[hidden] {
|
87
|
+
display: none;
|
88
|
+
}
|
89
|
+
|
90
|
+
/* ==========================================================================
|
91
|
+
Base
|
92
|
+
========================================================================== */
|
93
|
+
/**
|
94
|
+
* 1. Set default font family to sans-serif.
|
95
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
96
|
+
* user zoom.
|
97
|
+
*/
|
98
|
+
/* line 64, ../sass/lib/_normalize.scss */
|
99
|
+
html {
|
100
|
+
font-family: sans-serif;
|
101
|
+
/* 1 */
|
102
|
+
-ms-text-size-adjust: 100%;
|
103
|
+
/* 2 */
|
104
|
+
-webkit-text-size-adjust: 100%;
|
105
|
+
/* 2 */
|
106
|
+
}
|
107
|
+
|
108
|
+
/**
|
109
|
+
* Remove default margin.
|
110
|
+
*/
|
111
|
+
/* line 74, ../sass/lib/_normalize.scss */
|
112
|
+
body {
|
113
|
+
margin: 0;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* ==========================================================================
|
117
|
+
Links
|
118
|
+
========================================================================== */
|
119
|
+
/**
|
120
|
+
* Address `outline` inconsistency between Chrome and other browsers.
|
121
|
+
*/
|
122
|
+
/* line 86, ../sass/lib/_normalize.scss */
|
123
|
+
a:focus {
|
124
|
+
outline: thin dotted;
|
125
|
+
}
|
126
|
+
|
127
|
+
/**
|
128
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
129
|
+
*/
|
130
|
+
/* line 95, ../sass/lib/_normalize.scss */
|
131
|
+
a:active,
|
132
|
+
a:hover {
|
133
|
+
outline: 0;
|
134
|
+
}
|
135
|
+
|
136
|
+
/* ==========================================================================
|
137
|
+
Typography
|
138
|
+
========================================================================== */
|
139
|
+
/**
|
140
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
141
|
+
* contexts in Firefox 4+, Safari 5, and Chrome.
|
142
|
+
*/
|
143
|
+
/* line 108, ../sass/lib/_normalize.scss */
|
144
|
+
h1 {
|
145
|
+
font-size: 2em;
|
146
|
+
margin: 0.67em 0;
|
147
|
+
}
|
148
|
+
|
149
|
+
/**
|
150
|
+
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
151
|
+
*/
|
152
|
+
/* line 117, ../sass/lib/_normalize.scss */
|
153
|
+
abbr[title] {
|
154
|
+
border-bottom: 1px dotted;
|
155
|
+
}
|
156
|
+
|
157
|
+
/**
|
158
|
+
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
159
|
+
*/
|
160
|
+
/* line 126, ../sass/lib/_normalize.scss */
|
161
|
+
b,
|
162
|
+
strong {
|
163
|
+
font-weight: bold;
|
164
|
+
}
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Address styling not present in Safari 5 and Chrome.
|
168
|
+
*/
|
169
|
+
/* line 134, ../sass/lib/_normalize.scss */
|
170
|
+
dfn {
|
171
|
+
font-style: italic;
|
172
|
+
}
|
173
|
+
|
174
|
+
/**
|
175
|
+
* Address differences between Firefox and other browsers.
|
176
|
+
*/
|
177
|
+
/* line 142, ../sass/lib/_normalize.scss */
|
178
|
+
hr {
|
179
|
+
-moz-box-sizing: content-box;
|
180
|
+
box-sizing: content-box;
|
181
|
+
height: 0;
|
182
|
+
}
|
183
|
+
|
184
|
+
/**
|
185
|
+
* Address styling not present in IE 8/9.
|
186
|
+
*/
|
187
|
+
/* line 152, ../sass/lib/_normalize.scss */
|
188
|
+
mark {
|
189
|
+
background: #ff0;
|
190
|
+
color: #000;
|
191
|
+
}
|
192
|
+
|
193
|
+
/**
|
194
|
+
* Correct font family set oddly in Safari 5 and Chrome.
|
195
|
+
*/
|
196
|
+
/* line 164, ../sass/lib/_normalize.scss */
|
197
|
+
code,
|
198
|
+
kbd,
|
199
|
+
pre,
|
200
|
+
samp {
|
201
|
+
font-family: monospace, serif;
|
202
|
+
font-size: 1em;
|
203
|
+
}
|
204
|
+
|
205
|
+
/**
|
206
|
+
* Improve readability of pre-formatted text in all browsers.
|
207
|
+
*/
|
208
|
+
/* line 173, ../sass/lib/_normalize.scss */
|
209
|
+
pre {
|
210
|
+
white-space: pre-wrap;
|
211
|
+
}
|
212
|
+
|
213
|
+
/**
|
214
|
+
* Set consistent quote types.
|
215
|
+
*/
|
216
|
+
/* line 181, ../sass/lib/_normalize.scss */
|
217
|
+
q {
|
218
|
+
quotes: "\201C" "\201D" "\2018" "\2019";
|
219
|
+
}
|
220
|
+
|
221
|
+
/**
|
222
|
+
* Address inconsistent and variable font size in all browsers.
|
223
|
+
*/
|
224
|
+
/* line 189, ../sass/lib/_normalize.scss */
|
225
|
+
small {
|
226
|
+
font-size: 80%;
|
227
|
+
}
|
228
|
+
|
229
|
+
/**
|
230
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
231
|
+
*/
|
232
|
+
/* line 198, ../sass/lib/_normalize.scss */
|
233
|
+
sub,
|
234
|
+
sup {
|
235
|
+
font-size: 75%;
|
236
|
+
line-height: 0;
|
237
|
+
position: relative;
|
238
|
+
vertical-align: baseline;
|
239
|
+
}
|
240
|
+
|
241
|
+
/* line 205, ../sass/lib/_normalize.scss */
|
242
|
+
sup {
|
243
|
+
top: -0.5em;
|
244
|
+
}
|
245
|
+
|
246
|
+
/* line 209, ../sass/lib/_normalize.scss */
|
247
|
+
sub {
|
248
|
+
bottom: -0.25em;
|
249
|
+
}
|
250
|
+
|
251
|
+
/* ==========================================================================
|
252
|
+
Embedded content
|
253
|
+
========================================================================== */
|
254
|
+
/**
|
255
|
+
* Remove border when inside `a` element in IE 8/9.
|
256
|
+
*/
|
257
|
+
/* line 221, ../sass/lib/_normalize.scss */
|
258
|
+
img {
|
259
|
+
border: 0;
|
260
|
+
}
|
261
|
+
|
262
|
+
/**
|
263
|
+
* Correct overflow displayed oddly in IE 9.
|
264
|
+
*/
|
265
|
+
/* line 229, ../sass/lib/_normalize.scss */
|
266
|
+
svg:not(:root) {
|
267
|
+
overflow: hidden;
|
268
|
+
}
|
269
|
+
|
270
|
+
/* ==========================================================================
|
271
|
+
Figures
|
272
|
+
========================================================================== */
|
273
|
+
/**
|
274
|
+
* Address margin not present in IE 8/9 and Safari 5.
|
275
|
+
*/
|
276
|
+
/* line 241, ../sass/lib/_normalize.scss */
|
277
|
+
figure {
|
278
|
+
margin: 0;
|
279
|
+
}
|
280
|
+
|
281
|
+
/* ==========================================================================
|
282
|
+
Forms
|
283
|
+
========================================================================== */
|
284
|
+
/**
|
285
|
+
* Define consistent border, margin, and padding.
|
286
|
+
*/
|
287
|
+
/* line 253, ../sass/lib/_normalize.scss */
|
288
|
+
fieldset {
|
289
|
+
border: 1px solid #c0c0c0;
|
290
|
+
margin: 0 2px;
|
291
|
+
padding: 0.35em 0.625em 0.75em;
|
292
|
+
}
|
293
|
+
|
294
|
+
/**
|
295
|
+
* 1. Correct `color` not being inherited in IE 8/9.
|
296
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
297
|
+
*/
|
298
|
+
/* line 264, ../sass/lib/_normalize.scss */
|
299
|
+
legend {
|
300
|
+
border: 0;
|
301
|
+
/* 1 */
|
302
|
+
padding: 0;
|
303
|
+
/* 2 */
|
304
|
+
}
|
305
|
+
|
306
|
+
/**
|
307
|
+
* 1. Correct font family not being inherited in all browsers.
|
308
|
+
* 2. Correct font size not being inherited in all browsers.
|
309
|
+
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
310
|
+
*/
|
311
|
+
/* line 278, ../sass/lib/_normalize.scss */
|
312
|
+
button,
|
313
|
+
input,
|
314
|
+
select,
|
315
|
+
textarea {
|
316
|
+
font-family: inherit;
|
317
|
+
/* 1 */
|
318
|
+
font-size: 100%;
|
319
|
+
/* 2 */
|
320
|
+
margin: 0;
|
321
|
+
/* 3 */
|
322
|
+
}
|
323
|
+
|
324
|
+
/**
|
325
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
326
|
+
* the UA stylesheet.
|
327
|
+
*/
|
328
|
+
/* line 290, ../sass/lib/_normalize.scss */
|
329
|
+
button,
|
330
|
+
input {
|
331
|
+
line-height: normal;
|
332
|
+
}
|
333
|
+
|
334
|
+
/**
|
335
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
336
|
+
* All other form control elements do not inherit `text-transform` values.
|
337
|
+
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
338
|
+
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
339
|
+
*/
|
340
|
+
/* line 302, ../sass/lib/_normalize.scss */
|
341
|
+
button,
|
342
|
+
select {
|
343
|
+
text-transform: none;
|
344
|
+
}
|
345
|
+
|
346
|
+
/**
|
347
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
348
|
+
* and `video` controls.
|
349
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
350
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
351
|
+
* `input` and others.
|
352
|
+
*/
|
353
|
+
/* line 317, ../sass/lib/_normalize.scss */
|
354
|
+
button,
|
355
|
+
html [type="button"],
|
356
|
+
[type="reset"],
|
357
|
+
[type="submit"] {
|
358
|
+
-webkit-appearance: button;
|
359
|
+
/* 2 */
|
360
|
+
cursor: pointer;
|
361
|
+
/* 3 */
|
362
|
+
}
|
363
|
+
|
364
|
+
/**
|
365
|
+
* Re-set default cursor for disabled elements.
|
366
|
+
*/
|
367
|
+
/* line 327, ../sass/lib/_normalize.scss */
|
368
|
+
button[disabled],
|
369
|
+
html input[disabled] {
|
370
|
+
cursor: default;
|
371
|
+
}
|
372
|
+
|
373
|
+
/**
|
374
|
+
* 1. Address box sizing set to `content-box` in IE 8/9.
|
375
|
+
* 2. Remove excess padding in IE 8/9.
|
376
|
+
*/
|
377
|
+
/* line 337, ../sass/lib/_normalize.scss */
|
378
|
+
[type="checkbox"],
|
379
|
+
[type="radio"] {
|
380
|
+
box-sizing: border-box;
|
381
|
+
/* 1 */
|
382
|
+
padding: 0;
|
383
|
+
/* 2 */
|
384
|
+
}
|
385
|
+
|
386
|
+
/**
|
387
|
+
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
388
|
+
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
389
|
+
* (include `-moz` to future-proof).
|
390
|
+
*/
|
391
|
+
/* line 348, ../sass/lib/_normalize.scss */
|
392
|
+
[type="search"] {
|
393
|
+
-webkit-appearance: textfield;
|
394
|
+
/* 1 */
|
395
|
+
-moz-box-sizing: content-box;
|
396
|
+
-webkit-box-sizing: content-box;
|
397
|
+
/* 2 */
|
398
|
+
box-sizing: content-box;
|
399
|
+
}
|
400
|
+
|
401
|
+
/**
|
402
|
+
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
403
|
+
* on OS X.
|
404
|
+
*/
|
405
|
+
/* line 361, ../sass/lib/_normalize.scss */
|
406
|
+
[type="search"]::-webkit-search-cancel-button,
|
407
|
+
[type="search"]::-webkit-search-decoration {
|
408
|
+
-webkit-appearance: none;
|
409
|
+
}
|
410
|
+
|
411
|
+
/**
|
412
|
+
* Remove inner padding and border in Firefox 4+.
|
413
|
+
*/
|
414
|
+
/* line 370, ../sass/lib/_normalize.scss */
|
415
|
+
button::-moz-focus-inner,
|
416
|
+
input::-moz-focus-inner {
|
417
|
+
border: 0;
|
418
|
+
padding: 0;
|
419
|
+
}
|
420
|
+
|
421
|
+
/**
|
422
|
+
* 1. Remove default vertical scrollbar in IE 8/9.
|
423
|
+
* 2. Improve readability and alignment in all browsers.
|
424
|
+
*/
|
425
|
+
/* line 380, ../sass/lib/_normalize.scss */
|
426
|
+
textarea {
|
427
|
+
overflow: auto;
|
428
|
+
/* 1 */
|
429
|
+
vertical-align: top;
|
430
|
+
/* 2 */
|
431
|
+
}
|
432
|
+
|
433
|
+
/* ==========================================================================
|
434
|
+
Tables
|
435
|
+
========================================================================== */
|
436
|
+
/**
|
437
|
+
* Remove most spacing between table cells.
|
438
|
+
*/
|
439
|
+
/* line 393, ../sass/lib/_normalize.scss */
|
440
|
+
table {
|
441
|
+
border-collapse: collapse;
|
442
|
+
border-spacing: 0;
|
443
|
+
}
|
444
|
+
|
445
|
+
/* line 160, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_grid.scss */
|
446
|
+
.small, .medium, .large {
|
447
|
+
/* Grid column base at a 4-column context */
|
448
|
+
margin-left: 3.125%;
|
449
|
+
margin-right: 3.125%;
|
450
|
+
float: left;
|
451
|
+
/* Fixing double margin on IE6 */
|
452
|
+
_display: inline;
|
453
|
+
}
|
454
|
+
|
455
|
+
/* line 48, ../sass/core/_layouts.scss */
|
456
|
+
.page {
|
457
|
+
max-width: 300px;
|
458
|
+
/* Forcing static grid on IE6 and IE7 */
|
459
|
+
*width: 300px;
|
460
|
+
padding-left: 10px;
|
461
|
+
padding-right: 10px;
|
462
|
+
}
|
463
|
+
@media (min-width: 321px) {
|
464
|
+
/* line 48, ../sass/core/_layouts.scss */
|
465
|
+
.page {
|
466
|
+
max-width: 620px;
|
467
|
+
/* Forcing static grid on IE6 and IE7 */
|
468
|
+
*width: 620px;
|
469
|
+
}
|
470
|
+
}
|
471
|
+
@media (min-width: 641px) {
|
472
|
+
/* line 48, ../sass/core/_layouts.scss */
|
473
|
+
.page {
|
474
|
+
max-width: 940px;
|
475
|
+
/* Forcing static grid on IE6 and IE7 */
|
476
|
+
*width: 940px;
|
477
|
+
}
|
478
|
+
}
|
479
|
+
/* line 45, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_media.scss */
|
480
|
+
.no-media-queries .page {
|
481
|
+
/* Fallback for browsers not supporting media queries */
|
482
|
+
max-width: 940px;
|
483
|
+
/* Forcing static grid on IE6 and IE7 */
|
484
|
+
*width: 940px;
|
485
|
+
}
|
486
|
+
|
487
|
+
/* line 54, ../sass/core/_layouts.scss */
|
488
|
+
.grid {
|
489
|
+
margin-left: -3.33333%;
|
490
|
+
margin-right: -3.33333%;
|
491
|
+
}
|
492
|
+
@media (min-width: 321px) {
|
493
|
+
/* line 54, ../sass/core/_layouts.scss */
|
494
|
+
.grid {
|
495
|
+
margin-left: -1.6129%;
|
496
|
+
margin-right: -1.6129%;
|
497
|
+
}
|
498
|
+
}
|
499
|
+
@media (min-width: 641px) {
|
500
|
+
/* line 54, ../sass/core/_layouts.scss */
|
501
|
+
.grid {
|
502
|
+
margin-left: -1.06383%;
|
503
|
+
margin-right: -1.06383%;
|
504
|
+
}
|
505
|
+
}
|
506
|
+
/* line 45, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_media.scss */
|
507
|
+
.no-media-queries .grid {
|
508
|
+
/* Fallback for browsers not supporting media queries */
|
509
|
+
margin-left: -1.06383%;
|
510
|
+
margin-right: -1.06383%;
|
511
|
+
}
|
512
|
+
|
513
|
+
/* line 60, ../sass/core/_layouts.scss */
|
514
|
+
.small {
|
515
|
+
/* Spanning 2 of 4 columns */
|
516
|
+
width: 43.75%;
|
517
|
+
}
|
518
|
+
@media (min-width: 321px) {
|
519
|
+
/* line 60, ../sass/core/_layouts.scss */
|
520
|
+
.small {
|
521
|
+
/* Spanning 2 of 8 columns */
|
522
|
+
width: 21.875%;
|
523
|
+
margin-left: 1.5625%;
|
524
|
+
margin-right: 1.5625%;
|
525
|
+
}
|
526
|
+
}
|
527
|
+
@media (min-width: 641px) {
|
528
|
+
/* line 60, ../sass/core/_layouts.scss */
|
529
|
+
.small {
|
530
|
+
/* Spanning 3 of 12 columns */
|
531
|
+
width: 22.91667%;
|
532
|
+
margin-left: 1.04167%;
|
533
|
+
margin-right: 1.04167%;
|
534
|
+
}
|
535
|
+
}
|
536
|
+
/* line 45, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_media.scss */
|
537
|
+
.no-media-queries .small {
|
538
|
+
/* Fallback for browsers not supporting media queries */
|
539
|
+
/* Spanning 3 of 12 columns */
|
540
|
+
width: 22.91667%;
|
541
|
+
margin-left: 1.04167%;
|
542
|
+
margin-right: 1.04167%;
|
543
|
+
}
|
544
|
+
|
545
|
+
/* line 70, ../sass/core/_layouts.scss */
|
546
|
+
.medium {
|
547
|
+
/* Spanning 4 of 4 columns */
|
548
|
+
width: 93.75%;
|
549
|
+
}
|
550
|
+
@media (min-width: 321px) {
|
551
|
+
/* line 70, ../sass/core/_layouts.scss */
|
552
|
+
.medium {
|
553
|
+
/* Spanning 4 of 8 columns */
|
554
|
+
width: 46.875%;
|
555
|
+
margin-left: 1.5625%;
|
556
|
+
margin-right: 1.5625%;
|
557
|
+
}
|
558
|
+
}
|
559
|
+
@media (min-width: 641px) {
|
560
|
+
/* line 70, ../sass/core/_layouts.scss */
|
561
|
+
.medium {
|
562
|
+
/* Spanning 6 of 12 columns */
|
563
|
+
width: 47.91667%;
|
564
|
+
margin-left: 1.04167%;
|
565
|
+
margin-right: 1.04167%;
|
566
|
+
}
|
567
|
+
}
|
568
|
+
/* line 45, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_media.scss */
|
569
|
+
.no-media-queries .medium {
|
570
|
+
/* Fallback for browsers not supporting media queries */
|
571
|
+
/* Spanning 6 of 12 columns */
|
572
|
+
width: 47.91667%;
|
573
|
+
margin-left: 1.04167%;
|
574
|
+
margin-right: 1.04167%;
|
575
|
+
}
|
576
|
+
|
577
|
+
/* line 80, ../sass/core/_layouts.scss */
|
578
|
+
.large {
|
579
|
+
/* Spanning 4 of 4 columns */
|
580
|
+
width: 93.75%;
|
581
|
+
}
|
582
|
+
@media (min-width: 321px) {
|
583
|
+
/* line 80, ../sass/core/_layouts.scss */
|
584
|
+
.large {
|
585
|
+
/* Spanning 8 of 8 columns */
|
586
|
+
width: 96.875%;
|
587
|
+
margin-left: 1.5625%;
|
588
|
+
margin-right: 1.5625%;
|
589
|
+
}
|
590
|
+
}
|
591
|
+
@media (min-width: 641px) {
|
592
|
+
/* line 80, ../sass/core/_layouts.scss */
|
593
|
+
.large {
|
594
|
+
/* Spanning 12 of 12 columns */
|
595
|
+
width: 97.91667%;
|
596
|
+
margin-left: 1.04167%;
|
597
|
+
margin-right: 1.04167%;
|
598
|
+
}
|
599
|
+
}
|
600
|
+
/* line 45, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_media.scss */
|
601
|
+
.no-media-queries .large {
|
602
|
+
/* Fallback for browsers not supporting media queries */
|
603
|
+
/* Spanning 12 of 12 columns */
|
604
|
+
width: 97.91667%;
|
605
|
+
margin-left: 1.04167%;
|
606
|
+
margin-right: 1.04167%;
|
607
|
+
}
|
608
|
+
|
609
|
+
/* line 244, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_sprites.scss */
|
610
|
+
.classic, .indy, .alien {
|
611
|
+
background-image: url('../img/test-sprite.png?17351389285349');
|
612
|
+
background-repeat: no-repeat;
|
613
|
+
}
|
614
|
+
|
615
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-ms-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
|
616
|
+
/* line 248, ../../../../../../.rvm/gems/ruby-2.0.0-p247@nozebra/gems/ezy-0.2.9/sass/ezy/_sprites.scss */
|
617
|
+
.classic, .indy {
|
618
|
+
/* Retina sprite */
|
619
|
+
background-image: url('../img/test-sprite@2x.png?17351389285349');
|
620
|
+
background-size: 152px auto;
|
621
|
+
}
|
622
|
+
}
|
623
|
+
|
624
|
+
/* line 16, ../sass/partials/_sprite-examples.scss */
|
625
|
+
.classic {
|
626
|
+
background-position: 0 -281px;
|
627
|
+
width: 152px;
|
628
|
+
height: 135px;
|
629
|
+
}
|
630
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-ms-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
|
631
|
+
/* line 16, ../sass/partials/_sprite-examples.scss */
|
632
|
+
.classic {
|
633
|
+
/* Retina sprite */
|
634
|
+
background-position: 0 -140px;
|
635
|
+
}
|
636
|
+
}
|
637
|
+
|
638
|
+
/* line 22, ../sass/partials/_sprite-examples.scss */
|
639
|
+
.indy {
|
640
|
+
background-position: 0 -141px;
|
641
|
+
width: 128px;
|
642
|
+
height: 140px;
|
643
|
+
}
|
644
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-ms-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
|
645
|
+
/* line 22, ../sass/partials/_sprite-examples.scss */
|
646
|
+
.indy {
|
647
|
+
/* Retina sprite */
|
648
|
+
background-position: 0 0;
|
649
|
+
}
|
650
|
+
}
|
651
|
+
|
652
|
+
/* line 35, ../sass/partials/_sprite-examples.scss */
|
653
|
+
.alien {
|
654
|
+
background-position: 0 0;
|
655
|
+
width: 159px;
|
656
|
+
height: 141px;
|
657
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
/*
|
2
|
+
HTML5 Shiv v3.6.2pre | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
3
|
+
*/
|
4
|
+
(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
|
5
|
+
a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}</style>";
|
6
|
+
c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
|
7
|
+
"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",version:"3.6.2pre",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment();
|
8
|
+
for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
|