CSS file and logo extension to customize IPython Notebook style for Kording lab (it's now named as Jupyter notebook).
Before version 4.1 easy way to try the css
file is just to replace original custom.css
file with new one using wget
cd ~/.ipython/profile_default/static/custom
rm custom.css
wget https://raw.githubusercontent.com/titipata/klab_ipython_notebook/master/custom.css
There are a lot more custom.css
file that you can download from Nikhil S's Github.
After 4.1 they move ~/.ipython/profile_default/static/custom/
to ~/.jupyter/custom/
instead (see more details here). So first, we have to create the folder in ~/.jupyter
. Then download the css
file into ~/.jupyter/custom/custom.css
wget https://raw.githubusercontent.com/titipata/klab_ipython_notebook/master/custom.css
Before version 4.1 This is step-by-step on how to create a new ipython profile and add logo to your own ipython. In this repository, I attached css file (adapted from HHammond IPython Notebook example) and klab logo for ipython notebook. We can create new profile_klab
folder in .ipython
folder by typing this bash script:
ipython profile create klab
Note that klab
is the profile name. Our final goal, we will add this css
file and logo ipynblogo.png
into the folder to custom your ipython notebook! First, we can locate .ipython
location by typing
ipython locate
in bash shell. Then we can go to that directory. We will see profile_klab
folder located in .ipython
folder. Now, we can place given file to the directory that we have created. Suppose the .ipython
is located in home directory, the location of custom.css
file is located in this given location:
~/.ipython/profile_klab/static/custom/custom.css
And the location of logo is located as follow (use mkdir
to create folder):
~/.ipython/profile_klab/static/base/images/ipynblogo.png
Now, you can run ipython notebook with your new created profile by typing:
ipython notebook --profile klab
Then, you will rejoice by this beautiful selected font :)
After version 4.1 and before too
We can actually apply css in order to custom the logo. Basically, we can add logo.png
into .jupyter/custom/logo.png
. Then add the following line to .jupyter/custom/custom.css
in order to load the logo. (See this post and this post on Stack Overflow.)
#ipython_notebook {
height: 40px !important;
}
#ipython_notebook img{
display:block;
background: url(logo.png) no-repeat;
background-size: contain;
width: 233px;
height: 33px;
padding-left: 233px;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
If you want to increase the space for logo, just add first css tag. And you can control the size of logo by customizing width
and height
in the second component.
You can also download style to ipython notebook by simply adding these lines to the notebook. This will work with another customize css
file which will become handy if you want to change style in particular notebook:
import requests
from IPython.core.display import HTML
link = requests.get("https://raw.githubusercontent.com/titipata/klab_ipython_notebook/master/custom.css")
HTML("<style>"+link.content+"</style>")
If you want to put code on NBViewer, we can add <style>
and </style>
to the beginning of custom.css
file (where we have custom_nb.css
file added on the repository). Then, we can attach custom_nb.css
file to notebook by put few lines of code that includes the file i.e.
from IPython.core.display import HTML
HTML(open("<path_to>/custom_nb.css", "r").read())
Example is shown here in NBViewer link
- Subject Zero, Kording lab mascot
- HHammond ipython notebook (from nbviewer). Here is his original link
- Titipat Achakulvisut
- Daniel Acuna