-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLayout.htm
More file actions
172 lines (169 loc) · 6.74 KB
/
Layout.htm
File metadata and controls
172 lines (169 loc) · 6.74 KB
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head lang="en">
<title>TL Style Doc - Torrent Details Example</title>
<!-- Metatags -->
<meta name="viewport" content="width=device-width" />
<!-- Links -->
<link href="../Styles/reset.css" rel="Stylesheet" type="text/css" />
<link href="../Styles/Minified/auth-buttons.css" rel="Stylesheet" type="text/css" />
<link href="../Styles/Minified/icons.css" rel="Stylesheet" type="text/css" />
<link href="../Styles/Minified/main.css" rel="Stylesheet" type="text/css" />
<link href="../Styles/Minified/normalize.css" rel="Stylesheet" type="text/css" />
<link href="../Styles/Minified/responsive.css" rel="Stylesheet" type="text/css" />
<link href="../Styles/Minified/meanmenu.css" rel="stylesheet" type="text/css" />
<link href="../Styles/Minified/jquery-dropdown.css" rel="Stylesheet" type="text/css" />
<!-- Scripts -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="" src="../Plugins/All/minified-all.js"></script>
</head>
<body class="bg-square site-left">
<nav class="list-top fixed responsive-list">
<ul>
<li><a href="Typography.htm">Typography</a></li>
<li><a href="Buttons.htm">Buttons & Icons</a></li>
<li><a href="Containers.htm">Containers</a></li>
<li><a href="Components.htm">Components</a></li>
<li><a href="Layout.htm" class="list-top-on">Layouts & grids</a></li>
<li><a href="/Examples/TorrentDetails.htm">Examples</a></li>
</ul>
</nav>
<div class="list-top-fixed-spacer"></div>
<div class="box responsive-box">
<div class="p-10">
<h1>Layouts & grids</h1>
</div>
</div>
<div class="box responsive-box mt-10">
<div class="p-10">
<div class="header">
<h2>Box with image</h2>
</div>
<div class="mt-10">
<div class="box display-inline mr-10 mb-10" style="max-width: 160px">
<img alt="" src="Images/v-for-vendetta.jpg" width="160" />
<div class="p-5 text-ellipsis">V for vendetta with ellipsis oh yea </div>
<div class="font-10 pl-5 pb-5 font-gray">Action, Fantasy, Thriller</div>
</div>
<div class="box display-inline mr-10 mb-10" style="max-width: 160px">
<img alt="" src="Images/v-for-vendetta.jpg" width="160" />
<div class="p-5 text-ellipsis">V for vendetta with ellipsis oh yea </div>
<div class="font-10 pl-5 pb-5 font-gray">Action, Fantasy, Thriller</div>
</div>
<div class="box display-inline" style="max-width: 160px">
<img alt="" src="Images/v-for-vendetta.jpg" width="160" />
<div class="p-5 text-ellipsis">V for vendetta with ellipsis oh yea </div>
<div class="font-10 pl-5 pb-5 font-gray">Action, Fantasy, Thriller</div>
</div>
</div>
</div>
</div>
<div class="box responsive-box mt-10">
<div class="p-10">
<div class="header">
<h2>Web banners</h2>
</div>
<a href="WebBanner.htm" class="mt-10 display-block">Banners layout and standards</a>
</div>
</div>
<div class="box responsive-box mt-10">
<div class="p-10">
<div class="header">
<h2>Tables</h2>
</div>
<h2>Light</h2>
<div>
<table class="table-light width-100 table-header-left">
<tr>
<th>Head #1</th>
<th>Head #2</th>
<th>Head #3</th>
<th>Head #4</th>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
</table>
</div>
<h2>Normal</h2>
<div>
<table class="table-normal width-100 table-header-left">
<tr>
<th>Head #1</th>
<th>Head #2</th>
<th>Head #3</th>
<th>Head #4</th>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
</table>
</div>
<h2>Box</h2>
<div class="table-box">
<table class="width-100 table-header-left">
<tr>
<th>Head #1</th>
<th>Head #2</th>
<th>Head #3</th>
<th>Head #4</th>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
</table>
</div>
<h2>Box with tables</h2>
<div class="box p-5">
<table class="table-light width-100 table-header-left">
<tr>
<th>Head #1</th>
<th>Head #2</th>
<th>Head #3</th>
<th>Head #4</th>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>