1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pyenv環境で入れたanacondaのjupyter notebookのCSSを変更する

Posted at

はじめに

  • jupyter notebook css とかでググるとCSSの変更、反映方法がヒットしますが、
    pyenvで入れたanacondaに入っているjupyter notebookのCSSの場合、どのパスにあるCSSを変更すればいいか分からずハマったため調べました。

環境

  • OS
    • mac os mojave
  • pyenv 上のanaconda
    • anaconda3-5.3.1

やること

  • 以下のパスにあるCSSを変更してjupyter notebookを再起動するだけ。
$ ~/.pyenv/versions/anaconda3-5.3.1//lib/python3.7/site-packages/notebook/static/notebook/css/override.css

補足

  • 上記のCSSでfontなどを指定しても、デフォルトフォントのほうが優先されてしまう場合があります。
    その場合は CSS上で !important を指定することで反映が可能です。
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?