Created
July 26, 2016 13:20
-
-
Save minjejeon/df880d3099d7b86d322242da9495857b to your computer and use it in GitHub Desktop.
jupyter custom css
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
| /* | |
| Placeholder for custom user CSS | |
| mainly to be overridden in profile/static/custom/custom.css | |
| This will always be an empty file in IPython | |
| */ | |
| div.text_cell { | |
| font-family: 'Malgun Gothic'; | |
| } | |
| div.prompt { | |
| font-family: 'Ubuntu Mono', Consolas, monocco, 'Malgun Gothic'; | |
| } | |
| .CodeMirror { | |
| font-family: 'Ubuntu Mono', Consolas, monocco, 'Malgun Gothic'; | |
| } | |
| .CodeMirror pre { | |
| font-family: 'Ubuntu Mono', Consolas, monocco, 'Malgun Gothic'; | |
| } | |
| .output_subarea { | |
| font-family: 'Ubuntu Mono', Consolas, monocco, 'Malgun Gothic'; | |
| } | |
| .output_subarea pre { | |
| font-family: 'Ubuntu Mono', Consolas, monocco, 'Malgun Gothic'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment