-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypography.html
More file actions
495 lines (451 loc) · 20.6 KB
/
typography.html
File metadata and controls
495 lines (451 loc) · 20.6 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
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0 minimal-ui"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/splash/splash-icon.png">
<link rel="apple-touch-startup-image" href="images/splash/splash-screen.png" media="screen and (max-device-width: 320px)" />
<link rel="apple-touch-startup-image" href="images/splash/splash-screen@2x.png" media="(max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)" />
<link rel="apple-touch-startup-image" sizes="640x1096" href="images/splash/splash-screen@3x.png" />
<link rel="apple-touch-startup-image" sizes="1024x748" href="images/splash/splash-screen-ipad-landscape" media="screen and (min-device-width : 481px) and (max-device-width : 1024px) and (orientation : landscape)" />
<link rel="apple-touch-startup-image" sizes="768x1004" href="images/splash/splash-screen-ipad-portrait.png" media="screen and (min-device-width : 481px) and (max-device-width : 1024px) and (orientation : portrait)" />
<link rel="apple-touch-startup-image" sizes="1536x2008" href="images/splash/splash-screen-ipad-portrait-retina.png" media="(device-width: 768px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)"/>
<link rel="apple-touch-startup-image" sizes="1496x2048" href="images/splash/splash-screen-ipad-landscape-retina.png" media="(device-width: 768px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)"/>
<title>Epsilon Mobile Framework - Version 2.0</title>
<link href="styles/style.css" rel="stylesheet" type="text/css">
<link href="styles/framework.css" rel="stylesheet" type="text/css">
<link href="styles/owl.carousel.css" rel="stylesheet" type="text/css">
<link href="styles/owl.theme.css" rel="stylesheet" type="text/css">
<link href="styles/swipebox.css" rel="stylesheet" type="text/css">
<link href="styles/colorbox.css" rel="stylesheet" type="text/css">
<link href="styles/font-awesome.css" rel="stylesheet" type="text/css">
<link href="styles/animate.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/jqueryui.js"></script>
<script type="text/javascript" src="scripts/wow.js"></script>
<script type="text/javascript" src="scripts/owl.carousel.min.js"></script>
<script type="text/javascript" src="scripts/jquery.swipebox.js"></script>
<script type="text/javascript" src="scripts/colorbox.js"></script>
<script type="text/javascript" src="scripts/snap.js"></script>
<script type="text/javascript" src="scripts/countdown.js"></script>
<script type="text/javascript" src="scripts/contact.js"></script>
<script type="text/javascript" src="scripts/custom.js"></script>
<script type="text/javascript" src="scripts/framework.js"></script>
<script type="text/javascript" src="scripts/framework.launcher.js"></script>
</head>
<body>
<div id="preloader">
<div id="status">
<p class="center-text">
Loading the content...
<em>Loading depends on your connection speed!</em>
</p>
</div>
</div>
<div class="header">
<a class="deploy-navigation going-up" href="#">
<i class="fa fa-navicon"></i>
</a>
<a class="header-logo" href="#"><img src="images/logo.png" alt="img"></a>
</div>
<div class="header-clear"></div>
<div class="page-navigation full-bottom">
<div class="nav-clear"></div>
<div class="nav-item">
<a href="index.html">
<i class="fa fa-star"></i>
Welcome
<i class="fa fa-angle-right"></i>
</a>
</div>
<div class="nav-item">
<a href="homepage.html">
<i class="fa fa-home"></i>
Homepage
<i class="fa fa-angle-right"></i>
</a>
</div>
<div class="nav-item">
<a class="submenu-deploy" href="#">
<i class="fa fa-cog"></i>
Features
<i class="fa fa-angle-down deploy-navigation-active"></i>
</a>
<div class="submenu-items submenu-items-active">
<a href="typography.html"><i class="fa fa-pencil"></i>Typography<i class="fa fa-circle"></i></a>
<a href="jquery.html"><i class="fa fa-cog"></i>jQuery<i class="fa fa-angle-right"></i></a>
<a href="others.html"><i class="fa fa-question-circle"></i>Others<i class="fa fa-angle-right"></i></a>
</div>
</div>
<div class="nav-item">
<a class="submenu-deploy" href="#">
<i class="fa fa-file-o"></i>
Pages
<i class="fa fa-angle-down"></i>
</a>
<div class="submenu-items">
<a href="page-soon.html"><i class="fa fa-clock-o"></i>Coming Soon<i class="fa fa-angle-right"></i></a>
<a href="page-error.html"><i class="fa fa-exclamation"></i>404 Error<i class="fa fa-angle-right"></i></a>
<a href="page-staff.html"><i class="fa fa-user"></i>Staff / Profile<i class="fa fa-angle-right"></i></a>
<a href="page-login.html"><i class="fa fa-asterisk"></i>Login / Register<i class="fa fa-angle-right"></i></a>
</div>
</div>
<div class="nav-item">
<a class="submenu-deploy" href="#">
<i class="fa fa-camera"></i>
Gallery
<i class="fa fa-angle-down"></i>
</a>
<div class="submenu-items">
<a href="gallery-thumb.html"><i class="fa fa-th-large"></i>Thumb Gallery<i class="fa fa-angle-right"></i></a>
<a href="gallery-wide.html"><i class="fa fa-navicon"></i>Wide Gallery<i class="fa fa-angle-right"></i></a>
</div>
</div>
<div class="nav-item">
<a class="submenu-deploy" href="#">
<i class="fa fa-picture-o"></i>
Portfolio
<i class="fa fa-angle-down"></i>
</a>
<div class="submenu-items">
<a href="portfolio-one.html"><i class="fa fa-list"></i>One Column<i class="fa fa-angle-right"></i></a>
<a href="portfolio-two.html"><i class="fa fa-th-large"></i>Two Columns<i class="fa fa-angle-right"></i></a>
<a href="portfolio-three.html"><i class="fa fa-th"></i>Three Columns<i class="fa fa-angle-right"></i></a>
<a href="portfolio-video.html"><i class="fa fa-video-camera"></i>Video Embeds<i class="fa fa-angle-right"></i></a>
</div>
</div>
<div class="nav-item">
<a href="contact.html">
<i class="fa fa-envelope"></i>
Contact
<i class="fa fa-angle-right"></i>
</a>
</div>
<div class="nav-item">
<a href="#" class="close-navigation">
<i class="fa fa-times"></i>
Close
<i class="fa fa-angle-up"></i>
</a>
</div>
</div>
<div class="nav-clear"></div>
<div class="content">
<div class="container no-bottom">
<h3>Samples of text columns.</h3>
<p>Text columns are the foundation of any template! Without them, the page is just incomplete!</p>
<p>
1/1<br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi bibendum accumsan ante.
Proin luctus congue sodales. Pellentesque vel mollis odio, ac facilisis arcu.
Etiam rutrum sem non risus condimentum, quis iaculis ligula facilisis.
</p>
<div class="one-half">
<p>
1/2<br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi bibendum accumsan ante.
Proin luctus congue sodales. Pellentesque vel mollis odio.
</p>
</div>
<div class="two-half last-column">
<p>
2/2<br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi bibendum accumsan ante.
Proin luctus congue sodales. Pellentesque vel mollis odio.
</p>
</div>
<div class="one-third">
<p>
1/3<br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi bibendum accumsan ante.
Proin luctus congue sodales.
</p>
</div>
<div class="one-third">
<p>
2/3<br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi bibendum accumsan ante.
Proin luctus congue sodales.
</p>
</div>
<div class="one-third last-column">
<p>
3/3<br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi bibendum accumsan ante.
Proin luctus congue sodales.
</p>
</div>
</div>
<div class="decoration"></div>
<div class="container no-bottom">
<h3>Sample of text highlights</h3>
<p>Text highlights are an awesome way to emphesize something important you want to show off!</p>
<div class="one-half-responsive">
<p><span class="text-highlight highlight-turqoise">This is a highlight</span>and this is the text</p>
<p><span class="text-highlight highlight-green">This is a highlight</span>and this is the text</p>
<p><span class="text-highlight highlight-blue">This is a highlight</span>and this is the text</p>
<p><span class="text-highlight highlight-magenta">This is a highlight</span>and this is the text</p>
</div>
<div class="one-half-responsive last-column">
<p><span class="text-highlight highlight-dark">This is a highlight</span>and this is the text</p>
<p><span class="text-highlight highlight-yellow">This is a highlight</span>and this is the text</p>
<p><span class="text-highlight highlight-red">This is a highlight</span>and this is the text</p>
<p><span class="text-highlight highlight-orange">This is a highlight</span>and this is the text</p>
</div>
</div>
<div class="decoration"></div>
<div class="container no-bottom">
<h3>Icon lists</h3>
<p>Icon lists are absolutely awesome! They are very simple to use and they're retina!</p>
<div class="one-half">
<ul class="icon-list">
<li class="address-list">Address icon</li>
<li class="block-list">Block icon</li>
<li class="bookmark-list">Bookmark icon</li>
<li class="briefcase-list">Briefcase icon</li>
<li class="bubble-list">Bubble icon</li>
<li class="buy-list">Buy icon</li>
<li class="calendar-list">Calendar icon</li>
<li class="clipboard-list">Clipboard icon</li>
<li class="clock-list">Clock icon</li>
<li class="delete-list">Delete icon</li>
<li class="diagram-list">Diagram icon</li>
<li class="document-list">Document icon</li>
<li class="down-list">Down icon</li>
<li class="flag-list">Flag icon</li>
<li class="folder-list">Folder icon</li>
<li class="gear-list">Gear icon</li>
<li class="globe-list">Globe icon</li>
<li class="heart-list">Heart icon</li>
<li class="help-list">Help icon</li>
<li class="info-list">Info icon</li>
<li class="key-list">Key icon</li>
</ul>
</div>
<div class="one-half last-column">
<ul class="icon-list">
<li class="left-list">Left icon</li>
<li class="letter-list">Letter icon</li>
<li class="monitor-list">Monitor icon</li>
<li class="pencil-list">Pencil icon</li>
<li class="plus-list">Plus icon</li>
<li class="present-list">Present icon</li>
<li class="print-list">Print icon</li>
<li class="right-list">Right icon</li>
<li class="save-list">Save icon</li>
<li class="search-list">Search icon</li>
<li class="shield-list">Shield icon</li>
<li class="statistics-list">Statistics icon</li>
<li class="stop-list">Stop icon</li>
<li class="tick-list">Tick icon</li>
<li class="trash-list">Trash icon</li>
<li class="up-list">Up icon</li>
<li class="user-list">User icon</li>
<li class="wallet-list">Walet icon</li>
<li class="warning-list">Warning icon</li>
<li class="home-list">Home icon</li>
<li class="label-list">Label icon</li>
</ul>
</div>
</div>
<div class="decoration"></div>
<div class="container">
<div class="one-third-responsive">
<ul class="normal-list">
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
<li>List item 5</li>
</ul>
</div>
<div class="one-third-responsive">
<ol class="number-list">
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
<li>List item 5</li>
</ol>
</div>
<div class="one-third-responsive last-column">
<ul class="font-icon-list">
<li><i class="fa fa-facebook"></i>Facebook list</li>
<li><i class="fa fa-twitter"></i>Twitter list</li>
<li><i class="fa fa-spinner fa-spin"></i>Spinner list</li>
<li><i class="fa fa-phone"></i>Phone List</li>
<li><i class="fa fa-tablet"></i>Tablet List</li>
</ul>
</div>
</div>
<div class="decoration"></div>
<div class="one-half-responsive">
<div class="container no-bottom">
<h3>CSS3 Horizontal Square Charts</h3>
<p>Charts are awesome, important and they are a must, multiple color variations to make it sweet!</p>
<div class="chart">
<strong>A red chart</strong>
<em>10%</em>
<div class="chart-background">
<div class="red-chart p10"></div>
</div>
</div>
<div class="chart">
<strong>A yellow chart</strong>
<em>30%</em>
<div class="chart-background">
<div class="yellow-chart p30"></div>
</div>
</div>
<div class="chart">
<strong>A blue chart</strong>
<em>50%</em>
<div class="chart-background">
<div class="blue-chart p50"></div>
</div>
</div>
<div class="chart">
<strong>And a green chart!</strong>
<em>90%</em>
<div class="chart-background">
<div class="green-chart p90"></div>
</div>
</div>
</div>
</div>
<div class="decoration hide-if-responsive"></div>
<div class="one-half-responsive last-column">
<div class="container no-bottom">
<h3>CSS3 Horizontal Rounded Charts</h3>
<p>Charts are awesome, important and they are a must, multiple color variations to make it sweet!</p>
<div class="chart chart-round">
<strong>A red chart</strong>
<em>10%</em>
<div class="chart-background">
<div class="red-chart p10"></div>
</div>
</div>
<div class="chart chart-round">
<strong>A yellow chart</strong>
<em>30%</em>
<div class="chart-background">
<div class="yellow-chart p30"></div>
</div>
</div>
<div class="chart chart-round">
<strong>A blue chart</strong>
<em>50%</em>
<div class="chart-background">
<div class="blue-chart p50"></div>
</div>
</div>
<div class="chart chart-round">
<strong>And a green chart!</strong>
<em>90%</em>
<div class="chart-background">
<div class="green-chart p90"></div>
</div>
</div>
</div>
</div>
<div class="clear"></div>
<div class="decoration"></div>
<div class="container no-bottom">
<h3>Code structures</h3>
<p>Maybe you're a developer and want to add code, maybe not, it's still an included option!</p>
<div class="code">
<span class="wline"> <p class="test1">Simple code!</p></span>
<span class="gline"> <p class="test2">Simple code!</p></span>
</div>
</div>
<div class="decoration"></div>
<div class="container no-bottom">
<h3>Simple notifications!</h3>
<p>These notifications can be shown but they cannot be dismissed by tapping or closing!</p>
<div class="one-half-responsive">
<div class="static-notification-red">
<p class="center-text uppercase">A red notification!</p>
</div>
<div class="static-notification-green">
<p class="center-text uppercase">A green notification!</p>
</div>
</div>
<div class="one-half-responsive last-column">
<div class="static-notification-yellow">
<p class="center-text uppercase">A yellow notification!</p>
</div>
<div class="static-notification-blue">
<p class="center-text uppercase">A blue notification!</p>
</div>
</div>
<div class="clear"></div>
</div>
<div class="decoration"></div>
<div class="container no-bottom">
<h3 class="left-text">Left text.</h3>
<p class="left-text">
This is a simple paragrahp aligned to the left side of the screen!
This is a simple paragrahp aligned to the left side of the screen!
</p>
<div class="decoration"></div>
<h3 class="center-text">Center text.</h3>
<p class="center-text">
This is a simple paragraph aligned to the center part of the screen!
This is a simple paragraph aligned to the center part of the screen!
</p>
<div class="decoration"></div>
<h3 class="right-text">Right text.</h3>
<p class="right-text">
This is a simple paragraph aligned to the right side of the screen!
This is a simple paragraph aligned to the right side of the screen!
</p>
</div>
<div class="decoration"></div>
<div class="container no-bottom">
<h3>How about a table?</h3>
<p>And it's pure CSS3! That means just fill in the data, and the table expands to fit the size you need!</p>
<table cellspacing='0' class="table">
<tr>
<th>TABLE</th>
<th class="table-title">PLUS</th>
<th class="table-title">PRO</th>
</tr>
<tr>
<td class="table-sub-title"> ONE</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr class='even'>
<td class="table-sub-title"> TWO</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td class="table-sub-title"> THREE</td>
<td>No</td>
<td>No</td>
</tr>
<tr class='even'>
<td class="table-sub-title">VALUE</td>
<td class="price">$9.<sup class="small-price">99</sup></td>
<td class="price">$109.<sup class="small-price">99</sup></td>
</tr>
</table>
</div>
<div class="decoration"></div>
<div class="footer-section">
<p class="footer-text">
Copyright 2014.<br>
All rights reserved.
</p>
<div class="footer-icons">
<a href="#" class="footer-facebook-icon"><i class="fa fa-facebook"></i></a>
<a href="#" class="footer-google-icon"><i class="fa fa-google-plus"></i></a>
<a href="#" class="footer-twitter-icon"><i class="fa fa-twitter"></i></a>
<a href="#" class="footer-up-icon"><i class="fa fa-angle-up"></i></a>
</div>
</div>
</div>
</body>
</html>