Files
dotfiles/fonts/Menlo Nerd Font.css
Jim Myhrberg e66883cf73 feat(fonts): add Menlo Nerd Font
While Menlo Nerd Font Mono uses single-width icons (one character), the
non-Mono variant uses double-width icons (two characters).

This allows icons to visually be quite a bit bigger and usable.
2023-04-30 23:51:54 +01:00

27 lines
629 B
CSS

@font-face {
font-family: "Menlo Nerd Font";
font-style: normal;
font-weight: 400;
src: url("Menlo Regular Nerd Font Complete.ttf") format("truetype");
}
@font-face {
font-family: "Menlo Nerd Font";
font-style: italic;
font-weight: 400;
src: url("Menlo Italic Nerd Font Complete.ttf") format("truetype");
}
@font-face {
font-family: "Menlo Nerd Font";
font-weight: 700;
src: url("Menlo Bold Nerd Font Complete.ttf") format("truetype");
}
@font-face {
font-family: "Menlo Nerd Font";
font-style: italic;
font-weight: 700;
src: url("Menlo Bold Italic Nerd Font Complete.ttf") format("truetype");
}