In [ ]:
import xlrd
In [ ]:
In [5]:
%%bash
ipython locate
In [3]:
%%bash
mkdir ~/.ipython/profile_customcss/static/
mkdir ~/.ipython/profile_customcss/static/custom/
touch ~/.ipython/profile_customcss/static/custom/custom.css
In [8]:
%%file /home/drhealsgood/.ipython/profile_customcss/static/custom/custom.css
/**write your css in here**/
/* like */
<style>
div.cell{
max-width:750px;
margin-left:auto;
margin-right:auto;
}
h1 {
text-align:center;
font-family:"Courier New", Courier, monospace;
}
</style>
In [9]:
cat ~/.ipython/profile_customcss/static/custom/custom.css
In [10]:
cat ~/.ipython/profile_customcss/static/custom/custom.css
In [ ]: