mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 04:46:41 +00:00
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.
27 lines
629 B
CSS
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");
|
|
}
|