Created
January 13, 2016 14:13
-
-
Save kostasdizas/4e7896be358a5233d54f to your computer and use it in GitHub Desktop.
ipython stylesheet from http://blog.henryhhammond.com/theming-ipython/ -- ~/.jupyter/custom/custom.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('http://fonts.googleapis.com/css?family=Crimson+Text'); | |
@import url('http://fonts.googleapis.com/css?family=Kameron'); | |
@import url('http://fonts.googleapis.com/css?family=Lato:200,300,400'); | |
@import url('http://fonts.googleapis.com/css?family=Source+Code+Pro'); | |
/* Change code font */ | |
.CodeMirror pre { | |
font-family: 'Source Code Pro', Consolas, monocco, monospace; | |
} | |
div.input_area { | |
border-color: rgba(0,0,0,0.10); | |
background: rbga(0,0,0,0.5); | |
} | |
div.text_cell { | |
max-width: 105ex; /* instead of 100%, */ | |
} | |
div.text_cell_render { | |
font-family: "Crimson Text"; | |
font-size: 12pt; | |
line-height: 145%; /* added for some line spacing of text. */ | |
} | |
div.text_cell_render h1, | |
div.text_cell_render h2, | |
div.text_cell_render h3, | |
div.text_cell_render h4, | |
div.text_cell_render h5, | |
div.text_cell_render h6 { | |
font-family: 'Kameron'; | |
font-weight: 300; | |
} | |
div.text_cell_render h1 { | |
font-size: 24pt; | |
} | |
div.text_cell_render h2 { | |
font-size: 18pt; | |
} | |
div.text_cell_render h3 { | |
font-size: 14pt; | |
} | |
.rendered_html pre, | |
.rendered_html code { | |
font-size: medium; | |
} | |
.rendered_html ol { | |
list-style:decimal; | |
margin: 1em 2em; | |
} | |
.prompt.input_prompt { | |
color: rgba(0,0,0,0.5); | |
} | |
.cell.command_mode.selected { | |
border-color: rgba(0,0,0,0.1); | |
} | |
.cell.edit_mode.selected { | |
border-color: rgba(0,0,0,0.15); | |
box-shadow: 0px 0px 5px #f0f0f0; | |
-webkit-box-shadow: 0px 0px 5px #f0f0f0; | |
} | |
div.output_scroll { | |
-webkit-box-shadow: inset 0 2px 8px rgba(0,0,0,0.1); | |
box-shadow: inset 0 2px 8px rgba(0,0,0,0.1); | |
border-radious: 2px; | |
} | |
#menubar .navbar-inner { | |
background: #fff; | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
border-radius: 0; | |
border: none; | |
font-family: lato; | |
font-weight: 400; | |
} | |
.navbar-fixed-top .navbar-inner, | |
.navbar-static-top .navbar-inner { | |
box-shadow: none; | |
-webkit-box-shadow: none; | |
border: none; | |
} | |
div#notebook_panel { | |
box-shadow: none; | |
-webkit-box-shadow: none; | |
border-top: none; | |
} | |
div#notebook { | |
border-top: 1px solid rgba(0,0,0,0.15); | |
} | |
#menubar .navbar .navbar-inner, | |
.toolbar-inner { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
#checkpoint_status, | |
#autosave_status { | |
color: rgba(0,0,0,0.5); | |
} | |
#header { | |
font-family: lato; | |
} | |
#notebook_name { | |
font-weight: 200; | |
} | |
/* | |
This is a lazy fix, we *should* fix the | |
background for each Bootstrap button type | |
*/ | |
#site * .btn { | |
background: #fafafa; | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment