应用自定义 CSS#

要应用自定义 CSS,可以在 jupyter config 目录中添加一个 /custom/custom.css 文件。可以通过运行 jupyter --paths 来查找此目录的路径 ~/.jupyter。在那里,您可以创建一个名为 custom 的文件夹,并在该文件夹中创建一个 custom.css 文件。

Jupyter 样式#

您可以使用自定义 CSS 文件来修改默认的 Jupyter 样式。

/* Modify Jupyter Styles */
#top-panel-wrapper,
#jp-top-bar {
  background-color: #aecad4 !important;
}

#menu-panel-wrapper,
#jp-MainMenu,
#menu-panel {
  background-color: #aecad4 !important;
}

.jp-NotebookPanel-toolbar {
  background-color: #aecad4 !important;
}
.lm-MenuBar-content {
  color: #02484d;
}

a screenshot custom jupyter styling

Markdown#

自定义 CSS 的另一个潜在应用是样式化 Markdown。

/* Headings */
h1,
h2 {
  font-family: Impact, Charcoal, sans-serif;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000;
}

h1 {
  font-size: 52px;
  margin-bottom: 40px;
  color: #10929e;
  text-decoration: underline;
}

h2 {
  font-size: 448px;
  margin-bottom: 32px;
  color: #76b4be;
  text-transform: uppercase;
}

/* Block Quotes */
blockquote {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #19085c;
  border-left: 8px solid #effffc;
  background-color: #eafcff;
  padding: 20px;
}

/* Lists */
ul,
ol {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 18px;
  color: #333333;
  margin-bottom: 24px;
}

a screenshot of custom markdown styling