-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (87 loc) · 2.81 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
<!doctype html>
<html>
<head>
<title>TYPO3 Icon Font</title>
<link rel="stylesheet" href="style.css" />
<!--[if lte IE 7]><script src="lte-ie7.js"></script><![endif]-->
</head>
<body>
<div class="w-main centered">
<section class="mtm clearfix" id="glyphs">
<header>
<h1>Glyphs</h1>
</header>
<div class="glyph">
<div class="fs1" aria-hidden="true" data-icon=""></div>
<input type="text" readonly="readonly" value="&#xe002;" />
</div>
<div class="glyph">
<div class="fs1" aria-hidden="true" data-icon=""></div>
<input type="text" readonly="readonly" value="&#xe001;" />
</div>
<div class="glyph">
<div class="fs1" aria-hidden="true" data-icon=""></div>
<input type="text" readonly="readonly" value="&#xe000;" />
</div>
<div class="glyph">
<div class="fs1" aria-hidden="true" data-icon=""></div>
<input type="text" readonly="readonly" value="&#xe003;" />
</div>
</section>
<div class="clear"></div>
<section class="mtm clearfix" id="classnames">
<header>
<h1>Class Names</h1>
</header>
<span class="box1">
<span aria-hidden="true" class="icon-typo3"></span>
icon-typo3
</span>
<span class="box1">
<span aria-hidden="true" class="icon-flow"></span>
icon-flow
</span>
<span class="box1">
<span aria-hidden="true" class="icon-neos"></span>
icon-neos
</span>
<span class="box1">
<span aria-hidden="true" class="icon-typo3-logo"></span>
icon-typo3-logo
</span>
</section>
<section class="mtm clearfix" id="examples">
<header>
<h1>Examples</h1>
</header>
<div class="row">
<span aria-hidden="true" class="icon-typo3 fs2"></span>
<span aria-hidden="true" class="icon-typo3 orange fs3"></span>
<span aria-hidden="true" class="icon-typo3 negative fs4"></span>
</div>
<div class="row">
<span aria-hidden="true" class="icon-flow fs2"></span>
<span aria-hidden="true" class="icon-flow orange fs3"></span>
<span aria-hidden="true" class="icon-flow negative fs4"></span>
</div>
<div class="row">
<span aria-hidden="true" class="icon-neos fs2"></span>
<span aria-hidden="true" class="icon-neos orange fs3"></span>
<span aria-hidden="true" class="icon-neos negative fs4"></span>
</div>
</span>
</section>
<footer>
<p><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.</p>
</footer>
</div>
<script>
document.getElementById("glyphs").addEventListener("click", function(e) {
var target = e.target;
if (target.tagName === "INPUT") {
target.select();
}
});
</script>
</body>
</html>