This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·476 lines (406 loc) · 17.8 KB
/
index.html
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EDX Grid system</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/screen.css">
<script type="text/javascript" src="//use.typekit.net/eem7dfr.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<div class="wrapper">
<div class="g">
<div class="g__col">
<h1>EDX Grid pattern</h1>
<h2>A customisable, fully responsive grid system with multiple breakpoints.</h2>
</div>
</div><!-- //.grid -->
<div class="g">
<div class="g__col
g__col--12">
<div class="island--secondary">
<div class="island__container">
<h4>Features</h4>
<ul>
<li>Fluid grid with fixed gutters.</li>
<li>Multiple breakpoints for fine control over responsive components.</li>
<li>Breakpoint specific grid columns</li>
<li>Push columns left or right and center smaller columns.</li>
<li>No <code>.clear</code> <code>.start</code> or <code>.end</code> classes necessary.</li>
</ul>
</div><!-- //.island-container -->
</div><!-- //.island -->
</div><!-- //.g__col -->
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Grid</h3>
<p>The <code>.g</code> component simply adds negative horizontal margins so that we don’t need any .last or .first <code>.g__col</code> classes. Use an alternative wrapper class to set max-width.</p>
</div>
<div class="cell">.g</div>
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Fixed gutters</h3>
<p>Gutters are fixed width, but can change depending on the breakpoint. In this example the gutter is increased to 25px at Breakpoint D and above.</p>
</div>
</div>
<div class="g">
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
</div>
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Grid columns</h3>
<p>By default a <code>.g__col</code> is 100% of the width of <code>.g</code>. These columns have many modifiers available for sizing the various units within, whilst the width of each is dependent on the number of columns set and the width of the container itself.</p>
<p>Columns can be aligned to the right with the <code>.g__align--right</code> class. Due to the way that floats are handled by CSS, sometimes we’ll need to add extra <code>.g</code> objects in order to clear columns properly.</p>
</div>
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--4">
<div class="cell">.g__col--4</div>
</div><!-- //.g__col -->
<div class="g__col
g__col--4
g__align--right">
<div class="cell">.g__align--right</div>
</div><!-- //.g__col -->
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--5">
<div class="cell">.g__col--5</div>
</div><!-- //.g__col -->
<div class="g__col
g__col--5
g__align--right">
<div class="cell">.g__align--right</div>
</div><!-- //.g__col -->
</div><!-- //.grid__container -->
<div class="g">
<div class="g__col
g__col--12">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--2">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--5">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--10">
<div class="cell"></div>
</div>
<div class="g__col
g__col--2">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--2">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--8">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--1">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--1">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--5">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--1">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--1">
<div class="cell"></div>
</div>
<div class="g__col
g__col--2">
<div class="cell"></div>
</div><!-- //.g__col -->
<div class="g__col
g__col--3">
<div class="cell"></div>
</div><!-- //.g__col -->
</div><!-- //.grid -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Centering columns</h3>
<p>Columns can be centered with the <code>.g__col--center</code> class. It’s also possible to center columns to the left at medium breakpoints, then right or left align them at larger breakpoints.</p>
</div>
</div>
<div class="g">
<div class="g__col
g__col--8
g__col--center">
<div class="cell"><pre>
.g__col
.g__col--8
.g__col--center</pre></div>
</div>
<div class="g__col
g__col--10
g__col--center">
<div class="cell"><pre>
.g__col
.g__col--10
.g__col--center</pre></div>
</div>
<div class="g__col
g__col--6
g__col--center">
<div class="cell"></div>
</div>
</div><!-- g -->
<div class="g">
<div class="g__col
g__col--4
g__col--center">
<div class="cell"></div>
</div>
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--2
g__col--center">
<div class="cell"></div>
</div>
</div><!-- //.grid -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Responsive columns</h3>
<p>Depending on the number of breakpoints in the grid system, you can have any number of combinations of the grid, for instance if a design component needed to be small width at mobile, wide at tablet and then small again at desktop. First you’d need to specify the class <code>.g__col--8--medium</code> followed by <code>.g__col--6--large</code>. This system allows for an enormous number of design decisions to be made between these breakpoints.</p>
</div><!-- //.g__col -->
</div><!-- //.grid -->
<div class="g">
<div class="g__col
g__col--10
g__col--9--small
g__col--8--medium
g__col--7--large
g__col--6--largest">
<div class="cell">
<pre>.g__col
.g__col--10
.g__col--9--small
.g__col--8--medium
.g__col--7--large
.g__col--6--largest</pre>
</div>
</div><!-- g__col -->
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--9
g__col--3--medium
g__col--2--large
g__col--6--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--3
g__col--9--medium
g__col--8--large
g__col--6--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--4
g__col--1--medium
g__col--3--large
g__col--12--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1
g__col--6--medium
g__col--1--large
g__col--1--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--4
g__col--6--medium
g__col--1--large
g__col--2--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1
g__col--2--medium
g__col--1--large
g__col--1--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--4
g__col--2--medium
g__col--10--large
g__col--6--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--2
g__col--1--medium
g__col--2--large
g__col--2--largest">
<div class="cell"></div>
</div>
<div class="g__col
g__col--1
g__col--2--medium
g__col--10--largest">
<div class="cell"></div>
</div>
</div><!-- //.grid -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Pushing a column left or right</h3>
<p>Columns can be pushed either left or right of the grid container. Since all columns float left by default, the <code>.g__align--right</code> class must be added in order to float columns to the right.</p>
</div><!-- //.g__col -->
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--10
g__push--left-1">
<div class="cell">
<pre>.g__push--left-1</pre>
</div>
</div><!-- //.g__col -->
<div class="g__col
g__col--10
g__align--right
g__push--right-1">
<div class="cell">
<pre>.g__align--right
.g__push--right-1</pre>
</div>
</div><!-- //.g__col -->
<div class="g__col
g__col--7--largest">
<h3>Pushing at different viewports</h3>
<p>These classes can be modified depending on the viewport, for instance we can push a column to the left on mobile and then to the right on another breakpoint if the design requires it. First we set the width of the column (<code>.g__col--10</code>), followed by the direction (<code>.g__align--left</code>) and how much to push the column by (<code>.g__push--left-1</code>).</p>
</div>
</div>
<div class="g">
<div class="g__col
g__col--10
g__push--left-2
g__col--5--small
g__push--right-1--small
g__align--right--small
g__col--8--medium
g__push--left-1--medium
g__align--left--medium
g__col--5--large
g__push--right-1--large
g__align--right--large">
<div class="cell"><pre>
.g__col
.g__col--10
.g__push--left-2
.g__col--5--small
.g__push--right-1--small
.g__align--right--small
.g__col--8--medium
.g__push--left-1--medium
.g__align--left--medium
.g__col--5--large
.g__push--right-1--large
.g__align--right--large
</pre>
</div>
</div><!-- //.g__col -->
</div><!-- //.g -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Pushing in both directions</h3>
<p>Pushing in both directions is possible with the <code>.g__push--both</code> modifier class. This will always override any of the set widths in the <code>.g__col</code> classes because in order for this to work the module must be more than 100% wide.</p>
</div>
<div class="g__col
g__push--both-1">
<div class="cell">.g__push--both-1</div>
</div>
<div class="g__col
g__push--both-2">
<div class="cell">.g__push--both-2</div>
</div>
</div><!-- //.grid -->
<div class="g">
<div class="g__col
g__col--7--largest">
<h3>Full width cells</h3>
<p>If a module is not inside the grid then it will naturally be 100% of the viewport. If possible, all modules should automatically fill up the parent element by default. This way we’ll know precisely how to modify the width of the element – by changing the grid classes in the markup.</p>
</div>
</div><!-- //.grid -->
<div class="cell">Full-width cell</div>
</div><!-- //.wrapper -->
</body>
</html>