Last active
May 25, 2018 04:28
-
-
Save eins78/a8dde1eb0d10963a65e7 to your computer and use it in GitHub Desktop.
testing Input typeface with Atom editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// * Download and install font from <http://input.fontbureau.com/download/> | |
// * Atom Editor: Atom > 'Open Your Stylesheet' | |
.workspace { | |
font-family: "Input Sans Condensed"; | |
} | |
.tree-view { | |
font-family: "Input Sans Condensed"; | |
} | |
.editor { | |
font-family: "Input Sans"; | |
} | |
// use condensed font if there is more than 1 pane (Split Screen) | |
.pane-row .editor { | |
font-family: "Input Sans Condensed"; | |
} | |
.comment, .string { | |
font-family: "Input Sans"; | |
font-style: normal; | |
font-weight: 300; | |
} | |
.string { | |
font-family: "Input Sans"; | |
} | |
.whitespace, .function { | |
font-family: "Input Mono"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment