CartoAssets/icon_font/template.jst.ejs

34 lines
863 B
Plaintext
Raw Normal View History

2016-01-18 05:21:44 +08:00
@font-face {
2016-01-18 06:43:04 +08:00
font-family: 'CartoIcon';
src: url('fonts/cartoIcon.eot');
src: url('fonts/cartoIcon.eot?#iefix') format('embedded-opentype'),
url('fonts/cartoIcon.woff') format('woff'),
url('fonts/cartoIcon.ttf') format('truetype'),
url('fonts/cartoIcon.svg?ey3vsq#cartoIcon') format('svg');
2016-01-18 05:21:44 +08:00
font-weight: normal;
font-style: normal;
}
2016-01-18 17:38:58 +08:00
.IconFont {
2016-01-18 06:49:29 +08:00
display: inline-block;
font-family: 'CartoIcon';
font-style: normal;
font-weight: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1;
}
2016-01-18 05:21:44 +08:00
<% _.each(glyphs, function(glyph) { %>
2016-01-18 06:35:00 +08:00
<%= '/* SG' %>
2016-01-18 05:21:44 +08:00
<%= '# Icon font/' + glyph.fileName.split("_")[2] %>
```
2016-01-18 17:45:47 +08:00
<i class="IconFont IconFont-<%= glyph.fileName.split("_")[2] %>"></i>
2016-01-18 05:21:44 +08:00
```
2016-01-18 06:35:00 +08:00
<%= '*/' %>
2016-01-18 17:38:58 +08:00
.IconFont-<%= glyph.fileName.split("_")[2] %>::before {
2016-01-18 05:21:44 +08:00
content: '\<%= glyph.codePoint %>';
}
<% }); %>