-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (135 loc) · 5.93 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Cascade Framework Grid</title>
<link rel="stylesheet" type="text/css" media="all" href="grid-core.css" />
<link rel="stylesheet" type="text/css" media="all" href="grid-responsive.css" />
<link rel="stylesheet" type="text/css" media="all" href="grid-widths.css" />
<link rel="stylesheet" type="text/css" media="all" href="grid-widths-mobile.css" />
<link rel="stylesheet" type="text/css" media="all" href="grid-widths-tablet.css" />
<link rel="stylesheet" type="text/css" media="all" href="grid-widths-phone.css" />
<link rel="stylesheet" type="text/css" media="all" href="grid-helpers.css" />
<link rel="stylesheet" type="text/css" media="all" href="site.css" />
<!--[if lt IE 9]><link rel="stylesheet" type="text/css" media="all" href="ie8.css" /><![endif]-->
<!--[if lt IE 8]><link rel="stylesheet" type="text/css" media="all" href="ie7.css" /><![endif]-->
<!--[if lt IE 7]><link rel="stylesheet" type="text/css" media="all" href="ie6.css" /><![endif]-->
<!--[if lt IE 9]><script src="iehtmlshiv.js"></script><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<div class="site-center">
<div class="cell">
<h1>Cascade Framework Grid</h1>
</div>
</div>
</header>
<main>
<div class="site-center">
<section class="width-fit">
<div class="cell">
<ul>
<li><a href="#">Breaking points</a></li>
<li><a href="fluid.html">Fluid layout</a></li>
<li><a href="nesting.html">Nesting</a></li>
</ul>
</div>
</section>
<section class="width-fill">
<section>
<div class="cell">
<p>This is a demo of Cascade Framework Grid.</p>
<p>Cascade Framework Grid is a standalone release of Cascade Framework's grid system.</p>
</div>
</section>
<section>
<section class="width-1of2">
<div class="cell">
<p>One-half grid</p>
</div>
</section>
<section class="width-fill">
<div class="cell">
<p>One-half grid</p>
</div>
</section>
</section>
<section>
<section class="width-1of3">
<div class="cell">
<p>One-third grid</p>
</div>
</section>
<section class="width-1of3">
<div class="cell">
<p>One-third grid</p>
</div>
</section>
<section class="width-fill">
<div class="cell">
<p>One-third grid</p>
</div>
</section>
</section>
<section>
<section class="width-1of4">
<div class="cell">
<p>One-fourth grid</p>
</div>
</section>
<section class="width-1of4">
<div class="cell">
<p>One-fourth grid</p>
</div>
</section>
<section class="width-1of4">
<div class="cell">
<p>One-fourth grid</p>
</div>
</section>
<section class="width-fill">
<div class="cell">
<p>One-third grid</p>
</div>
</section>
</section>
<section>
<section class="width-1of5">
<div class="cell">
<p>One-fifth grid</p>
</div>
</section>
<section class="width-1of5">
<div class="cell">
<p>One-fifth grid</p>
</div>
</section>
<section class="width-1of5">
<div class="cell">
<p>One-fifth grid</p>
</div>
</section>
<section class="width-1of5">
<div class="cell">
<p>One-fifth grid</p>
</div>
</section>
<section class="width-fill">
<div class="cell">
<p>One-fifth grid</p>
</div>
</section>
</section>
</section>
</div>
</main>
<footer>
<div class="site-center">
<div class="cell">
© 2014, <a href="http://www.johnslegers.com/">John Slegers</a>
</div>
</div>
</footer>
</body>
</html>