-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
192 lines (192 loc) · 8.11 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
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<title>MUELLER GRID SYSTEM</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="description" content="MUELLER is a modular grid system for responsive/adaptive and non–responsive layouts, based on Compass.">
<meta name="author" content="vonautomatisch, Patrick Kranzlmüller, Axel Swoboda">
<link href="stylesheets/grid/output.css" rel="stylesheet" type="text/css" />
<link href="stylesheets/screen.css" rel="stylesheet" type="text/css" />
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
</head>
<body class="">
<div id="mueller-indicators">
<p class="hr-show">Hires</p>
<p class="l-show">Large</p>
<p class="d-show">Default</p>
<p class="tp-show">Tablet Portait</p>
<p class="hl-show">Handheld Landscape</p>
<p class="h-show">Handheld Portait</p>
</div>
<div id="wrapper">
<div class="g-all-c">
<p>Some examples of what you can do with MUELLER.<br />
Please note that you need to write your own layouts and fractional grid classes.</p>
<section id="examples" class="g-all-full">
<h1>Media</h1>
<article id="example_media" class="g-d-24 g-hr-24 g-l-24 g-tp-12 g-hl-6 g-h-6">
<p>
Defining Columns with basic media-classes<br />
The class–names are changed with visibility–selectors.
</p>
<div class="g-d-6 g-hr-6 g-l-6 g-tp-3 g-hl-2 g-h-2">
<div class="box">
<p class="d-show">g-d-6</p>
<p class="hr-show">g-hr-6</p>
<p class="l-show">g-l-6</p>
<p class="tp-show">g-tp-3</p>
<p class="hl-show">g-hl-2</p>
<p class="h-show">g-h-2</p>
</div>
</div>
<div class="g-d-6 g-hr-6 g-l-6 g-tp-3 g-hl-2 g-h-2">
<div class="box">
<p class="d-show">g-d-6</p>
<p class="hr-show">g-hr-6</p>
<p class="l-show">g-l-6</p>
<p class="tp-show">g-tp-3</p>
<p class="hl-show">g-hl-2</p>
<p class="h-show">g-h-2</p>
</div>
</div>
<div class="g-d-12 g-d-l g-hr-12 g-hr-l g-l-12 g-l-l g-tp-6 g-tp-l g-hl-2 g-hl-l g-h-2 g-h-l">
<div class="box">
<p class="d-show">g-d-12</p>
<p class="hr-show">g-hr-12</p>
<p class="l-show">g-l-12</p>
<p class="tp-show">g-tp-6</p>
<p class="hl-show">g-hl-2</p>
<p class="h-show">g-h-2</p>
</div>
</div>
</article>
</section>
<section>
<h1>Layouts</h1>
<article id="example_layout_1" class="l-1c">
<p>1-column layout</p>
<div class="c-1">
<div class="box">
<p>c1</p>
</div>
</div>
</article>
<article id="example_layout_2" class="l-2c">
<p>2-column layout</p>
<div class="c-1">
<div class="box">
<p>c1</p>
</div>
</div>
<div class="c-2">
<div class="box">
<p>c2</p>
</div>
</div>
</article>
<article id="example_layout_3" class="l-2cr">
<p>2-column layout, switched columns</p>
<div class="c-1">
<div class="box">
<p>c1</p>
</div>
</div>
<div class="c-2">
<div class="box">
<p>c2</p>
</div>
</div>
</article>
<article id="example_layout_4" class="l-3c">
<p>3-column layout</p>
<div class="c-1">
<div class="box">
<p>c1</p>
</div>
</div>
<div class="c-2">
<div class="box">
<p>c2</p>
</div>
</div>
<div class="c-3">
<div class="box">
<p>c3</p>
</div>
</div>
</article>
<article id="example_layout_5" class="l-4c">
<p>
4-column layout<br />
Note the shift with desktop, portrait & handheld.
</p>
<div class="c-1">
<div class="box">
<p>c1</p>
</div>
</div>
<div class="c-2">
<div class="box">
<p>c2</p>
</div>
</div>
<div class="c-3">
<div class="box">
<p>c3</p>
</div>
</div>
<div class="c-4">
<div class="box">
<p>c4</p>
</div>
</div>
</article>
</section>
<section>
<h1>Fractions</h1>
<article id="example_invariant_1" class="l-1c">
<p>1-column layout with fractions for half</p>
<div class="c-1">
<div class="g-all-half g-all-f">
<div class="box">
<p>g-all-half</p>
</div>
</div>
<div class="g-all-half g-all-l">
<div class="box">
<p>g-all-half</p>
</div>
</div>
</div>
</article>
<article id="example_invariant_2" class="l-1c">
<p>1-column layout with fractions for thirds</p>
<div class="c-1">
<div class="g-all-thirds g-all-f">
<div class="box">
<p>g-all-thirds</p>
</div>
</div>
<div class="g-all-thirds">
<div class="box">
<p>g-all-thirds</p>
</div>
</div>
<div class="g-all-thirds g-all-l">
<div class="box">
<p>g-all-thirds</p>
</div>
</div>
</div>
</article>
</section>
</div>
</div>
</body>
</html>