area-51/lib/font-logos/templates/assets/preview.html.njk
2025-01-30 04:21:55 +01:00

42 lines
720 B
Text

<link href="font-logos.css" rel="stylesheet">
<style>
body {
color: #333;
}
td {
text-align: center;
vertical-align: text-bottom;
padding: 10px;
}
td i {
display: block;
}
td i::before {
background-color: #eee;
}
small {
color: #888;
margin-top: 1em;
}
</style>
<body>
<table>
<tbody>
{% set ids=icons|keys|sort %}
{% for id in ids %}
{% set icon=icons[id] %}
<tr>
<td><code>fl-{{ id }}</code></td>
{% for size in [12,14,16,18,20,24,28,32,36,42,48,54] %}
<td>
<i style="font-size: {{ size }}px" class="preview-icon fl-{{ id }}"></i>
<small>{{size}}px</small>
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</body>