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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/ezy.gemspec +2 -2
  4. data/sass/ezy/grid/_layout.scss +30 -4
  5. data/templates/project/assets/config.rb +45 -0
  6. data/templates/project/assets/css/screen.css +657 -0
  7. data/templates/project/assets/img/test-sprite/alien.png +0 -0
  8. data/templates/project/assets/img/test-sprite/classic.png +0 -0
  9. data/templates/project/assets/img/test-sprite/indy.png +0 -0
  10. data/templates/project/assets/img/test-sprite.png +0 -0
  11. data/templates/project/assets/img/test-sprite@2x/classic.png +0 -0
  12. data/templates/project/assets/img/test-sprite@2x/indy.png +0 -0
  13. data/templates/project/assets/img/test-sprite@2x.png +0 -0
  14. data/templates/project/assets/js/html5shiv-3.6.2.js +8 -0
  15. data/templates/project/assets/sass/core/_base.scss +2 -0
  16. data/templates/project/assets/sass/core/_layouts.scss +88 -0
  17. data/templates/project/assets/sass/core/_settings.scss +2 -0
  18. data/templates/project/assets/sass/lib/_normalize.scss +396 -0
  19. data/templates/project/assets/sass/partials/_sprite-examples.scss +43 -0
  20. data/templates/project/assets/sass/screen.scss +17 -0
  21. data/templates/project/index.html +83 -23
  22. data/templates/project/manifest.rb +39 -8
  23. data/test/css/grid/elastic.css +5 -5
  24. data/test/css/grid/fluid.css +17 -17
  25. data/test/css/grid/gutter.css +18 -18
  26. data/test/css/grid/layout/fluid.css +12 -12
  27. data/test/css/grid/layout/grid-settings.css +149 -0
  28. data/test/css/grid/layout/responsive.css +41 -35
  29. data/test/css/grid/layout.css +20 -20
  30. data/test/css/grid/responsive.css +20 -20
  31. data/test/css/sprites/layout.css +2 -2
  32. data/test/css/sprites/position.css +4 -4
  33. data/test/css/sprites/repeat.css +2 -2
  34. data/test/css/sprites/resolution.css +2 -2
  35. data/test/css/sprites/responsive.css +7 -7
  36. data/test/css/sprites/retina.css +2 -2
  37. data/test/css/sprites/simple.css +1 -1
  38. data/test/css/sprites/spacing.css +2 -2
  39. data/test/html/grid/grid-settings.html +75 -0
  40. data/test/scss/grid/layout/grid-settings.scss +101 -0
  41. metadata +24 -7
  42. data/templates/project/_settings.scss +0 -32
  43. data/templates/project/screen.scss +0 -40
@@ -0,0 +1,88 @@
1
+ // ------------------------------------
2
+ // Layouts
3
+
4
+ // ------------------------------------
5
+ // Number of columns on different screen sizes
6
+
7
+ $columns-mobile : 4;
8
+ $columns-tablet : 8;
9
+ $columns-desktop : 12;
10
+
11
+ // ------------------------------------
12
+ // Grid settings
13
+
14
+ $column-width : 60px;
15
+ $gutter-width : 20px;
16
+ $grid-padding : 10px;
17
+ $total-columns : $columns-mobile; // mobile first
18
+ $is-fluid : true;
19
+
20
+ // ------------------------------------
21
+ // Breakpoint settings
22
+
23
+ // Selector for browsers not supporting media queries
24
+ // (IE8 and down)
25
+ $legacy-selector: ".no-media-queries";
26
+
27
+ // ------------------------------------
28
+ // Defining media query breakpoints
29
+
30
+ $breakpoint-tablet : set-breakpoint( $min: grid-width( $columns-mobile ) + 1 );
31
+ $breakpoint-desktop : set-breakpoint( $min: grid-width( $columns-tablet ) + 1, $legacy-support: true ); // Default for old IE
32
+
33
+ // ------------------------------------
34
+ // Defining grid layouts
35
+
36
+ $mobile : set-layout( $total-columns, $grid-padding ); // mobile first
37
+ $tablet : set-layout( $columns-tablet, $at-breakpoint: $breakpoint-tablet );
38
+ $desktop : set-layout( $columns-desktop, $at-breakpoint: $breakpoint-desktop );
39
+
40
+ // ------------------------------------
41
+ // Initializing grid for cleaner output
42
+
43
+ @include grid-init();
44
+
45
+ // ------------------------------------
46
+ // Grid layouts
47
+
48
+ .page {
49
+ @include each-layout {
50
+ @include master;
51
+ }
52
+ }
53
+
54
+ .grid {
55
+ @include each-layout {
56
+ @include container;
57
+ }
58
+ }
59
+
60
+ .small {
61
+ @include span-columns( 2 ); // 2 of 4 columns on mobile
62
+ @include at-layout( $tablet ) {
63
+ @include span-columns( 2 ); // 2 of 8 columns on tablet
64
+ }
65
+ @include at-layout( $desktop ) {
66
+ @include span-columns( 3 ); // 3 of 12 columns on desktop
67
+ }
68
+ }
69
+
70
+ .medium {
71
+ @include span-columns( 4 ); // 4 of 4 columns on mobile
72
+ @include at-layout( $tablet ) {
73
+ @include span-columns( 4 ); // 4 of 8 columns on tablet
74
+ }
75
+ @include at-layout( $desktop ) {
76
+ @include span-columns( 6 ); // 6 of 12 columns on desktop
77
+ }
78
+ }
79
+
80
+ .large {
81
+ @include span-columns( 4 ); // 4 of 4 columns on mobile
82
+ @include at-layout( $tablet ) {
83
+ @include span-columns( 8 ); // 8 of 8 columns on tablet
84
+ }
85
+ @include at-layout( $desktop ) {
86
+ @include span-columns( 12 ); // 12 of 12 columns on desktio
87
+ }
88
+ }
@@ -0,0 +1,2 @@
1
+ // ------------------------------------
2
+ // Project settings
@@ -0,0 +1,396 @@
1
+ /*! normalize.css v2.1.2 | MIT License | git.io/normalize */
2
+
3
+ /* ==========================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Correct `block` display not defined in IE 8/9.
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ nav,
21
+ section,
22
+ summary {
23
+ display: block;
24
+ }
25
+
26
+ /**
27
+ * Correct `inline-block` display not defined in IE 8/9.
28
+ */
29
+
30
+ audio,
31
+ canvas,
32
+ video {
33
+ display: inline-block;
34
+ }
35
+
36
+ /**
37
+ * Prevent modern browsers from displaying `audio` without controls.
38
+ * Remove excess height in iOS 5 devices.
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ height: 0;
44
+ }
45
+
46
+ /**
47
+ * Address styling not present in IE 8/9.
48
+ */
49
+
50
+ [hidden] {
51
+ display: none;
52
+ }
53
+
54
+ /* ==========================================================================
55
+ Base
56
+ ========================================================================== */
57
+
58
+ /**
59
+ * 1. Set default font family to sans-serif.
60
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
61
+ * user zoom.
62
+ */
63
+
64
+ html {
65
+ font-family: sans-serif; /* 1 */
66
+ -ms-text-size-adjust: 100%; /* 2 */
67
+ -webkit-text-size-adjust: 100%; /* 2 */
68
+ }
69
+
70
+ /**
71
+ * Remove default margin.
72
+ */
73
+
74
+ body {
75
+ margin: 0;
76
+ }
77
+
78
+ /* ==========================================================================
79
+ Links
80
+ ========================================================================== */
81
+
82
+ /**
83
+ * Address `outline` inconsistency between Chrome and other browsers.
84
+ */
85
+
86
+ a:focus {
87
+ outline: thin dotted;
88
+ }
89
+
90
+ /**
91
+ * Improve readability when focused and also mouse hovered in all browsers.
92
+ */
93
+
94
+ a:active,
95
+ a:hover {
96
+ outline: 0;
97
+ }
98
+
99
+ /* ==========================================================================
100
+ Typography
101
+ ========================================================================== */
102
+
103
+ /**
104
+ * Address variable `h1` font-size and margin within `section` and `article`
105
+ * contexts in Firefox 4+, Safari 5, and Chrome.
106
+ */
107
+
108
+ h1 {
109
+ font-size: 2em;
110
+ margin: 0.67em 0;
111
+ }
112
+
113
+ /**
114
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
115
+ */
116
+
117
+ abbr[title] {
118
+ border-bottom: 1px dotted;
119
+ }
120
+
121
+ /**
122
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
123
+ */
124
+
125
+ b,
126
+ strong {
127
+ font-weight: bold;
128
+ }
129
+
130
+ /**
131
+ * Address styling not present in Safari 5 and Chrome.
132
+ */
133
+
134
+ dfn {
135
+ font-style: italic;
136
+ }
137
+
138
+ /**
139
+ * Address differences between Firefox and other browsers.
140
+ */
141
+
142
+ hr {
143
+ -moz-box-sizing: content-box;
144
+ box-sizing: content-box;
145
+ height: 0;
146
+ }
147
+
148
+ /**
149
+ * Address styling not present in IE 8/9.
150
+ */
151
+
152
+ mark {
153
+ background: #ff0;
154
+ color: #000;
155
+ }
156
+
157
+ /**
158
+ * Correct font family set oddly in Safari 5 and Chrome.
159
+ */
160
+
161
+ code,
162
+ kbd,
163
+ pre,
164
+ samp {
165
+ font-family: monospace, serif;
166
+ font-size: 1em;
167
+ }
168
+
169
+ /**
170
+ * Improve readability of pre-formatted text in all browsers.
171
+ */
172
+
173
+ pre {
174
+ white-space: pre-wrap;
175
+ }
176
+
177
+ /**
178
+ * Set consistent quote types.
179
+ */
180
+
181
+ q {
182
+ quotes: "\201C" "\201D" "\2018" "\2019";
183
+ }
184
+
185
+ /**
186
+ * Address inconsistent and variable font size in all browsers.
187
+ */
188
+
189
+ small {
190
+ font-size: 80%;
191
+ }
192
+
193
+ /**
194
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
195
+ */
196
+
197
+ sub,
198
+ sup {
199
+ font-size: 75%;
200
+ line-height: 0;
201
+ position: relative;
202
+ vertical-align: baseline;
203
+ }
204
+
205
+ sup {
206
+ top: -0.5em;
207
+ }
208
+
209
+ sub {
210
+ bottom: -0.25em;
211
+ }
212
+
213
+ /* ==========================================================================
214
+ Embedded content
215
+ ========================================================================== */
216
+
217
+ /**
218
+ * Remove border when inside `a` element in IE 8/9.
219
+ */
220
+
221
+ img {
222
+ border: 0;
223
+ }
224
+
225
+ /**
226
+ * Correct overflow displayed oddly in IE 9.
227
+ */
228
+
229
+ svg:not(:root) {
230
+ overflow: hidden;
231
+ }
232
+
233
+ /* ==========================================================================
234
+ Figures
235
+ ========================================================================== */
236
+
237
+ /**
238
+ * Address margin not present in IE 8/9 and Safari 5.
239
+ */
240
+
241
+ figure {
242
+ margin: 0;
243
+ }
244
+
245
+ /* ==========================================================================
246
+ Forms
247
+ ========================================================================== */
248
+
249
+ /**
250
+ * Define consistent border, margin, and padding.
251
+ */
252
+
253
+ fieldset {
254
+ border: 1px solid #c0c0c0;
255
+ margin: 0 2px;
256
+ padding: 0.35em 0.625em 0.75em;
257
+ }
258
+
259
+ /**
260
+ * 1. Correct `color` not being inherited in IE 8/9.
261
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
262
+ */
263
+
264
+ legend {
265
+ border: 0; /* 1 */
266
+ padding: 0; /* 2 */
267
+ }
268
+
269
+ /**
270
+ * 1. Correct font family not being inherited in all browsers.
271
+ * 2. Correct font size not being inherited in all browsers.
272
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
273
+ */
274
+
275
+ button,
276
+ input,
277
+ select,
278
+ textarea {
279
+ font-family: inherit; /* 1 */
280
+ font-size: 100%; /* 2 */
281
+ margin: 0; /* 3 */
282
+ }
283
+
284
+ /**
285
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
286
+ * the UA stylesheet.
287
+ */
288
+
289
+ button,
290
+ input {
291
+ line-height: normal;
292
+ }
293
+
294
+ /**
295
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
296
+ * All other form control elements do not inherit `text-transform` values.
297
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
298
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
299
+ */
300
+
301
+ button,
302
+ select {
303
+ text-transform: none;
304
+ }
305
+
306
+ /**
307
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
308
+ * and `video` controls.
309
+ * 2. Correct inability to style clickable `input` types in iOS.
310
+ * 3. Improve usability and consistency of cursor style between image-type
311
+ * `input` and others.
312
+ */
313
+
314
+ button,
315
+ html [type="button"], /* 1 */
316
+ [type="reset"],
317
+ [type="submit"] {
318
+ -webkit-appearance: button; /* 2 */
319
+ cursor: pointer; /* 3 */
320
+ }
321
+
322
+ /**
323
+ * Re-set default cursor for disabled elements.
324
+ */
325
+
326
+ button[disabled],
327
+ html input[disabled] {
328
+ cursor: default;
329
+ }
330
+
331
+ /**
332
+ * 1. Address box sizing set to `content-box` in IE 8/9.
333
+ * 2. Remove excess padding in IE 8/9.
334
+ */
335
+
336
+ [type="checkbox"],
337
+ [type="radio"] {
338
+ box-sizing: border-box; /* 1 */
339
+ padding: 0; /* 2 */
340
+ }
341
+
342
+ /**
343
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
344
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
345
+ * (include `-moz` to future-proof).
346
+ */
347
+
348
+ [type="search"] {
349
+ -webkit-appearance: textfield; /* 1 */
350
+ -moz-box-sizing: content-box;
351
+ -webkit-box-sizing: content-box; /* 2 */
352
+ box-sizing: content-box;
353
+ }
354
+
355
+ /**
356
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
357
+ * on OS X.
358
+ */
359
+
360
+ [type="search"]::-webkit-search-cancel-button,
361
+ [type="search"]::-webkit-search-decoration {
362
+ -webkit-appearance: none;
363
+ }
364
+
365
+ /**
366
+ * Remove inner padding and border in Firefox 4+.
367
+ */
368
+
369
+ button::-moz-focus-inner,
370
+ input::-moz-focus-inner {
371
+ border: 0;
372
+ padding: 0;
373
+ }
374
+
375
+ /**
376
+ * 1. Remove default vertical scrollbar in IE 8/9.
377
+ * 2. Improve readability and alignment in all browsers.
378
+ */
379
+
380
+ textarea {
381
+ overflow: auto; /* 1 */
382
+ vertical-align: top; /* 2 */
383
+ }
384
+
385
+ /* ==========================================================================
386
+ Tables
387
+ ========================================================================== */
388
+
389
+ /**
390
+ * Remove most spacing between table cells.
391
+ */
392
+
393
+ table {
394
+ border-collapse: collapse;
395
+ border-spacing: 0;
396
+ }
@@ -0,0 +1,43 @@
1
+ // ------------------------------------
2
+ // Sprite examples
3
+
4
+ // ------------------------------------
5
+ // Create sprite
6
+
7
+ @include make-sprite(
8
+ $name: "test",
9
+ $folder: "test-sprite",
10
+ $folder-retina: "test-sprite@2x"
11
+ );
12
+
13
+ // ------------------------------------
14
+ // Use sprite
15
+
16
+ .classic {
17
+ @include background-sprite( "test", "classic" );
18
+ width: 152px;
19
+ height: 135px;
20
+ }
21
+
22
+ .indy {
23
+ @include background-sprite(
24
+ $name: "test",
25
+ $image: "indy"
26
+ );
27
+ width: 128px;
28
+ height: 140px;
29
+ }
30
+
31
+ // ------------------------------------
32
+ // Not using retina: this particular
33
+ // image doesn't exist as a retina asset
34
+
35
+ .alien {
36
+ @include background-sprite(
37
+ $name: "test",
38
+ $image: "alien",
39
+ $use-retina: false
40
+ );
41
+ width: 159px;
42
+ height: 141px;
43
+ }
@@ -0,0 +1,17 @@
1
+ // ------------------------------------
2
+ // Imports
3
+
4
+ // Import external frameworks
5
+ @import "compass";
6
+ @import "ezy";
7
+
8
+ // CSS Reset
9
+ @import "lib/normalize";
10
+
11
+ // Core styles
12
+ @import "core/settings";
13
+ @import "core/base";
14
+ @import "core/layouts";
15
+
16
+ // Style partials
17
+ @import "partials/sprite-examples";
@@ -1,38 +1,98 @@
1
1
  <!DOCTYPE html>
2
- <!--[if lt IE 7]> <html class="no-js no-media-queries ie6"> <![endif]-->
3
- <!--[if IE 7]> <html class="no-js no-media-queries ie7"> <![endif]-->
4
- <!--[if lt IE 9]> <html class="no-media-queries"> <![endif]-->
2
+ <!--[if lt IE 7]> <html class="no-js no-media-queries ie6 lt-ie9 lt-ie8"> <![endif]-->
3
+ <!--[if IE 7]> <html class="no-js no-media-queries ie7 lt-ie9 lt-ie8"> <![endif]-->
4
+ <!--[if lt IE 9]> <html class="no-media-queries ie8 lt-ie9"> <![endif]-->
5
5
  <!--[if gt IE 8]><!--> <html> <!--<![endif]-->
6
6
  <head>
7
7
  <meta charset="utf-8">
8
8
 
9
- <title>Ezy Grid</title>
9
+ <title>Go Ezy</title>
10
10
 
11
- <meta name="description" content="Getting started with Ezy Grid">
11
+ <meta name="description" content="Getting started with Ezy">
12
12
  <meta name="viewport" content="width=device-width">
13
13
 
14
- <link href="css/demo.css" rel="stylesheet">
14
+ <link href="assets/css/screen.css" rel="stylesheet">
15
+
16
+ <!--[if lt IE 9]>
17
+ <script src="javascripts/lib/html5shiv-3.6.2.js"></script>
18
+ <![endif]-->
15
19
 
16
20
  </head>
17
21
  <body>
18
22
 
19
- <div class="page">
20
- <div class="grid">
21
- <div class="column">
22
- brew ale, bottle conditioning alcohol saccharification wort chiller. bottom fermenting yeast hand pump bunghole original gravity. bung conditioning ibu all-malt hoppy ipa?
23
- </div>
24
- <div class="column">
25
- brew ale, bottle conditioning alcohol saccharification wort chiller. bottom fermenting yeast hand pump bunghole original gravity. bung conditioning ibu all-malt hoppy ipa?
26
- </div>
27
- <div class="column">
28
- brew ale, bottle conditioning alcohol saccharification wort chiller. bottom fermenting yeast hand pump bunghole original gravity. bung conditioning ibu all-malt hoppy ipa?
29
- </div>
30
- <div class="column">
31
- brew ale, bottle conditioning alcohol saccharification wort chiller. bottom fermenting yeast hand pump bunghole original gravity. bung conditioning ibu all-malt hoppy ipa?
32
- </div>
33
- <div class="column">
34
- brew ale, bottle conditioning alcohol saccharification wort chiller. bottom fermenting yeast hand pump bunghole original gravity. bung conditioning ibu all-malt hoppy ipa?
23
+ <article>
24
+ <h1>Grids</h1>
25
+
26
+ <div class="page">
27
+ <div class="grid">
28
+ <div class="small">
29
+ <h3>Small</h3>
30
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
31
+ </div>
32
+ <div class="small">
33
+ <h3>Small</h3>
34
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
35
+ </div>
36
+ <div class="small">
37
+ <h3>Small</h3>
38
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
39
+ </div>
40
+ <div class="small">
41
+ <h3>Small</h3>
42
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
43
+ </div>
44
+ <div class="small">
45
+ <h3>Small</h3>
46
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
47
+ </div>
48
+ <div class="small">
49
+ <h3>Small</h3>
50
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
51
+ </div>
52
+ <div class="medium">
53
+ <h3>Medium</h3>
54
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
55
+ </div>
56
+ <div class="large">
57
+ <h3>Large</h3>
58
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
59
+ </div>
60
+ <div class="medium">
61
+ <h3>Medium</h3>
62
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
63
+ </div>
64
+ <div class="small">
65
+ <h3>Small</h3>
66
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
67
+ </div>
68
+ <div class="small">
69
+ <h3>Small</h3>
70
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
71
+ </div>
72
+ <div class="medium">
73
+ <h3>Medium</h3>
74
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
75
+ </div>
76
+ <div class="medium">
77
+ <h3>Medium</h3>
78
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
79
+ </div>
80
+ <div class="large">
81
+ <h3>Large</h3>
82
+ <p>Literally bitters beard deep v, mumblecore hella trust fund irony esse. Terry Richardson tousled duis, id trust fund irony roof party Tumblr Carles Thundercats fanny pack typewriter swag.</p>
83
+ </div>
84
+ </div>
35
85
  </div>
36
- </div>
86
+ </article>
87
+
88
+ <article>
89
+ <h1>Sprites</h1>
90
+
91
+ <div class="classic">&nbsp;</div>
92
+ <div class="indy">&nbsp;</div>
93
+ <div class="alien">&nbsp;</div>
94
+ </article>
95
+
96
+
37
97
  </body>
38
98
  </html>