Show More
notebook.css
268 lines
| 5.9 KiB
| text/css
|
CssLexer
|
r4299 | /** | ||
* HTML5 ✰ Boilerplate | ||||
* | ||||
* style.css contains a reset, font normalization and some base styles. | ||||
* | ||||
* Credit is left where credit is due. | ||||
* Much inspiration was taken from these projects: | ||||
* - yui.yahooapis.com/2.8.1/build/base/base.css | ||||
* - camendesign.com/design/ | ||||
* - praegnanz.de/weblog/htmlcssjs-kickstart | ||||
*/ | ||||
/** | ||||
* html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline) | ||||
* v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark | ||||
* html5doctor.com/html-5-reset-stylesheet/ | ||||
*/ | ||||
html, body, div, span, object, iframe, | ||||
|
r4292 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
|
r4299 | abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, | ||
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, | ||||
|
r4292 | fieldset, form, label, legend, | ||
table, caption, tbody, tfoot, thead, tr, th, td, | ||||
|
r4299 | article, aside, canvas, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section, summary, | ||||
|
r4292 | time, mark, audio, video { | ||
|
r4299 | margin: 0; | ||
padding: 0; | ||||
border: 0; | ||||
|
r4317 | /* font-size: 100%;*/ | ||
|
r4299 | font: inherit; | ||
vertical-align: baseline; | ||||
} | ||||
article, aside, details, figcaption, figure, | ||||
footer, header, hgroup, menu, nav, section { | ||||
display: block; | ||||
|
r4292 | } | ||
|
r4299 | blockquote, q { quotes: none; } | ||
blockquote:before, blockquote:after, | ||||
q:before, q:after { content: ""; content: none; } | ||||
ins { background-color: #ff9; color: #000; text-decoration: none; } | ||||
mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } | ||||
del { text-decoration: line-through; } | ||||
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } | ||||
table { border-collapse: collapse; border-spacing: 0; } | ||||
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } | ||||
input, select { vertical-align: middle; } | ||||
|
r4292 | body { | ||
background-color: white; | ||||
|
r4317 | /* This won't propagate to all children so we also set it below */ | ||
|
r4366 | font-size: 11pt; | ||
|
r4311 | /* This makes sure that the body covers the entire window and needs to | ||
be in a different element than the display: box in wrapper below */ | ||||
position: absolute; | ||||
left: 0px; | ||||
right: 0px; | ||||
top: 0px; | ||||
bottom: 0px; | ||||
|
r4355 | overflow: hidden; | ||
|
r4311 | } | ||
|
r4292 | |||
span#ipython_notebook h1 { | ||||
|
r4312 | font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; | ||
|
r4355 | font-size: 22pt; | ||
|
r4360 | height: 35px; | ||
padding: 5px; | ||||
margin: 0px; | ||||
|
r4292 | } | ||
|
r4310 | span#kernel_status { | ||
position: absolute; | ||||
top: 12%; | ||||
right: 10px; | ||||
font-weight: bold; | ||||
} | ||||
.status_idle { | ||||
color: gray; | ||||
} | ||||
.status_busy { | ||||
color: red; | ||||
} | ||||
.status_restarting { | ||||
color: black; | ||||
} | ||||
|
r4355 | div#notebook_app { | ||
|
r4359 | width: 100%; | ||
|
r4360 | position: relative; | ||
|
r4355 | } | ||
div#left_panel { | ||||
|
r4311 | overflow-y: auto; | ||
|
r4360 | top: 0px; | ||
left: 0px; | ||||
margin: 0px; | ||||
padding: 0px; | ||||
position: absolute; | ||||
|
r4355 | } | ||
|
r4365 | h3.section_header { | ||
padding: 5px; | ||||
} | ||||
div.section_content { | ||||
padding: 5px; | ||||
} | ||||
span.button_label { | ||||
padding: 0.3em 1em; | ||||
font-size: 0.8em; | ||||
} | ||||
.ui-button .ui-button-text { | ||||
padding: 0.3em 0.9em; | ||||
font-size: 0.7em; | ||||
} | ||||
|
r4355 | div#left_panel_splitter { | ||
|
r4361 | width: 8px; | ||
|
r4360 | top: 0px; | ||
left: 202px; | ||||
margin: 0px; | ||||
padding: 0px; | ||||
position: absolute; | ||||
|
r4355 | } | ||
|
r4360 | div#notebook_panel { | ||
|
r4363 | /* The L margin will be set in the Javascript code*/ | ||
margin: 0px 0px 0px 0px; | ||||
|
r4360 | padding: 0px; | ||
|
r4355 | } | ||
div#notebook { | ||||
overflow-y: scroll; | ||||
overflow-x: auto; | ||||
|
r4360 | width: 100%; | ||
|
r4364 | padding: 0px 15px 0px 15px; | ||
|
r4360 | margin: 0px | ||
|
r4292 | background-color: white; | ||
|
r4366 | font-size: 11pt; | ||
|
r4331 | } | ||
|
r4311 | |||
|
r4360 | div#pager_splitter { | ||
|
r4361 | height: 8px; | ||
|
r4360 | } | ||
div#pager { | ||||
|
r4364 | padding: 15px; | ||
|
r4360 | overflow: auto; | ||
} | ||||
|
r4331 | .monospace-font { | ||
font-family: monospace; | ||||
|
r4366 | font-size: 11pt; | ||
|
r4292 | } | ||
div.cell { | ||||
|
r4311 | width: 100%; | ||
|
r4361 | padding: 5px; | ||
|
r4324 | /* This acts as a spacer between cells, that is outside the border */ | ||
margin: 15px 0px 15px 0px; | ||||
|
r4292 | } | ||
div.code_cell { | ||||
background-color: white; | ||||
} | ||||
div.prompt { | ||||
|
r4317 | width: 90px; | ||
|
r4366 | padding: 0.4em; | ||
|
r4299 | margin: 0px; | ||
|
r4366 | line-height: 1em; | ||
|
r4292 | } | ||
div.input_prompt { | ||||
|
r4332 | color: navy; | ||
|
r4292 | } | ||
div.output { | ||||
|
r4324 | /* This is a spacer between the input and output of each cell */ | ||
margin-top: 15px; | ||||
|
r4292 | } | ||
div.output_prompt { | ||||
|
r4332 | color: darkred; | ||
|
r4292 | } | ||
div.output_area { | ||||
text-align: left; | ||||
|
r4317 | color: black; | ||
} | ||||
div.output_latex { | ||||
|
r4331 | /* Slightly bigger than the rest of the notebook */ | ||
|
r4366 | font-size: 12pt; | ||
|
r4317 | } | ||
|
r4348 | div.output_png { | ||
} | ||||
|
r4292 | |||
div.text_cell { | ||||
background-color: white; | ||||
} | ||||
textarea.text_cell_input { | ||||
|
r4317 | /* Slightly bigger than the rest of the notebook */ | ||
|
r4366 | font-size: 12pt; | ||
|
r4292 | outline: none; | ||
resize: none; | ||||
width: inherit; | ||||
border-style: none; | ||||
|
r4312 | padding: 0px; | ||
margin: 0px; | ||||
|
r4292 | color: black; | ||
} | ||||
div.text_cell_render { | ||||
font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; | ||||
|
r4317 | /* Slightly bigger than the rest of the notebook */ | ||
|
r4366 | font-size: 12pt; | ||
|
r4292 | outline: none; | ||
resize: none; | ||||
width: inherit; | ||||
border-style: none; | ||||
|
r4312 | padding: 5px; | ||
|
r4292 | color: black; | ||
} | ||||
|
r4320 | div.text_cell_render em {font-style: italic;} | ||
div.text_cell_render strong {font-weight: bold;} | ||||
div.text_cell_render u {text-decoration: underline;} | ||||
div.text_cell_render :link { text-decoration: underline } | ||||
div.text_cell_render :visited { text-decoration: underline } | ||||
div.text_cell_render h1 {font-size: 2.0em; margin: .67em 0; font-weight: bold;} | ||||
div.text_cell_render h2 {font-size: 1.5em; margin: .75em 0; font-weight: bold;} | ||||
div.text_cell_render h3 {font-size: 1.17em; margin: .83em 0; font-weight: bold;} | ||||
div.text_cell_render h4 {margin: 1.12em 0; font-weight: bold;} | ||||
div.text_cell_render h5 {font-size: .83em; margin: 1.5em 0; font-weight: bold;} | ||||
div.text_cell_render h6 {font-size: .75em; margin: 1.67em 0; font-weight: bold;} | ||||
div.text_cell_render ul {list-style:disc; margin-left: 40px;} | ||||
div.text_cell_render ul ul {list-style:square; margin-left: 40px;} | ||||
div.text_cell_render ul ul ul {list-style:circle; margin-left: 40px;} | ||||
div.text_cell_render ol {list-style:upper-roman; margin-left: 40px;} | ||||
div.text_cell_render ol ol {list-style:upper-alpha;} | ||||
div.text_cell_render ol ol ol {list-style:decimal;} | ||||
div.text_cell_render ol ol ol ol {list-style:lower-alpha;} | ||||
div.text_cell_render ol ol ol ol ol {list-style:lower-roman;} | ||||
|
r4292 | |||