Skip to content

Instantly share code, notes, and snippets.

@alexbaumgertner
Last active October 14, 2024 08:33
Show Gist options
  • Save alexbaumgertner/3b2477b57fd681ada26f9ead5686ebc1 to your computer and use it in GitHub Desktop.
Save alexbaumgertner/3b2477b57fd681ada26f9ead5686ebc1 to your computer and use it in GitHub Desktop.
Enable Input Mono font for all monospaced fonts
@font-face {
font-family: 'Consolas';
src: local(input mono);
}
@font-face {
font-family: 'Liberation Mono';
src: local(input mono);
}
@font-face {
font-family: 'Menlo';
src: local(input mono);
}
@font-face {
font-family: 'Courier';
src: local(input mono);
}
@font-face {
font-family: 'monospace';
src: local(input mono);
}
@font-face {
font-family: 'input';
src: local(input mono);
}
@alexbaumgertner
Copy link
Author

Font: http://input.fontbureau.com/
Stylish extension: https://userstyles.org/
just add new rule
edit style input mono font 2016-04-01 14-35-37

or install it from userstyle link: https://userstyles.org/styles/126224/stylish-input-mono-font-force-enable

or add css code to ../User Data\Default\User StyleSheets\custom.css

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment