-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS type-face #106
Comments
Something like @font-face {
font-family: 'Fira Code';
src: url('FiraCode-Regular.otf') format('opentype');
}
code {
-webkit-font-feature-settings: "liga" on, "calt" on;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: 'Fira Code';
} Only tested in Chrome. |
For IE10/Edge, make sure to include the unprefixed font-feature-settings: "calt" 1; |
Any chance of getting Fira Code hosted on Google Fonts? |
Good idea, I think it deserves it's own thread.
|
I want to use this font in combination with an editor widget on my site.
What is the CSS that I would have to bring up to use it?
The text was updated successfully, but these errors were encountered: