CartoAssets/icon-font/template.jst.ejs

44 lines
1.0 KiB
Plaintext
Raw Normal View History

2016-01-18 23:43:02 +08:00
// Icon font elements
// ----------------------------------------------
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 18:21:42 +08:00
2016-01-18 23:43:02 +08:00
/* SG
2016-01-18 18:21:42 +08:00
# Icon font
All available icons in CartoDB.
2016-01-18 05:21:44 +08:00
```
2016-01-18 18:21:42 +08:00
<% _.each(glyphs, function(glyph) { %>
<div class="box">
<i class="IconFont IconFont-<%= glyph.fileName.split("_")[2] %> Size-large"></i>
<h4 class="Text Size-small"><%= glyph.fileName.split("_")[2] %></h4>
</div>
2016-01-18 18:21:42 +08:00
<% }); %>
2016-01-18 05:21:44 +08:00
```
2016-01-18 18:21:42 +08:00
*/
2016-01-18 18:21:42 +08:00
<% _.each(glyphs, function(glyph) { %>
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 %>';
}
<% }); %>