欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jupyter Notebook 更改样式

程序员文章站 2022-06-07 13:52:12
...

样式文件位置:

  • anaconda环境下:\Anaconda3\Lib\site-packages\notebook\static\components\codemirror\lib
  • 虚拟环境下:\Anaconda3\envs\环境名字\Lib\sitepackages\notebook\static\components\codemirror\lib

更改样式块:

.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: Deja Vu Sans Mono;
  font-size: 20px;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: 120%;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
  1. font-family:字体样式
    最适合程序员编程的10款字体:https://www.cnblogs.com/navigator/archive/2011/09/14/2917685.html

  2. font-size:字体大小(使用xp或者%)

  3. line-height:行高

相关标签: 编译器 anaconda