-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
444 lines (441 loc) · 16.4 KB
/
index.html
File metadata and controls
444 lines (441 loc) · 16.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
<!DOCTYPE html>
<!-- Internet explorer Hacks--><!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="css/Stabilized.css">
<title>Stabilized | A CSS Boilerplate by Lightwell</title>
<style>
.columns, .column { background: #eee; text-align: center; }
.columns>p, .column>p { background: #ddd; margin: 0; padding: 5px;}
.row.header { margin: 0; }
.navbar { margin: 15px 0; }
.row.header .columns { background: #fff; margin: 0; }
.row.subheader .columns { background: #fff; text-align: left; }
.row.bodytext .columns { background: #fff; text-align: left; }
</style>
</head>
<body>
<div class="container">
<div class="row header">
<div class="twelve columns">
<h1>Stabilized</h1>
</div>
</div>
</div>
<div class="navbar">
<input type="checkbox" id="toggle">
<div class="nav">
<label for="toggle" onclick class="toggle"></label>
<ul class="menu">
<li><a href="http://github.com" class="first">Home</a></li>
<li><a href="https://github.com/lightwell3d/ConnorKitchens">Git Repo</a></li>
<li><a href="http://lightwell3d.com">Lightwell</a></li>
<li><a href="#">Menu Item Four</a></li>
<li><a href="#">Menu Item Five</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="row header">
<div class="twelve columns"><p>A responsive css boilerplate by <a href="http://lightwell3d.com">Lightwell</a>.</p>
</div>
</div>
<div class="row subheader">
<div class="eight columns offset-by-two"><p>Below is a set of examples exploring some possible uses of this boilerplate. Keep in mind that it is for demonstration purposes. You can find the git repository on github at <a href="https://github.com/lightwell3d/Stabilized">github.com/lightwell3d/Stabilized</a>. Feel free to fork or contribute.</p>
</div>
</div>
<div class="row subheader">
<div class="twelve columns">
<h3 style="text-align: center;">Contents</h3>
</div>
<div class="four columns offset-by-two"><ul>
<li><a href="#grid-structure">Grid Structure</a><ul>
<li><a href="#grid-structure-basic-grid">Basic Grid</a></li>
<li><a href="#grid-structure-column-offsets">Column Offsets</a></li>
<li><a href="#grid-structure-centered-columns">Centered Columns</a></li>
</ul>
</li>
<li><a href="#block-grid">Block Grid</a></li>
<li><a href="#visibility">Visibility</a></li>
<li><a href="#typography">Typography</a></li>
</ul>
</div>
</div><a id="grid-structure"></a>
<hr>
<div class="row header">
<div class="twelve columns">
<h2>Grid Structure</h2>
</div>
</div>
<hr><a id="grid-structure-basic-grid"></a>
<div class="row subheader">
<div class="twelve columns">
<h3>Basic Grid (In Rows)</h3>
</div>
</div>
<div class="row">
<div class="six columns">
<p>six cols</p>
</div>
<div class="six columns">
<p>six cols</p>
</div>
</div>
<div class="row">
<div class="four columns">
<p>four cols</p>
</div>
<div class="four columns">
<p>four cols</p>
</div>
<div class="four columns">
<p>four cols</p>
</div>
</div>
<div class="row">
<div class="three columns">
<p>three cols</p>
</div>
<div class="three columns">
<p>three cols</p>
</div>
<div class="three columns">
<p>three cols</p>
</div>
<div class="three columns">
<p>three cols</p>
</div>
</div>
<div class="row">
<div class="two columns">
<p>two cols</p>
</div>
<div class="two columns">
<p>two cols</p>
</div>
<div class="two columns">
<p>two cols</p>
</div>
<div class="two columns">
<p>two cols</p>
</div>
<div class="two columns">
<p>two cols</p>
</div>
<div class="two columns">
<p>two cols</p>
</div>
</div>
<div class="row">
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
<div class="one column">
<p>one col</p>
</div>
</div>
<div class="row subheader">
<div class="twelve columns">
<h3>Basic Grid (Nested)</h3>
</div>
</div>
<div class="row">
<div class="six columns">
<p>six cols
<div class="three columns">
<p>three cols</p>
</div>
<div class="nine columns">
<p>nine cols</p>
</div>
</p>
</div>
<div class="six columns">
<p>six cols
<div class="six columns">
<p>six cols</p>
</div>
<div class="three columns">
<p>three cols</p>
</div>
<div class="three columns">
<p>three cols</p>
</div>
</p>
</div>
</div><a id="grid-structure-column-offsets"></a>
<div class="row subheader">
<div class="twelve columns">
<h3>Column Offsets</h3>
</div>
</div>
<div class="row">
<div class="eleven columns offset-by-one">
<p>.eleven.columns.offset-by-one</p>
</div>
</div>
<div class="row">
<div class="ten columns offset-by-two">
<p>.ten.columns.offset-by-two</p>
</div>
</div>
<div class="row">
<div class="nine columns offset-by-three">
<p>.nine.columns.offset-by-three</p>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-four">
<p>.eight.columns.offset-by-four</p>
</div>
</div>
<div class="row">
<div class="seven columns offset-by-five">
<p>.seven.columns.offset-by-five</p>
</div>
</div>
<div class="row">
<div class="six columns offset-by-six">
<p>.six.columns.offset-by-six</p>
</div>
</div>
<div class="row">
<div class="five columns offset-by-seven">
<p>.five.columns.offset-by-seven</p>
</div>
</div>
<div class="row">
<div class="four columns offset-by-eight">
<p>.four.columns.offset-by-eight</p>
</div>
</div>
<div class="row">
<div class="three columns offset-by-nine">
<p>.three.columns.offset-by-nine</p>
</div>
</div>
<div class="row">
<div class="two columns offset-by-ten">
<p>.two</p>
</div>
</div>
<div class="row">
<div class="one column offset-by-eleven">
<p>.one</p>
</div>
</div><a id="grid-structure-centered-columns"></a>
<div class="row subheader">
<div class="twelve columns">
<h3>Centered Columns</h3>
</div>
</div>
<div class="row">
<div class="eight columns centered">
<p>If you have an even number of columns that need to be centered, you can use the "centered" class, or you can use column offsets. What about when you have an odd-sized column, though? You should stick to the "centered" class.</p>
</div>
</div>
<div class="row">
<div class="three columns centered">
<p>.three.columns.centered</p>
</div>
</div>
<div class="row">
<div class="six columns centered">
<p>.six.columns.centered</p>
</div>
</div>
<div class="row">
<div class="nine columns centered">
<p>.nine.columns.centered</p>
</div>
</div>
<div class="row">
<div class="twelve columns centered">
<p>.twelve.columns.centered</p>
</div>
</div><a id="block-grid"></a>
<hr>
<div class="row header">
<div class="twelve columns">
<h2>Block Grid</h2>
</div>
</div>
<hr>
<div class="row">
<ul class="block-grid three-blocks">
<li><img src="http://placehold.it/280x200&text=LW+3"></li>
<li><img src="http://placehold.it/280x200&text=LW+3"></li>
<li><img src="http://placehold.it/280x200&text=LW+3"></li>
<li><img src="http://placehold.it/280x200&text=LW+3"></li>
<li><img src="http://placehold.it/280x200&text=LW+3"></li>
<li><img src="http://placehold.it/280x200&text=LW+3"></li>
</ul>
<ul class="block-grid seven-blocks">
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
<li><img src="http://placehold.it/280x200&text=LW+7"></li>
</ul>
</div>
<div class="row">
<div class="six columns centered">
<p>This is an example of a block grid inside of a centered column within a row. Block grids are confined to the size of the parent element, so you can make and use a block grid anywhere within your website layout.</p>
<ul class="block-grid five-blocks">
<li><img src="http://placehold.it/280x200&text=LW+5"></li>
<li><img src="http://placehold.it/280x200&text=LW+5"></li>
<li><img src="http://placehold.it/280x200&text=LW+5"></li>
<li><img src="http://placehold.it/280x200&text=LW+5"></li>
<li><img src="http://placehold.it/280x200&text=LW+5"></li>
<li><img src="http://placehold.it/280x200&text=LW+5"></li>
</ul>
</div>
</div><a id="visibility"></a>
<hr>
<div class="row header">
<div class="twelve columns">
<h2>Visibility</h2>
</div>
</div>
<hr>
<div class="row">
<div class="twelve columns show-for-xlarge-only">
<p>.show-for-xlarge-only</p>
</div>
<div class="twelve columns show-for-large-only">
<p>.show-for-large-only</p>
</div>
<div class="twelve columns show-for-medium-only">
<p>.show-for-medium-only</p>
</div>
<div class="twelve columns show-for-small-only">
<p>.show-for-small-only</p>
</div>
<div class="twelve columns show-for-xsmall-only">
<p>.show-for-xsmall-only</p>
</div>
</div>
<div class="row">
<div class="twelve columns show-for-large-up">
<p>.show-for-large-up</p>
</div>
<div class="twelve columns show-for-medium-up">
<p>.show-for-medium-up</p>
</div>
<div class="twelve columns show-for-small-up">
<p>.show-for-small-up</p>
</div>
</div>
<div class="row">
<div class="twelve columns hide-for-large-up">
<p>.hide-for-large-up</p>
</div>
<div class="twelve columns hide-for-medium-up">
<p>.hide-for-medium-up</p>
</div>
<div class="twelve columns hide-for-small-up">
<p>.hide-for-small-up</p>
</div>
</div><a id="typography"></a>
<hr>
<div class="row header">
<div class="twelve columns">
<h2>Typography</h2>
</div>
</div>
<hr>
<div class="row subheader">
<div class="twelve columns">
<h3>Headers</h3>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-two">
<h1>This is a <h1> header</h1>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-two">
<h2>This is a <h2> header</h2>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-two">
<h3>This is a <h3> header</h3>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-two">
<h4>This is a <h4> header</h4>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-two">
<h5>This is a <h5> header</h5>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-two">
<h6>This is a <h6> header</h6>
</div>
</div>
<div class="row">
<div class="six columns offset-by-three">
<p>Even though the above examples are meant to demonstrate the typography of the header sizes, you should know that they also reveal a convenient way to center columns. Instead of using the "centered" class, you can just specify a column size and an offset size. For example, the columns which contain the header text above are ".eight.columns.offset-by-two". The two-column offset dissappears and the columns are displayed full-width when the screen gets narrow enough. Cool!</p>
</div>
</div>
<div class="row subheader">
<div class="twelve columns">
<h3>Body Text</h3>
</div>
</div>
<div class="row bodytext">
<div class="twelve columns">
<p>Narwhal fashion axe Banksy, VHS banh mi farm-to-table keffiyeh Thundercats. Nostrud et tempor quis farm-to-table id bespoke. Vinyl YOLO pariatur, typewriter master cleanse dolor selvage incididunt Cosby sweater cillum gastropub fugiat. Occupy blog mollit, nesciunt synth narwhal plaid tofu. Nihil Intelligentsia DIY, Godard gentrify typewriter nisi vinyl swag blog. Delectus labore seitan, readymade occupy synth fixie selfies four loko meggings scenester aute Terry Richardson. Art party placeat bicycle rights, twee letterpress paleo voluptate cliche mumblecore kitsch elit artisan.</p>
<p>Fingerstache wolf VHS laboris, XOXO cupidatat selfies cillum quis pop-up voluptate Cosby sweater enim scenester pork belly. Church-key tousled keffiyeh pour-over you probably haven't heard of them lomo. Cillum cray Blue Bottle, sed slow-carb tattooed before they sold out proident labore mollit you probably haven't heard of them consectetur single-origin coffee Schlitz. Polaroid mollit magna sriracha selvage, XOXO locavore fingerstache excepteur American Apparel. Intelligentsia Schlitz cred pop-up, cliche lomo Odd Future synth cardigan bitters aliquip semiotics. Laborum gluten-free eiusmod, et eu asymmetrical dolore typewriter veniam Godard culpa direct trade reprehenderit iPhone church-key. Non tofu cornhole kitsch VHS, 3 wolf moon Vice occaecat Tumblr keytar lo-fi.</p>
<p>Cosby sweater sapiente, incididunt excepteur paleo pop-up polaroid dolore dreamcatcher vegan roof party food truck. Distillery quinoa deserunt direct trade cupidatat, aesthetic nihil ethnic VHS magna Cosby sweater. Dolore Neutra bitters food truck. Lomo nostrud exercitation, tempor before they sold out selfies try-hard Cosby sweater laboris High Life jean shorts food truck. Gentrify wayfarers commodo, aesthetic laboris sriracha dolore. Try-hard paleo fap Terry Richardson ethnic. Adipisicing elit Shoreditch keffiyeh sartorial, cray reprehenderit four loko American Apparel vegan Portland farm-to-table.</p>
<p>Aute sint semiotics squid, Bushwick banh mi vero. Skateboard aesthetic wolf typewriter Bushwick freegan, cred raw denim officia you probably haven't heard of them biodiesel. Shabby chic eiusmod Thundercats raw denim wayfarers sartorial chia bespoke. Irure cliche fugiat, authentic Terry Richardson cupidatat banh mi ullamco master cleanse wolf 90's. Incididunt gentrify PBR flexitarian 8-bit. Roof party Thundercats put a bird on it actually. Nostrud ullamco velit mollit Intelligentsia kitsch.</p>
</div>
</div>
</div>
</body>