jakevdp / PythonDataScienceHandbook

Python Data Science Handbook: full text in Jupyter Notebooks
http://jakevdp.github.io/PythonDataScienceHandbook
MIT License
43.17k stars 17.93k forks source link

CSS: h2 code font-size #247

Open westurner opened 4 years ago

westurner commented 4 years ago

<code> tags in headers are comparatively small. Something like this would fix it:

/*
h2 {
    font-size: 30px;
}
article code {
    font-size: 13px;
}
*/
h2 code {
   font-size: 28px;
}
/* ... h* code { font-size: } */
nikunj77777 commented 2 years ago

h2 { font-size: 30px; } article code { font-size: 13px; } */ h2 code { font-size: 28px; }