-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlists.html
123 lines (110 loc) · 2.97 KB
/
lists.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mobiStyle</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:100,300,300italic,500|Electrolize' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/grid.css" />
<link rel="stylesheet" href="css/mobi.css" />
</head>
<body>
<img id="mg-imgBG" src="img/Avenger-blur.png" />
<div id="mg-scanlineBG"></div>
<img id="mg-gridBG" src="img/new-dot.png" alt="" />
<div id="mg-dotBG"></div>
<section id="mg-wrapper">
<div class="mainContent">
<div class="mg-panel">
<h1>Lists & Tables</h1>
<p>This is a sample of the list and table styles included with mobiStyle. There is not a javascript component for these elements.</p>
<h2>Ordered List</h2>
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3
<ol>
<li>List Item 3.1</li>
<li>List Item 3.2
<ol>
<li>List Item 3.2.1</li>
<li>List Item 3.2.2</li>
</ol>
</li>
<li>List Item 3.3</li>
</ol>
</li>
<li>List Item 4</li>
</ol>
<h2>Unordered List</h2>
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3
<ul>
<li>List Item 3.1</li>
<li>List Item 3.2
<ul>
<li>List Item 3.2.1</li>
<li>List Item 3.2.2</li>
</ul>
</li>
<li>List Item 3.3</li>
</ul>
</li>
<li>List Item 4</li>
</ul>
<h2>Definition List</h2>
<dl>
<dt>Definition Term 1</dt>
<dd>Definition Description 1</dd>
<dt>Definition Term 2</dt>
<dd>Definition Description 2</dd>
</dl>
<hr />
<h2 id="tables">Tables</h2>
<table cellspacing="0" cellpadding="0">
<caption>This is a table caption</caption>
<thead>
<tr>
<th>Table Header 1</th><th>Table Header 2</th><th>Table Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr class="even">
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr>
<td colspan="3">A row with a cell spanning all 3 columns</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Table Footer 1</th><th>Table Footer 2</th><th>Table Footer 3</th>
</tr>
</tfoot>
</table>
</div>
</div>
<div class="mg-sidebar">
<div class="mg-panel">
<h3>Nav</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="text.html">Text & Typography</a></li>
<li><a href="links.html">Links & Navigation</a></li>
<li><a href="media.html">Media</a></li>
<li class="active"><b>Lists & Tables</b></li>
<li><a href="forms.html">Forms & Input</a></li>
<li><a href="messages.html">Messages & Notifications</a></li>
</ul>
</div>
</div>
</section>
</body>
</html>