Authored by 周少峰

brand icon

1 -*{margin: 0;padding: 0;list-style: none;}  
2 -/*  
3 -KISSY CSS Reset  
4 -理念:1. reset 的目的不是清除浏览器的默认样式,这仅是部分工作。清除和重置是紧密不可分的。  
5 -2. reset 的目的不是让默认样式在所有浏览器下一致,而是减少默认样式有可能带来的问题。  
6 -3. reset 期望提供一套普适通用的基础样式。但没有银弹,推荐根据具体需求,裁剪和修改后再使用。  
7 -特色:1. 适应中文;2. 基于最新主流浏览器。  
8 -维护:玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com>  
9 - */  
10 -  
11 -/** 清除内外边距 **/  
12 -body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */  
13 -dl, dt, dd, ul, ol, li, /* list elements 列表元素 */  
14 -pre, /* text formatting elements 文本格式元素 */  
15 -form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */  
16 -th, td /* table elements 表格元素 */ {  
17 - margin: 0;  
18 - padding: 0;  
19 -}  
20 -  
21 -/** 设置默认字体 **/  
22 -body,  
23 -button, input, select, textarea /* for ie */ {  
24 - font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;  
25 -}  
26 -h1, h2, h3, h4, h5, h6 { font-size: 100%; }  
27 -address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */  
28 -code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */  
29 -small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */  
30 -  
31 -/** 重置列表元素 **/  
32 -ul, ol { list-style: none; }  
33 -  
34 -/** 重置文本格式元素 **/  
35 -a { text-decoration: none; }  
36 -a:hover { text-decoration: underline; }  
37 -  
38 -  
39 -/** 重置表单元素 **/  
40 -legend { color: #000; } /* for ie6 */  
41 -fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */  
42 -button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */  
43 -/* 注:optgroup 无法扶正 */  
44 -  
45 -/** 重置表格元素 **/  
46 -table { border-collapse: collapse; border-spacing: 0; }  
47 -  
48 -/* 清除浮动 */  
49 -.ks-clear:after, .clear:after {  
50 - content: '\20';  
51 - display: block;  
52 - height: 0;  
53 - clear: both;  
54 -}  
55 -.ks-clear, .clear {  
56 - *zoom: 1;  
57 -}  
58 -  
59 -.main {padding: 30px 100px;}  
60 -.main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;}  
61 -  
62 -.helps{margin-top:40px;}  
63 -.helps pre{  
64 - padding:20px;  
65 - margin:10px 0;  
66 - border:solid 1px #e7e1cd;  
67 - background-color: #fffdef;  
68 - overflow: auto;  
69 -}  
70 -  
71 -.icon_lists li{  
72 - float:left;  
73 - width: 100px;  
74 - height:180px;  
75 - text-align: center;  
76 -}  
77 -.icon_lists .icon{  
78 - font-size: 42px;  
79 - line-height: 100px;  
80 - margin: 10px 0;  
81 - color:#333;  
82 - -webkit-transition: font-size 0.25s ease-out 0s;  
83 - -moz-transition: font-size 0.25s ease-out 0s;  
84 - transition: font-size 0.25s ease-out 0s;  
85 -  
86 -}  
87 -.icon_lists .icon:hover{  
88 - font-size: 100px;  
89 -}  
1 -  
2 -<!DOCTYPE html>  
3 -<html>  
4 -<head>  
5 - <meta charset="utf-8"/>  
6 - <title>IconFont</title>  
7 - <link rel="stylesheet" href="demo.css">  
8 - <link rel="stylesheet" href="iconfont.css">  
9 -</head>  
10 -<body>  
11 - <div class="main">  
12 - <h1>IconFont 图标</h1>  
13 - <ul class="icon_lists clear">  
14 -  
15 - <li>  
16 - <i class="icon iconfont">&#xe624;</i>  
17 - <div class="name">评论</div>  
18 - <div class="code">&amp;#xe624;</div>  
19 - <div class="fontclass">.pinglun</div>  
20 - </li>  
21 -  
22 - <li>  
23 - <i class="icon iconfont">&#xe618;</i>  
24 - <div class="name">左三角</div>  
25 - <div class="code">&amp;#xe618;</div>  
26 - <div class="fontclass">.zuosanjiao</div>  
27 - </li>  
28 -  
29 - <li>  
30 - <i class="icon iconfont">&#xe619;</i>  
31 - <div class="name">右三角</div>  
32 - <div class="code">&amp;#xe619;</div>  
33 - <div class="fontclass">.yousanjiao</div>  
34 - </li>  
35 -  
36 - <li>  
37 - <i class="icon iconfont">&#xe60b;</i>  
38 - <div class="name">向下</div>  
39 - <div class="code">&amp;#xe60b;</div>  
40 - <div class="fontclass">.chevron-down</div>  
41 - </li>  
42 -  
43 - <li>  
44 - <i class="icon iconfont">&#xe60c;</i>  
45 - <div class="name">向右</div>  
46 - <div class="code">&amp;#xe60c;</div>  
47 - <div class="fontclass">.chevron-right</div>  
48 - </li>  
49 -  
50 - <li>  
51 - <i class="icon iconfont">&#xe605;</i>  
52 - <div class="name">对号</div>  
53 - <div class="code">&amp;#xe605;</div>  
54 - <div class="fontclass">.duihao</div>  
55 - </li>  
56 -  
57 - <li>  
58 - <i class="icon iconfont">&#xe61b;</i>  
59 - <div class="name">购物车</div>  
60 - <div class="code">&amp;#xe61b;</div>  
61 - <div class="fontclass">.gouwuche</div>  
62 - </li>  
63 -  
64 - <li>  
65 - <i class="icon iconfont">&#xe60d;</i>  
66 - <div class="name"></div>  
67 - <div class="code">&amp;#xe60d;</div>  
68 - <div class="fontclass">.cha</div>  
69 - </li>  
70 -  
71 - <li>  
72 - <i class="icon iconfont">&#xe61c;</i>  
73 - <div class="name">forbid</div>  
74 - <div class="code">&amp;#xe61c;</div>  
75 - <div class="fontclass">.forbid</div>  
76 - </li>  
77 -  
78 - <li>  
79 - <i class="icon iconfont">&#xe60e;</i>  
80 - <div class="name">left</div>  
81 - <div class="code">&amp;#xe60e;</div>  
82 - <div class="fontclass">.left</div>  
83 - </li>  
84 -  
85 - <li>  
86 - <i class="icon iconfont">&#xe614;</i>  
87 - <div class="name">sort</div>  
88 - <div class="code">&amp;#xe614;</div>  
89 - <div class="fontclass">.sort</div>  
90 - </li>  
91 -  
92 - <li>  
93 - <i class="icon iconfont">&#xe625;</i>  
94 - <div class="name">时间</div>  
95 - <div class="code">&amp;#xe625;</div>  
96 - <div class="fontclass">.iconsj</div>  
97 - </li>  
98 -  
99 - <li>  
100 - <i class="icon iconfont">&#xe60f;</i>  
101 - <div class="name">search</div>  
102 - <div class="code">&amp;#xe60f;</div>  
103 - <div class="fontclass">.search</div>  
104 - </li>  
105 -  
106 - <li>  
107 - <i class="icon iconfont">&#xe615;</i>  
108 - <div class="name">三角2</div>  
109 - <div class="code">&amp;#xe615;</div>  
110 - <div class="fontclass">.sanjiao2</div>  
111 - </li>  
112 -  
113 - <li>  
114 - <i class="icon iconfont">&#xe610;</i>  
115 - <div class="name">三角1</div>  
116 - <div class="code">&amp;#xe610;</div>  
117 - <div class="fontclass">.sanjiao1</div>  
118 - </li>  
119 -  
120 - <li>  
121 - <i class="icon iconfont">&#xe608;</i>  
122 - <div class="name">向右</div>  
123 - <div class="code">&amp;#xe608;</div>  
124 - <div class="fontclass">.xiangyou</div>  
125 - </li>  
126 -  
127 - <li>  
128 - <i class="icon iconfont">&#xe609;</i>  
129 - <div class="name">向左</div>  
130 - <div class="code">&amp;#xe609;</div>  
131 - <div class="fontclass">.xiangzuo</div>  
132 - </li>  
133 -  
134 - <li>  
135 - <i class="icon iconfont">&#xe620;</i>  
136 - <div class="name">问号</div>  
137 - <div class="code">&amp;#xe620;</div>  
138 - <div class="fontclass">.wenhao</div>  
139 - </li>  
140 -  
141 - <li>  
142 - <i class="icon iconfont">&#xe61d;</i>  
143 - <div class="name">向下</div>  
144 - <div class="code">&amp;#xe61d;</div>  
145 - <div class="fontclass">.xiangxia</div>  
146 - </li>  
147 -  
148 - <li>  
149 - <i class="icon iconfont">&#xe621;</i>  
150 - <div class="name">电话</div>  
151 - <div class="code">&amp;#xe621;</div>  
152 - <div class="fontclass">.dianhua</div>  
153 - </li>  
154 -  
155 - <li>  
156 - <i class="icon iconfont">&#xe60a;</i>  
157 - <div class="name">time</div>  
158 - <div class="code">&amp;#xe60a;</div>  
159 - <div class="fontclass">.time</div>  
160 - </li>  
161 -  
162 - <li>  
163 - <i class="icon iconfont">&#xe626;</i>  
164 - <div class="name"></div>  
165 - <div class="code">&amp;#xe626;</div>  
166 - <div class="fontclass">.zan</div>  
167 - </li>  
168 -  
169 - <li>  
170 - <i class="icon iconfont">&#xe607;</i>  
171 - <div class="name">up</div>  
172 - <div class="code">&amp;#xe607;</div>  
173 - <div class="fontclass">.up</div>  
174 - </li>  
175 -  
176 - <li>  
177 - <i class="icon iconfont">&#xe611;</i>  
178 - <div class="name">Heart</div>  
179 - <div class="code">&amp;#xe611;</div>  
180 - <div class="fontclass">.heart</div>  
181 - </li>  
182 -  
183 - <li>  
184 - <i class="icon iconfont">&#xe616;</i>  
185 - <div class="name">login_check_button1</div>  
186 - <div class="code">&amp;#xe616;</div>  
187 - <div class="fontclass">.logincheckbutton1</div>  
188 - </li>  
189 -  
190 - <li>  
191 - <i class="icon iconfont">&#xe601;</i>  
192 - <div class="name">mail</div>  
193 - <div class="code">&amp;#xe601;</div>  
194 - <div class="fontclass">.aaa</div>  
195 - </li>  
196 -  
197 - <li>  
198 - <i class="icon iconfont">&#xe61e;</i>  
199 - <div class="name">评论</div>  
200 - <div class="code">&amp;#xe61e;</div>  
201 - <div class="fontclass">.pinglun1</div>  
202 - </li>  
203 -  
204 - <li>  
205 - <i class="icon iconfont">&#xe622;</i>  
206 - <div class="name">正确</div>  
207 - <div class="code">&amp;#xe622;</div>  
208 - <div class="fontclass">.zhengque</div>  
209 - </li>  
210 -  
211 - <li>  
212 - <i class="icon iconfont">&#xe606;</i>  
213 - <div class="name">circle</div>  
214 - <div class="code">&amp;#xe606;</div>  
215 - <div class="fontclass">.circle</div>  
216 - </li>  
217 -  
218 - <li>  
219 - <i class="icon iconfont">&#xe627;</i>  
220 - <div class="name">eye</div>  
221 - <div class="code">&amp;#xe627;</div>  
222 - <div class="fontclass">.eye</div>  
223 - </li>  
224 -  
225 - <li>  
226 - <i class="icon iconfont">&#xe61f;</i>  
227 - <div class="name">03-叹号</div>  
228 - <div class="code">&amp;#xe61f;</div>  
229 - <div class="fontclass">.03tanhao</div>  
230 - </li>  
231 -  
232 - <li>  
233 - <i class="icon iconfont">&#xe61a;</i>  
234 - <div class="name">home</div>  
235 - <div class="code">&amp;#xe61a;</div>  
236 - <div class="fontclass">.home</div>  
237 - </li>  
238 -  
239 - <li>  
240 - <i class="icon iconfont">&#xe600;</i>  
241 - <div class="name">shopping-card</div>  
242 - <div class="code">&amp;#xe600;</div>  
243 - <div class="fontclass">.shoppingcard</div>  
244 - </li>  
245 -  
246 - <li>  
247 - <i class="icon iconfont">&#xe617;</i>  
248 - <div class="name">checkbox-checked</div>  
249 - <div class="code">&amp;#xe617;</div>  
250 - <div class="fontclass">.checkboxchecked</div>  
251 - </li>  
252 -  
253 - <li>  
254 - <i class="icon iconfont">&#xe623;</i>  
255 - <div class="name">五角星</div>  
256 - <div class="code">&amp;#xe623;</div>  
257 - <div class="fontclass">.wujiaoxing</div>  
258 - </li>  
259 -  
260 - <li>  
261 - <i class="icon iconfont">&#xe612;</i>  
262 - <div class="name">select</div>  
263 - <div class="code">&amp;#xe612;</div>  
264 - <div class="fontclass">.zhengchang</div>  
265 - </li>  
266 -  
267 - <li>  
268 - <i class="icon iconfont">&#xe613;</i>  
269 - <div class="name">selected</div>  
270 - <div class="code">&amp;#xe613;</div>  
271 - <div class="fontclass">.weibiaoti7</div>  
272 - </li>  
273 -  
274 - <li>  
275 - <i class="icon iconfont">&#xe602;</i>  
276 - <div class="name">sya</div>  
277 - <div class="code">&amp;#xe602;</div>  
278 - <div class="fontclass">.say1</div>  
279 - </li>  
280 -  
281 - <li>  
282 - <i class="icon iconfont">&#xe603;</i>  
283 - <div class="name">7days</div>  
284 - <div class="code">&amp;#xe603;</div>  
285 - <div class="fontclass">.7t11</div>  
286 - </li>  
287 -  
288 - <li>  
289 - <i class="icon iconfont">&#xe604;</i>  
290 - <div class="name">zheng</div>  
291 - <div class="code">&amp;#xe604;</div>  
292 - <div class="fontclass">.z</div>  
293 - </li>  
294 -  
295 - </ul>  
296 -  
297 -  
298 - <div class="helps">  
299 - 第一步:使用font-face声明字体  
300 - <pre>  
301 -@font-face {font-family: 'iconfont';  
302 - src: url('iconfont.eot'); /* IE9*/  
303 - src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */  
304 - url('iconfont.woff') format('woff'), /* chrome、firefox */  
305 - url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/  
306 - url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */  
307 -}  
308 -</pre>  
309 -第二步:定义使用iconfont的样式  
310 - <pre>  
311 -.iconfont{  
312 - font-family:"iconfont" !important;  
313 - font-size:16px;font-style:normal;  
314 - -webkit-font-smoothing: antialiased;  
315 - -webkit-text-stroke-width: 0.2px;  
316 - -moz-osx-font-smoothing: grayscale;}  
317 -</pre>  
318 -第三步:挑选相应图标并获取字体编码,应用于页面  
319 -<pre>  
320 -&lt;i class="iconfont"&gt;&amp;#x33;&lt;/i&gt;  
321 -</pre>  
322 - </div>  
323 -  
324 - </div>  
325 -</body>  
326 -</html>  
1 -  
2 -@font-face {font-family: "iconfont";  
3 - src: url('iconfont.eot?t=1473148446'); /* IE9*/  
4 - src: url('iconfont.eot?t=1473148446#iefix') format('embedded-opentype'), /* IE6-IE8 */  
5 - url('iconfont.woff?t=1473148446') format('woff'), /* chrome, firefox */  
6 - url('iconfont.ttf?t=1473148446') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/  
7 - url('iconfont.svg?t=1473148446#iconfont') format('svg'); /* iOS 4.1- */  
8 -}  
9 -  
10 -.iconfont {  
11 - font-family:"iconfont" !important;  
12 - font-size:16px;  
13 - font-style:normal;  
14 - -webkit-font-smoothing: antialiased;  
15 - -webkit-text-stroke-width: 0.2px;  
16 - -moz-osx-font-smoothing: grayscale;  
17 -}  
18 -.icon-pinglun:before { content: "\e624"; }  
19 -.icon-zuosanjiao:before { content: "\e618"; }  
20 -.icon-yousanjiao:before { content: "\e619"; }  
21 -.icon-chevron-down:before { content: "\e60b"; }  
22 -.icon-chevron-right:before { content: "\e60c"; }  
23 -.icon-duihao:before { content: "\e605"; }  
24 -.icon-gouwuche:before { content: "\e61b"; }  
25 -.icon-cha:before { content: "\e60d"; }  
26 -.icon-forbid:before { content: "\e61c"; }  
27 -.icon-left:before { content: "\e60e"; }  
28 -.icon-sort:before { content: "\e614"; }  
29 -.icon-iconsj:before { content: "\e625"; }  
30 -.icon-search:before { content: "\e60f"; }  
31 -.icon-sanjiao2:before { content: "\e615"; }  
32 -.icon-sanjiao1:before { content: "\e610"; }  
33 -.icon-xiangyou:before { content: "\e608"; }  
34 -.icon-xiangzuo:before { content: "\e609"; }  
35 -.icon-wenhao:before { content: "\e620"; }  
36 -.icon-xiangxia:before { content: "\e61d"; }  
37 -.icon-dianhua:before { content: "\e621"; }  
38 -.icon-time:before { content: "\e60a"; }  
39 -.icon-zan:before { content: "\e626"; }  
40 -.icon-up:before { content: "\e607"; }  
41 -.icon-heart:before { content: "\e611"; }  
42 -.icon-logincheckbutton1:before { content: "\e616"; }  
43 -.icon-aaa:before { content: "\e601"; }  
44 -.icon-pinglun1:before { content: "\e61e"; }  
45 -.icon-zhengque:before { content: "\e622"; }  
46 -.icon-circle:before { content: "\e606"; }  
47 -.icon-eye:before { content: "\e627"; }  
48 -.icon-03tanhao:before { content: "\e61f"; }  
49 -.icon-home:before { content: "\e61a"; }  
50 -.icon-shoppingcard:before { content: "\e600"; }  
51 -.icon-checkboxchecked:before { content: "\e617"; }  
52 -.icon-wujiaoxing:before { content: "\e623"; }  
53 -.icon-zhengchang:before { content: "\e612"; }  
54 -.icon-weibiaoti7:before { content: "\e613"; }  
55 -.icon-say1:before { content: "\e602"; }  
56 -.icon-7t11:before { content: "\e603"; }  
57 -.icon-z:before { content: "\e604"; }  
No preview for this file type
@@ -2,11 +2,7 @@ @@ -2,11 +2,7 @@
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3 <svg xmlns="http://www.w3.org/2000/svg"> 3 <svg xmlns="http://www.w3.org/2000/svg">
4 <metadata> 4 <metadata>
5 -<<<<<<< HEAD  
6 -Created by FontForge 20120731 at Tue Sep 6 15:54:06 2016  
7 -=======  
8 -Created by FontForge 20120731 at Wed Sep 21 17:18:20 2016  
9 ->>>>>>> remotes/origin/master 5 +Created by FontForge 20120731 at Wed Oct 19 11:59:28 2016
10 By admin 6 By admin
11 </metadata> 7 </metadata>
12 <defs> 8 <defs>
@@ -20,14 +16,10 @@ Created by FontForge 20120731 at Wed Sep 21 17:18:20 2016 @@ -20,14 +16,10 @@ Created by FontForge 20120731 at Wed Sep 21 17:18:20 2016
20 ascent="896" 16 ascent="896"
21 descent="-128" 17 descent="-128"
22 x-height="792" 18 x-height="792"
23 - bbox="0 -212 1158 896" 19 + bbox="-0.75 -212 1160 896.75"
24 underline-thickness="50" 20 underline-thickness="50"
25 underline-position="-100" 21 underline-position="-100"
26 -<<<<<<< HEAD  
27 - unicode-range="U+0078-E627"  
28 -=======  
29 - unicode-range="U+0078-E62A"  
30 ->>>>>>> remotes/origin/master 22 + unicode-range="U+0078-E637"
31 /> 23 />
32 <missing-glyph horiz-adv-x="374" 24 <missing-glyph horiz-adv-x="374"
33 d="M34 0v682h272v-682h-272zM68 34h204v614h-204v-614z" /> 25 d="M34 0v682h272v-682h-272zM68 34h204v614h-204v-614z" />
@@ -149,8 +141,6 @@ q0 -28 20 -48.5t49 -20.5h137v518h-137q-29 0 -49 -20.5t-20 -48.5zM0 379z" /> @@ -149,8 +141,6 @@ q0 -28 20 -48.5t49 -20.5h137v518h-137q-29 0 -49 -20.5t-20 -48.5zM0 379z" />
149 <glyph glyph-name="uniE627" unicode="&#xe627;" horiz-adv-x="1025" 141 <glyph glyph-name="uniE627" unicode="&#xe627;" horiz-adv-x="1025"
150 d="M512 719q-167 0 -304.5 -89.5t-205.5 -236.5q-4 -9 0 -18q68 -147 205.5 -236.5t304.5 -89.5t304.5 89.5t205.5 236.5q4 9 0 18q-68 147 -205.5 236.5t-304.5 89.5zM512 153q-96 0 -163.5 67.5t-67.5 163.5t67.5 163.5t163.5 67.5t163.5 -67.5t67.5 -163.5t-67.5 -163.5 142 d="M512 719q-167 0 -304.5 -89.5t-205.5 -236.5q-4 -9 0 -18q68 -147 205.5 -236.5t304.5 -89.5t304.5 89.5t205.5 236.5q4 9 0 18q-68 147 -205.5 236.5t-304.5 89.5zM512 153q-96 0 -163.5 67.5t-67.5 163.5t67.5 163.5t163.5 67.5t163.5 -67.5t67.5 -163.5t-67.5 -163.5
151 t-163.5 -67.5zM512 384zM364 384q0 61 43.5 104.5t104.5 43.5t104.5 -43.5t43.5 -104.5t-43.5 -104.5t-104.5 -43.5t-104.5 43.5t-43.5 104.5z" /> 143 t-163.5 -67.5zM512 384zM364 384q0 61 43.5 104.5t104.5 43.5t104.5 -43.5t43.5 -104.5t-43.5 -104.5t-104.5 -43.5t-104.5 43.5t-43.5 104.5z" />
152 -<<<<<<< HEAD  
153 -=======  
154 <glyph glyph-name="uniE628" unicode="&#xe628;" 144 <glyph glyph-name="uniE628" unicode="&#xe628;"
155 d="M512 886q-102 0 -195 -39.5t-160.5 -107t-107 -160.5t-39.5 -195t39.5 -195t107 -160.5t160.5 -107t195 -39.5t195 39.5t160.5 107t107 160.5t39.5 195t-39.5 195t-107 160.5t-160.5 107t-195 39.5zM521 -15q-34 0 -58.5 24t-24.5 58.5t24.5 58.5t58.5 24t58 -24t24 -58 145 d="M512 886q-102 0 -195 -39.5t-160.5 -107t-107 -160.5t-39.5 -195t39.5 -195t107 -160.5t160.5 -107t195 -39.5t195 39.5t160.5 107t107 160.5t39.5 195t-39.5 195t-107 160.5t-160.5 107t-195 39.5zM521 -15q-34 0 -58.5 24t-24.5 58.5t24.5 58.5t58.5 24t58 -24t24 -58
156 q1 -34 -23.5 -58.5t-58.5 -24.5zM738 477q-17 -34 -67 -83q-45 -43 -60 -61q-12 -16 -17 -35q-6 -22 -6 -61l1 -31h-142v30q0 56 9 90q11 38 30 64q17 23 62 71q43 44 52 60q8 13 8 44q0 28 -20 51q-20 21 -61 21q-29 0 -48.5 -9.5t-28.5 -27.5t-12.5 -36t-3.5 -43v-30h-142 146 q1 -34 -23.5 -58.5t-58.5 -24.5zM738 477q-17 -34 -67 -83q-45 -43 -60 -61q-12 -16 -17 -35q-6 -22 -6 -61l1 -31h-142v30q0 56 9 90q11 38 30 64q17 23 62 71q43 44 52 60q8 13 8 44q0 28 -20 51q-20 21 -61 21q-29 0 -48.5 -9.5t-28.5 -27.5t-12.5 -36t-3.5 -43v-30h-142
@@ -160,6 +150,37 @@ d="M511 833q-91 0 -174 -36t-143 -96t-95.5 -143t-35.5 -174t35.5 -174t95.5 -143t14 @@ -160,6 +150,37 @@ d="M511 833q-91 0 -174 -36t-143 -96t-95.5 -143t-35.5 -174t35.5 -174t95.5 -143t14
160 t-34 14t-14 34t14 34l192 191l-192 192q-14 14 -14 34t14 34t34 14t34 -14l192 -192l192 192q14 14 33.5 14t34 -14t14.5 -34t-15 -34l-191 -192z" /> 150 t-34 14t-14 34t14 34l192 191l-192 192q-14 14 -14 34t14 34t34 14t34 -14l192 -192l192 192q14 14 33.5 14t34 -14t14.5 -34t-15 -34l-191 -192z" />
161 <glyph glyph-name="uniE62A" unicode="&#xe62a;" 151 <glyph glyph-name="uniE62A" unicode="&#xe62a;"
162 d="M799 456l127 127v313h-830v-609l421 -413l409 404v181l-414 -401l-288 284v426h575v-312zM671 518l-107 22l-53 100l-52 -100l-108 -22l75 -83l-14 -114l99 49l99 -49l-14 114z" /> 152 d="M799 456l127 127v313h-830v-609l421 -413l409 404v181l-414 -401l-288 284v426h575v-312zM671 518l-107 22l-53 100l-52 -100l-108 -22l75 -83l-14 -114l99 49l99 -49l-14 114z" />
163 ->>>>>>> remotes/origin/master 153 + <glyph glyph-name="uniE62B" unicode="&#xe62b;"
  154 +d="M562 224h109v-111h-109v111zM889 224h109v-111h-109v111zM562 113h109v-110h-109v110zM438 458h-438v438h438v-438zM111 569h216v216h-216v-216zM1000 458h-438v438h438v-438zM673 569h216v216h-216v-216zM438 -106h-438v438h438v-438zM111 5h216v216h-216v-216zM561 335
  155 +h222v-111h-222v111zM889 334h109v-111h-109v111zM780 113h109v-111h-109v111zM562 2h218v-110h-218v110zM889 2h109v-110h-109v110z" />
  156 + <glyph glyph-name="uniE62C" unicode="&#xe62c;"
  157 +d="M512 769q-104 0 -192.5 -51.5t-140 -140t-51.5 -193t51.5 -193t140 -140t192.5 -51.5t192.5 51.5t140 140t51.5 193t-51.5 193t-140 140t-192.5 51.5zM660 181h-50v175h-196v-175h-50v395h50v-179h196v179h50v-395z" />
  158 + <glyph glyph-name="uniE62D" unicode="&#xe62d;" horiz-adv-x="1000"
  159 +d="M751 766q21 -20 34 -33t19.5 -22.5t8.5 -16t2 -10.5v-13h-119q-8 0 -14 6t-10 14t-6 16.5t-2 12.5v100h3q6 0 13 -2t15.5 -8t22 -16t33.5 -28zM614 720q0 -16 5 -33.5t15 -32t26 -24t38 -9.5h117v-451q0 -24 -9.5 -42t-24.5 -31t-33.5 -20t-35.5 -7h-394q-15 0 -33 8.5
  160 +t-33.5 23t-26 33t-10.5 38.5v543q0 17 7.5 35t21 33.5t30 25.5t35.5 10h305v-100zM664 221q21 0 35.5 14.5t14.5 35.5t-14.5 35.5t-35.5 14.5h-299q-21 0 -35.5 -14.5t-14.5 -35.5t14.5 -35.5t35.5 -14.5h299zM714 470q0 21 -14.5 36t-35.5 15h-299q-21 0 -35.5 -15
  161 +t-14.5 -36t14.5 -35t35.5 -14h299q21 0 35.5 14t14.5 35zM714 470z" />
  162 + <glyph glyph-name="uniE62E" unicode="&#xe62e;"
  163 +d="M154 770v-646h146l-14 -208l240 208h344v646h-716zM752 260h-134v159h-192v-159h-134v382h134v-148h192v148h134v-382z" />
  164 + <glyph glyph-name="uniE62F" unicode="&#xe62f;"
  165 +d="M866.5 747.5q-97.5 97.5 -228 132t-261.5 0t-228.5 -132t-132 -228.5t0 -261.5t132 -228t228.5 -132t261.5 0t228 132t132 228t0 261.5t-132 228.5zM798 199l-101 -101l-187 186l-186 -186l-101 101l186 186l-186 187l101 101l186 -186l187 186l101 -101l-186 -187z" />
  166 + <glyph glyph-name="uniE630" unicode="&#xe630;" horiz-adv-x="1025"
  167 +d="M1024 480v338q0 32 -23 55t-55 23h-331h-14q-55 0 -76 -21l-506 -506q-19 -19 -19 -46t19 -45l387 -387q18 -19 45 -19t46 19l506 506q10 10 15 25.5t5.5 26.5t0.5 31zM764 549q-36 0 -61.5 25.5t-25.5 61.5t25.5 61t61.5 25t61 -25t25 -61t-25 -61.5t-61 -25.5z" />
  168 + <glyph glyph-name="uniE631" unicode="&#xe631;"
  169 +d="M0 812v-1024h1024v1024h-1024zM983 -171h-942v942h942v-942zM288 280h448q9 0 15 6t6 14t-6 14t-15 6h-448q-9 0 -15 -6t-6 -14t6 -14t15 -6z" />
  170 + <glyph glyph-name="uniE632" unicode="&#xe632;"
  171 +d="M0 812v-1024h1024v1024h-1024zM983 -171h-942v942h942v-942zM288 280h204v-204q0 -9 6 -15t14 -6t14 6t6 15v204h204q9 0 15 6t6 14t-6 14t-15 6h-204v204q0 9 -6 15t-14 6t-14 -6t-6 -15v-204h-204q-9 0 -15 -6t-6 -14t6 -14t15 -6z" />
  172 + <glyph glyph-name="uniE633" unicode="&#xe633;"
  173 +d="M127 769v-770h770v770h-770zM555 170h-86v86h86v-86zM555 298h-86v257h86v-257z" />
  174 + <glyph glyph-name="uniE634" unicode="&#xe634;" horiz-adv-x="1025"
  175 +d="M491 6q9 -10 21.5 -10t21.5 10l357 407q9 10 5.5 17.5t-17.5 7.5h-133q-14 0 -23.5 9.5t-9.5 22.5v261q0 13 -10 22.5t-24 9.5h-333q-14 0 -24 -9.5t-10 -22.5v-261q0 -13 -9.5 -22.5t-23.5 -9.5h-133q-14 0 -17.5 -7.5t5.5 -17.5z" />
  176 + <glyph glyph-name="uniE635" unicode="&#xe635;"
  177 +d="M958 758q0 30 -21 51.5t-51 21.5h-749q-30 0 -51 -21.5t-21 -51.5v-748q0 -30 21 -51t51 -21h749q30 0 51 21t21 51v748zM778 454l-267 -267q-14 -14 -34 -14t-34 14l-168 168q-14 14 -14 34t14 34.5t34 14.5t34 -15l134 -133l233 232q14 14 34 14t34 -14t14 -34t-14 -34
  178 +z" />
  179 + <glyph glyph-name="uniE636" unicode="&#xe636;" horiz-adv-x="1163"
  180 +d="M295 196q67 0 114 -47t47 -113.5t-47 -114t-114 -47.5t-114 47.5t-47 114t47 113.5t114 47zM917.5 196q66.5 0 113.5 -47t47 -113.5t-47 -114t-113.5 -47.5t-114 47.5t-47.5 114t47.5 113.5t114 47zM400 894v-99h-210v0l-187 -294v-372h95q27 56 80 90.5t117 34.5
  181 +t117 -34.5t80 -90.5h228q27 56 80 90.5t117.5 34.5t117.5 -34.5t79 -90.5h46v765h-760zM400 452h-283l159 250l124 1v-251v0zM893 701l-131 -276l-63 31l101 206h-105v68h198v-29v0z" />
  182 + <glyph glyph-name="uniE637" unicode="&#xe637;"
  183 +d="M1020 810q0 34 -24 58t-59 24h-851q-34 0 -58.5 -24t-24.5 -58v-852q0 -34 24.5 -58t58.5 -24h851q35 0 59 24t24 58v852zM815 464l-304 -304q-16 -16 -38.5 -16t-38.5 16l-191 191q-17 16 -17 39t16.5 39t39 16t38.5 -16l153 -152l264 264q16 16 39 16t39 -16t16 -38.5
  184 +t-16 -38.5z" />
164 </font> 185 </font>
165 </defs></svg> 186 </defs></svg>
No preview for this file type
No preview for this file type