-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
254 lines (221 loc) · 8.34 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Simple UI</title>
<meta name="description" content="Nope, it's not another framework. This is a set of the most popular components used in many web applications. These components can act as a core for a fresh development, are fully customizable and the markup is minimal so you can use and style them as you please.">
<meta name="author" content="Rafal Bromirski">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/application.css">
</head>
<body>
<!-- fork me on github -->
<a href="https://github.com/paranoida/simple-ui/" style="position: absolute; top: 0; right: 0; border: 0; z-index: 100"><img src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<!-- end -->
<div class="content">
<div class="description">
<h1>Simple.ui</h1>
<p>Nope, it's not another framework. This is a set of the most popular components used in many web applications. These components can act as a "core" for a fresh development, are fully customizable and the markup is minimal so you can use and style them as you please. You don't have to worry about browser issues as they were tested against cross-browser and cross-platform compatibility:</p>
<ul>
<li>Chrome</li>
<li>Safar</li>
<li>Mobile Safari (iDevices)</li>
<li>Firefox</li>
<li>Opera</li>
<li>IE8+</li>
</ul>
<div class="actions">
<a href="https://github.com/paranoida/simple-ui/zipball/master" class="bt">Download ZIP File</a>
<a href="https://github.com/paranoida/simple-ui/tarball/master" class="bt">Download TAR Ball</a>
<a href="https://github.com/paranoida/simple-ui/" class="bt">View on Github</a>
</div>
</div>
<div class="components">
<h1>Components</h1>
<div class="component">
<h3>.bt</h3>
<a href="#" class="bt">link</a>
<input type="submit" class="bt" value="submit" />
</div>
<div class="component">
<h3>.bt:hover / .bt.active</h3>
<a href="#" class="bt active">link</a>
<input type="submit" class="bt active" value="submit" />
</div>
<div class="component">
<h3>.bt.disabled</h3>
<a href="#" class="bt disabled">link</a>
<input type="submit" class="bt disabled" value="submit" />
</div>
<div class="component">
<h3>.bt.bt_small</h3>
<a href="#" class="bt bt_small">link</a>
<input type="submit" class="bt bt_small" value="submit" />
</div>
<div class="component">
<h3>.bt.bt_medium</h3>
<a href="#" class="bt bt_medium">link</a>
<input type="submit" class="bt bt_medium" value="submit" />
</div>
<div class="component">
<h3>.bt.bt_large</h3>
<a href="#" class="bt bt_large">link</a>
<input type="submit" class="bt bt_large" value="submit" />
</div>
<hr>
<div class="component">
<h3>.box</h3>
<div class="box">
<div class="box_head">
<h3>title</h3>
</div>
<div class="box_body">body</div>
</div>
</div>
<div class="component">
<h3>.box (actions in header)</h3>
<div class="box">
<div class="box_head">
<h3>title</h3>
<div class="actions">
<a href="#" class="bt">Action</a>
<a href="#" class="bt">Action</a>
</div>
</div>
<div class="box_body">body</div>
</div>
</div>
<div class="component">
<h3>.box (actions in footer)</h3>
<div class="box">
<div class="box_head">
<h3>title</h3>
</div>
<div class="box_body">body</div>
<div class="box_foot">
<div class="actions">
<a href="#">Cancel</a> or
<a href="#" class="bt">Action</a>
</div>
</div>
</div>
</div>
<hr>
<div class="component">
<h3>.table</h3>
<table class="table">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Email</th>
<th>Role</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>john.doe@company.com</td>
<td>Manager</td>
</tr>
<tr>
<td>Jane</td>
<td>Doe</td>
<td>jane.doe@company.com</td>
<td>Administrator</td>
</tr>
<tr>
<td>Jane</td>
<td>Roe</td>
<td>jane.roe@company.com</td>
<td>Buyer</td>
</tr>
</tbody>
</table>
</div>
<hr>
<div class="component">
<h3>.thumb (img)</h3>
<img src="images/img.jpg" alt="sample image" class="thumb" />
</div>
<hr>
<div class="component">
<h3>.label</h3>
<span class="label">inbox</span>
</div>
<div class="component">
<h3>.label.invert</h3>
<span class="label invert">inbox</span>
</div>
<div class="component">
<h3>.badge</h3>
<span class="badge">24</span> messages
</div>
<div class="component">
<h3>.badge.invert</h3>
<span class="badge invert">24</span> messages
</div>
<hr>
<div class="component">
<h3>input</h3>
<input type="text" value="text" />
</div>
<div class="component">
<h3>input (disabled)</h3>
<input type="text" value="text" disabled="disabled" />
</div>
<div class="component">
<h3>select</h3>
<select>
<option>Select City</option>
<option>London</option>
<option>New York</option>
<option>Tokyo</option>
</select>
</div>
<div class="component">
<h3>select (disabled)</h3>
<select disabled="disabled">
<option>Select City</option>
<option>London</option>
<option>New York</option>
<option>Tokyo</option>
</select>
</div>
<div class="component">
<h3>textarea</h3>
<textarea>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget enim quis quam interdum feugiat a in quam. Cras non mi non sapien gravida ullamcorper quis et sem.</textarea>
</div>
<div class="component">
<h3>textarea (disabled)</h3>
<textarea disabled="disabled">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget enim quis quam interdum feugiat a in quam. Cras non mi non sapien gravida ullamcorper quis et sem.</textarea>
</div>
<div class="component">
<h3>inputs (inline example)</h3>
<input type="text" placeholder="Your name" />
<select>
<option>Select City</option>
<option>London</option>
<option>New York</option>
<option>Tokyo</option>
</select>
<a href="#" class="bt">submit</a>
</div>
</div>
<div class="footer">
<div class="credits">
<p><strong>Credits: </strong>Supported by Selleo web & mobile software development house - <a href="http://selleo.com" target="_blank">http://selleo.com</a></p>
</div>
<h1>License</h1>
<p>The MIT license</p>
<p>Copyright © 2013 <a href="http://paranoida.com" target="_blank">Rafal Bromirski</a></p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
</div>
</div>
<!-- bottom script -->
<!-- end -->
</body>
</html>