forked from AaronRutley/minimal-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·107 lines (99 loc) · 2.56 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
<!doctype html>
<html lang="en-au">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>
Minimal Grid
</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- example for page layout -->
<h1 class="title"></h1>
<section class="your-wrapper-here">
<section class="your-container-here">
<section class="content-col">
<p>content col</p>
</section>
<section class="sidebar">
<p>sidebar</p>
</section>
</section>
</section>
<!-- example for grid sizes -->
<section class="your-container-class-here">
<section class="classes">
<p></p>
</section>
<section class="can">
<p></p>
</section>
<section class="be">
<p></p>
</section>
<section class="responsive">
<p></p>
</section>
<section class="and">
<p></p>
</section>
<section class="semantic">
<p></p>
</section>
<section class="very-class">
<p></p>
</section>
<section class="much-wow">
<p></p>
</section>
<section class="so-responsive">
<p></p>
</section>
<section class="such-semantic">
<p></p>
</section>
<section class="many-options">
<p></p>
</section>
<section class="im-one-thid">
<p></p>
</section>
<section class="im-one-thid">
<p></p>
</section>
<section class="im-one-thid">
<p></p>
</section>
</section>
<!-- example for 'promos' 50% col on small, 33% col on medium, 16.66% col on large screens -->
<section class="promo-container">
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
</section>
<!-- example of promos above - this time with no padding -->
<section class="another-promo-container">
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
<section class="promo"><p></p></section>
</section>
<!-- example gallery block -->
<ul class="example-gallery-block">
<li><img src="http://placehold.it/320x320/34495e/fff"/></li>
<li><img src="http://placehold.it/320x320/34495e/fff"/></li>
<li><img src="http://placehold.it/320x320/34495e/fff"/></li>
<li><img src="http://placehold.it/320x320/34495e/fff"/></li>
<li><img src="http://placehold.it/320x320/34495e/fff"/></li>
<li><img src="http://placehold.it/320x320/34495e/fff"/></li>
</ul>
</body>
</html>