Last active
June 4, 2018 03:17
-
-
Save iraquitan/7778da4ea6a1e909eb2b0d89cf68eb63 to your computer and use it in GitHub Desktop.
Visual Studio Code Custom CSS and JS Styles
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
| /* | |
| I decided on the Brush Script MT cursive font for now. Works better for me than FlottFlott. | |
| */ | |
| /* .mtk7, | |
| .mtk3, | |
| .mtk13, | |
| .mtk16 { | |
| margin-left: 1px; | |
| font-family: "Operator Mono"; | |
| font-size: 1.7em; | |
| } | |
| .mtk7, | |
| .mtk4 { | |
| font-family: "Operator Mono"; | |
| font-size: 1.7em; | |
| } */ | |
| /* Keywords, decorators, comments */ | |
| .mtk5, | |
| .mtk6, | |
| .mtk8, | |
| .mtk34, | |
| .mtki { | |
| font-family: "Operator Mono"; | |
| font-style: italic; | |
| font-size: 1em; | |
| } | |
| /* | |
| For the tab titles. | |
| */ | |
| /* .monaco-icon-label-description-container .label-name { | |
| font-family: "Operator Mono"; | |
| font-size: 1.3em; | |
| } | |
| .tabs-container .monaco-icon-label-description-container .label-name, | |
| .sidebar .monaco-icon-label-description-container .label-name, | |
| .quick-open-row .monaco-icon-label-description-container .label-name { | |
| font-family: -apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif; | |
| font-size: 1em; | |
| } */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment