-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
106 lines (99 loc) · 4.69 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>CSS Layout</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/1.normalize.css">
<link rel="stylesheet" href="css/2.main.css">
<link rel="stylesheet" href="css/3.utility-widths.css">
<link rel="stylesheet" href="css/4.utilitiy-classes.css">
</head>
<body>
<main class="u-constrict">
<h1>CSS Layout</h1>
<div class="o-g-grid">
<div class="o-g-grid__item u-1/2--large">
<div class="c-notice c-notice--help">
<p><a href="http://slides.com/codekipple/css-layout">Slides for this workshop</a><br />
Clone <a href="https://github.com/CodeHubOrg/css-layout">this repo</a> and explore the examples and tasks in code.</p>
</div>
</div><!--
--><div class="o-g-grid__item u-1/2--large">
<div class="c-notice c-notice--info">
<p>Workshop - Carl Hughes <a href="http://twitter.com/codekipple">@codekipple</a></p>
<p>All graphics by <a href="https://lauripopdraws.wordpress.com/">lauripop</a></p>
</div>
</div>
</div>
<h2>Contents</h2>
<nav class="c-main-nav">
<ul>
<li>
0. notes
<ul>
<li><a href="0.notes/namespaces.html">namespaces</a></li>
<li><a href="0.notes/utility-classes.html">utility classes</a></li>
<li><a href="0.notes/holy-grail.html">holy grail</a></li>
</ul>
</li>
<li>
1. floats
<ul>
<li><a href="1.floats/index.html">readme</a></li>
<li><a href="1.floats/examples.html">examples</a></li>
</ul>
</li>
<li>
2. display table
<ul>
<li><a href="2.display-table/index.html">readme</a></li>
<li><a href="2.display-table/examples.html">examples</a></li>
</ul>
</li>
<li>
3. inline-block
<ul>
<li><a href="3.inline-block/index.html">readme</a></li>
<li><a href="3.inline-block/examples.html">examples</a></li>
<li class="c-main-nav__tasks"><a href="3.inline-block/tasks.html">tasks (2)</a></li>
</ul>
</li>
<li>
4. flexbox
<ul>
<li><a href="4.flexbox/index.html">readme</a></li>
<li><a href="4.flexbox/examples.html">examples</a></li>
<li class="c-main-nav__tasks"><a href="4.flexbox/tasks.html">tasks (2)</a></li>
</ul>
</li>
<li>
5. progressive enhancement flexbox
<ul>
<li><a href="5.flexbox-progressive/index.html">readme</a></li>
<li><a href="5.flexbox-progressive/examples.html">examples</a></li>
<li class="c-main-nav__tasks"><a href="5.flexbox-progressive/tasks.html">tasks (2)</a></li>
</ul>
</li>
<li>
6. grids
<ul>
<li><a href="6.grids/index.html">readme</a></li>
<li><a href="6.grids/examples.html">examples</a></li>
<li class="c-main-nav__tasks"><a href="6.grids/tasks.html">tasks (1)</a></li>
</ul>
</li>
</ul>
</nav>
<div class="section">
<p>Finished all the tasks with time to spare? play some <a href="http://flexboxfroggy.com/">flexbox froggy!</a>.</p>
</div>
</main>
<footer class="site-footer">
<img src="images/logo-1.png" alt="css" />
<img src="images/logo-2.png" alt="layout" />
</footer>
</body>
</html>