-
Notifications
You must be signed in to change notification settings - Fork 8
/
icon-font.html
195 lines (178 loc) · 4.08 KB
/
icon-font.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Icon Font Logos</title>
<link rel="stylesheet" href="all.css">
<style>
@charset "UTF-8";
@font-face {
font-family: "sb_icons";
src:url("fonts/full/sb_icons.eot");
src:url("fonts/full/sb_icons.eot?#iefix") format("embedded-opentype"),
url("fonts/full/sb_icons.woff") format("woff"),
url("fonts/full/sb_icons.ttf") format("truetype"),
url("fonts/full/sb_icons.svg#sb_icons") format("svg");
font-weight: normal;
font-style: normal;
}
[data-icon]:before,
.fontface {
font-family: "sb_icons" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before,
.fontface {
font-family: "sb_icons" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-sb1:before {
content: "a";
}
.icon-sb2:before {
content: "b";
}
.icon {
font-size: 56px;
}
.wrapper {
max-width: 300px;
margin: 60px auto 0;
line-height: 0.6;
}
.caption {
margin-top: 2.5em;
}
textarea.fontface {
max-width: 100%;
font-size: 58px;
line-height: 1.1;
border: 1px solid #ccc;
}
/* Colors */
.c1 {
color: #c90600;
}
.c2 {
color: #b50500;
}
.c3 {
color: #990312;
}
.c4 {
color: #880120;
}
.c5 {
color: #770028;
}
.c6 {
color: #b50500;
}
.c7 {
color: #a0030d;
}
.c8 {
color: #89021e;
}
.c9 {
color: #780028;
}
.c10 {
color: #660031;
}
.c11 {
color: #990312;
}
.c12 {
color: #89021e;
}
.c13 {
color: #73002b;
}
.c14 {
color: #660033;
}
.c15 {
color: #53003d;
}
.c16 {
color: #880120;
}
.c17 {
color: #780028;
}
.c18 {
color: #660033;
}
.c19 {
color: #50003e;
}
.c20 {
color: #3c004a;
}
.c21 {
color: #770028;
}
.c22 {
color: #660031;
}
.c23 {
color: #53003d;
}
.c24 {
color: #3c004a;
}
.c25 {
color: #250054;
}
</style>
</head>
<body class="icon-font-page">
<h1 class="title">Icon Font Logos</h1>
<div class="wrapper">
<span class="icon icon-sb1 c1"></span>
<span class="icon icon-sb2 c2"></span>
<span class="icon icon-sb1 c3"></span>
<span class="icon icon-sb2 c4"></span>
<span class="icon icon-sb1 c5"></span>
<span class="icon icon-sb2 c6"></span>
<span class="icon icon-sb1 c7"></span>
<span class="icon icon-sb2 c8"></span>
<span class="icon icon-sb1 c9"></span>
<span class="icon icon-sb2 c10"></span>
<span class="icon icon-sb1 c11"></span>
<span class="icon icon-sb2 c12"></span>
<span class="icon icon-sb1 c13"></span>
<span class="icon icon-sb2 c14"></span>
<span class="icon icon-sb1 c15"></span>
<span class="icon icon-sb2 c16"></span>
<span class="icon icon-sb1 c17"></span>
<span class="icon icon-sb2 c18"></span>
<span class="icon icon-sb1 c19"></span>
<span class="icon icon-sb2 c20"></span>
<span class="icon icon-sb1 c21"></span>
<span class="icon icon-sb2 c22"></span>
<span class="icon icon-sb1 c23"></span>
<span class="icon icon-sb2 c24"></span>
<span class="icon icon-sb1 c25"></span>
<p class="caption">Try typing below.</p>
<textarea class="field fontface" rows="3"></textarea>
</div>
</body>
</html>