Show More
@@ -212,6 +212,7 b' span#notebook_name {' | |||||
212 | font-size: 146.5%; |
|
212 | font-size: 146.5%; | |
213 | } |
|
213 | } | |
214 |
|
214 | |||
|
215 | ||||
215 | .ui-menubar-item .ui-button .ui-button-text { |
|
216 | .ui-menubar-item .ui-button .ui-button-text { | |
216 | padding: 0.4em 1.0em; |
|
217 | padding: 0.4em 1.0em; | |
217 | font-size: 100%; |
|
218 | font-size: 100%; | |
@@ -263,8 +264,11 b' span#notebook_name {' | |||||
263 | padding: 3px 15px; |
|
264 | padding: 3px 15px; | |
264 | } |
|
265 | } | |
265 |
|
266 | |||
266 | #cell_type { |
|
267 | #maintoolbar > select, #maintoolbar label { | |
267 | font-size: 85%; |
|
268 | font-size: 85%; | |
|
269 | margin-left:0.3em; | |||
|
270 | margin-right:0.3em; | |||
|
271 | ||||
268 | } |
|
272 | } | |
269 |
|
273 | |||
270 |
|
274 | |||
@@ -335,6 +339,7 b' div.cell {' | |||||
335 | padding: 5px 5px 5px 0px; |
|
339 | padding: 5px 5px 5px 0px; | |
336 | /* This acts as a spacer between cells, that is outside the border */ |
|
340 | /* This acts as a spacer between cells, that is outside the border */ | |
337 | margin: 2px 0px 2px 0px; |
|
341 | margin: 2px 0px 2px 0px; | |
|
342 | outline: none; | |||
338 | } |
|
343 | } | |
339 |
|
344 | |||
340 | div.code_cell { |
|
345 | div.code_cell { | |
@@ -352,7 +357,9 b' div.prompt {' | |||||
352 | padding: 0.4em; |
|
357 | padding: 0.4em; | |
353 | margin: 0px; |
|
358 | margin: 0px; | |
354 | font-family: monospace; |
|
359 | font-family: monospace; | |
355 | text-align:right; |
|
360 | text-align: right; | |
|
361 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
362 | line-height: 1.231; | |||
356 | } |
|
363 | } | |
357 |
|
364 | |||
358 | div.input { |
|
365 | div.input { | |
@@ -424,6 +431,21 b' div.output_area {' | |||||
424 | page-break-inside: avoid; |
|
431 | page-break-inside: avoid; | |
425 | } |
|
432 | } | |
426 |
|
433 | |||
|
434 | ||||
|
435 | /* This is needed to protect the pre formating from global settings such | |||
|
436 | as that of bootstrap */ | |||
|
437 | div.output_area pre { | |||
|
438 | font-family: monospace; | |||
|
439 | margin: 0; | |||
|
440 | padding: 0; | |||
|
441 | border: 0; | |||
|
442 | font-size: 100%; | |||
|
443 | font: inherit; | |||
|
444 | vertical-align: baseline; | |||
|
445 | color: black; | |||
|
446 | background-color: white; | |||
|
447 | } | |||
|
448 | ||||
427 | /* This class is for the output subarea inside the output_area and after |
|
449 | /* This class is for the output subarea inside the output_area and after | |
428 | the prompt div. */ |
|
450 | the prompt div. */ | |
429 | div.output_subarea { |
|
451 | div.output_subarea { | |
@@ -438,6 +460,8 b' div.output_text {' | |||||
438 | text-align: left; |
|
460 | text-align: left; | |
439 | color: black; |
|
461 | color: black; | |
440 | font-family: monospace; |
|
462 | font-family: monospace; | |
|
463 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
464 | line-height: 1.231; | |||
441 | } |
|
465 | } | |
442 |
|
466 | |||
443 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ |
|
467 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ | |
@@ -613,11 +637,12 b' pre, code, kbd, samp { white-space: pre-wrap; }' | |||||
613 | .rendered_html ul {list-style:disc; margin: 1em 2em;} |
|
637 | .rendered_html ul {list-style:disc; margin: 1em 2em;} | |
614 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} |
|
638 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} | |
615 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} |
|
639 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} | |
616 |
.rendered_html ol {list-style: |
|
640 | .rendered_html ol {list-style:decimal; margin: 1em 2em;} | |
617 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} |
|
641 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} | |
618 |
.rendered_html ol ol ol {list-style: |
|
642 | .rendered_html ol ol ol {list-style:lower-alpha; margin: 0em 2em;} | |
619 |
.rendered_html ol ol ol ol {list-style:lower- |
|
643 | .rendered_html ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} | |
620 | .rendered_html ol ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} |
|
644 | /* any extras will just be numbers: */ | |
|
645 | .rendered_html ol ol ol ol ol {list-style:decimal; margin: 0em 2em;} | |||
621 |
|
646 | |||
622 | .rendered_html hr { |
|
647 | .rendered_html hr { | |
623 | color: black; |
|
648 | color: black; |
@@ -212,6 +212,7 b' span#notebook_name {' | |||||
212 | font-size: 146.5%; |
|
212 | font-size: 146.5%; | |
213 | } |
|
213 | } | |
214 |
|
214 | |||
|
215 | ||||
215 | .ui-menubar-item .ui-button .ui-button-text { |
|
216 | .ui-menubar-item .ui-button .ui-button-text { | |
216 | padding: 0.4em 1.0em; |
|
217 | padding: 0.4em 1.0em; | |
217 | font-size: 100%; |
|
218 | font-size: 100%; | |
@@ -263,8 +264,11 b' span#notebook_name {' | |||||
263 | padding: 3px 15px; |
|
264 | padding: 3px 15px; | |
264 | } |
|
265 | } | |
265 |
|
266 | |||
266 | #cell_type { |
|
267 | #maintoolbar > select, #maintoolbar label { | |
267 | font-size: 85%; |
|
268 | font-size: 85%; | |
|
269 | margin-left:0.3em; | |||
|
270 | margin-right:0.3em; | |||
|
271 | ||||
268 | } |
|
272 | } | |
269 |
|
273 | |||
270 |
|
274 | |||
@@ -335,6 +339,7 b' div.cell {' | |||||
335 | padding: 5px 5px 5px 0px; |
|
339 | padding: 5px 5px 5px 0px; | |
336 | /* This acts as a spacer between cells, that is outside the border */ |
|
340 | /* This acts as a spacer between cells, that is outside the border */ | |
337 | margin: 2px 0px 2px 0px; |
|
341 | margin: 2px 0px 2px 0px; | |
|
342 | outline: none; | |||
338 | } |
|
343 | } | |
339 |
|
344 | |||
340 | div.code_cell { |
|
345 | div.code_cell { | |
@@ -352,7 +357,9 b' div.prompt {' | |||||
352 | padding: 0.4em; |
|
357 | padding: 0.4em; | |
353 | margin: 0px; |
|
358 | margin: 0px; | |
354 | font-family: monospace; |
|
359 | font-family: monospace; | |
355 | text-align:right; |
|
360 | text-align: right; | |
|
361 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
362 | line-height: 1.231; | |||
356 | } |
|
363 | } | |
357 |
|
364 | |||
358 | div.input { |
|
365 | div.input { | |
@@ -424,6 +431,21 b' div.output_area {' | |||||
424 | page-break-inside: avoid; |
|
431 | page-break-inside: avoid; | |
425 | } |
|
432 | } | |
426 |
|
433 | |||
|
434 | ||||
|
435 | /* This is needed to protect the pre formating from global settings such | |||
|
436 | as that of bootstrap */ | |||
|
437 | div.output_area pre { | |||
|
438 | font-family: monospace; | |||
|
439 | margin: 0; | |||
|
440 | padding: 0; | |||
|
441 | border: 0; | |||
|
442 | font-size: 100%; | |||
|
443 | font: inherit; | |||
|
444 | vertical-align: baseline; | |||
|
445 | color: black; | |||
|
446 | background-color: white; | |||
|
447 | } | |||
|
448 | ||||
427 | /* This class is for the output subarea inside the output_area and after |
|
449 | /* This class is for the output subarea inside the output_area and after | |
428 | the prompt div. */ |
|
450 | the prompt div. */ | |
429 | div.output_subarea { |
|
451 | div.output_subarea { | |
@@ -438,6 +460,8 b' div.output_text {' | |||||
438 | text-align: left; |
|
460 | text-align: left; | |
439 | color: black; |
|
461 | color: black; | |
440 | font-family: monospace; |
|
462 | font-family: monospace; | |
|
463 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
464 | line-height: 1.231; | |||
441 | } |
|
465 | } | |
442 |
|
466 | |||
443 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ |
|
467 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ | |
@@ -613,11 +637,12 b' pre, code, kbd, samp { white-space: pre-wrap; }' | |||||
613 | .rendered_html ul {list-style:disc; margin: 1em 2em;} |
|
637 | .rendered_html ul {list-style:disc; margin: 1em 2em;} | |
614 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} |
|
638 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} | |
615 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} |
|
639 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} | |
616 |
.rendered_html ol {list-style: |
|
640 | .rendered_html ol {list-style:decimal; margin: 1em 2em;} | |
617 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} |
|
641 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} | |
618 |
.rendered_html ol ol ol {list-style: |
|
642 | .rendered_html ol ol ol {list-style:lower-alpha; margin: 0em 2em;} | |
619 |
.rendered_html ol ol ol ol {list-style:lower- |
|
643 | .rendered_html ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} | |
620 | .rendered_html ol ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} |
|
644 | /* any extras will just be numbers: */ | |
|
645 | .rendered_html ol ol ol ol ol {list-style:decimal; margin: 0em 2em;} | |||
621 |
|
646 | |||
622 | .rendered_html hr { |
|
647 | .rendered_html hr { | |
623 | color: black; |
|
648 | color: black; |
@@ -212,6 +212,7 b' span#notebook_name {' | |||||
212 | font-size: 146.5%; |
|
212 | font-size: 146.5%; | |
213 | } |
|
213 | } | |
214 |
|
214 | |||
|
215 | ||||
215 | .ui-menubar-item .ui-button .ui-button-text { |
|
216 | .ui-menubar-item .ui-button .ui-button-text { | |
216 | padding: 0.4em 1.0em; |
|
217 | padding: 0.4em 1.0em; | |
217 | font-size: 100%; |
|
218 | font-size: 100%; | |
@@ -263,8 +264,11 b' span#notebook_name {' | |||||
263 | padding: 3px 15px; |
|
264 | padding: 3px 15px; | |
264 | } |
|
265 | } | |
265 |
|
266 | |||
266 | #cell_type { |
|
267 | #maintoolbar > select, #maintoolbar label { | |
267 | font-size: 85%; |
|
268 | font-size: 85%; | |
|
269 | margin-left:0.3em; | |||
|
270 | margin-right:0.3em; | |||
|
271 | ||||
268 | } |
|
272 | } | |
269 |
|
273 | |||
270 |
|
274 | |||
@@ -335,6 +339,7 b' div.cell {' | |||||
335 | padding: 5px 5px 5px 0px; |
|
339 | padding: 5px 5px 5px 0px; | |
336 | /* This acts as a spacer between cells, that is outside the border */ |
|
340 | /* This acts as a spacer between cells, that is outside the border */ | |
337 | margin: 2px 0px 2px 0px; |
|
341 | margin: 2px 0px 2px 0px; | |
|
342 | outline: none; | |||
338 | } |
|
343 | } | |
339 |
|
344 | |||
340 | div.code_cell { |
|
345 | div.code_cell { | |
@@ -352,7 +357,9 b' div.prompt {' | |||||
352 | padding: 0.4em; |
|
357 | padding: 0.4em; | |
353 | margin: 0px; |
|
358 | margin: 0px; | |
354 | font-family: monospace; |
|
359 | font-family: monospace; | |
355 | text-align:right; |
|
360 | text-align: right; | |
|
361 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
362 | line-height: 1.231; | |||
356 | } |
|
363 | } | |
357 |
|
364 | |||
358 | div.input { |
|
365 | div.input { | |
@@ -424,6 +431,21 b' div.output_area {' | |||||
424 | page-break-inside: avoid; |
|
431 | page-break-inside: avoid; | |
425 | } |
|
432 | } | |
426 |
|
433 | |||
|
434 | ||||
|
435 | /* This is needed to protect the pre formating from global settings such | |||
|
436 | as that of bootstrap */ | |||
|
437 | div.output_area pre { | |||
|
438 | font-family: monospace; | |||
|
439 | margin: 0; | |||
|
440 | padding: 0; | |||
|
441 | border: 0; | |||
|
442 | font-size: 100%; | |||
|
443 | font: inherit; | |||
|
444 | vertical-align: baseline; | |||
|
445 | color: black; | |||
|
446 | background-color: white; | |||
|
447 | } | |||
|
448 | ||||
427 | /* This class is for the output subarea inside the output_area and after |
|
449 | /* This class is for the output subarea inside the output_area and after | |
428 | the prompt div. */ |
|
450 | the prompt div. */ | |
429 | div.output_subarea { |
|
451 | div.output_subarea { | |
@@ -438,6 +460,8 b' div.output_text {' | |||||
438 | text-align: left; |
|
460 | text-align: left; | |
439 | color: black; |
|
461 | color: black; | |
440 | font-family: monospace; |
|
462 | font-family: monospace; | |
|
463 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
464 | line-height: 1.231; | |||
441 | } |
|
465 | } | |
442 |
|
466 | |||
443 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ |
|
467 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ | |
@@ -613,11 +637,12 b' pre, code, kbd, samp { white-space: pre-wrap; }' | |||||
613 | .rendered_html ul {list-style:disc; margin: 1em 2em;} |
|
637 | .rendered_html ul {list-style:disc; margin: 1em 2em;} | |
614 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} |
|
638 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} | |
615 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} |
|
639 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} | |
616 |
.rendered_html ol {list-style: |
|
640 | .rendered_html ol {list-style:decimal; margin: 1em 2em;} | |
617 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} |
|
641 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} | |
618 |
.rendered_html ol ol ol {list-style: |
|
642 | .rendered_html ol ol ol {list-style:lower-alpha; margin: 0em 2em;} | |
619 |
.rendered_html ol ol ol ol {list-style:lower- |
|
643 | .rendered_html ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} | |
620 | .rendered_html ol ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} |
|
644 | /* any extras will just be numbers: */ | |
|
645 | .rendered_html ol ol ol ol ol {list-style:decimal; margin: 0em 2em;} | |||
621 |
|
646 | |||
622 | .rendered_html hr { |
|
647 | .rendered_html hr { | |
623 | color: black; |
|
648 | color: black; |
@@ -212,6 +212,7 b' span#notebook_name {' | |||||
212 | font-size: 146.5%; |
|
212 | font-size: 146.5%; | |
213 | } |
|
213 | } | |
214 |
|
214 | |||
|
215 | ||||
215 | .ui-menubar-item .ui-button .ui-button-text { |
|
216 | .ui-menubar-item .ui-button .ui-button-text { | |
216 | padding: 0.4em 1.0em; |
|
217 | padding: 0.4em 1.0em; | |
217 | font-size: 100%; |
|
218 | font-size: 100%; | |
@@ -263,8 +264,11 b' span#notebook_name {' | |||||
263 | padding: 3px 15px; |
|
264 | padding: 3px 15px; | |
264 | } |
|
265 | } | |
265 |
|
266 | |||
266 | #cell_type { |
|
267 | #maintoolbar > select, #maintoolbar label { | |
267 | font-size: 85%; |
|
268 | font-size: 85%; | |
|
269 | margin-left:0.3em; | |||
|
270 | margin-right:0.3em; | |||
|
271 | ||||
268 | } |
|
272 | } | |
269 |
|
273 | |||
270 |
|
274 | |||
@@ -335,6 +339,7 b' div.cell {' | |||||
335 | padding: 5px 5px 5px 0px; |
|
339 | padding: 5px 5px 5px 0px; | |
336 | /* This acts as a spacer between cells, that is outside the border */ |
|
340 | /* This acts as a spacer between cells, that is outside the border */ | |
337 | margin: 2px 0px 2px 0px; |
|
341 | margin: 2px 0px 2px 0px; | |
|
342 | outline: none; | |||
338 | } |
|
343 | } | |
339 |
|
344 | |||
340 | div.code_cell { |
|
345 | div.code_cell { | |
@@ -352,7 +357,9 b' div.prompt {' | |||||
352 | padding: 0.4em; |
|
357 | padding: 0.4em; | |
353 | margin: 0px; |
|
358 | margin: 0px; | |
354 | font-family: monospace; |
|
359 | font-family: monospace; | |
355 | text-align:right; |
|
360 | text-align: right; | |
|
361 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
362 | line-height: 1.231; | |||
356 | } |
|
363 | } | |
357 |
|
364 | |||
358 | div.input { |
|
365 | div.input { | |
@@ -424,6 +431,21 b' div.output_area {' | |||||
424 | page-break-inside: avoid; |
|
431 | page-break-inside: avoid; | |
425 | } |
|
432 | } | |
426 |
|
433 | |||
|
434 | ||||
|
435 | /* This is needed to protect the pre formating from global settings such | |||
|
436 | as that of bootstrap */ | |||
|
437 | div.output_area pre { | |||
|
438 | font-family: monospace; | |||
|
439 | margin: 0; | |||
|
440 | padding: 0; | |||
|
441 | border: 0; | |||
|
442 | font-size: 100%; | |||
|
443 | font: inherit; | |||
|
444 | vertical-align: baseline; | |||
|
445 | color: black; | |||
|
446 | background-color: white; | |||
|
447 | } | |||
|
448 | ||||
427 | /* This class is for the output subarea inside the output_area and after |
|
449 | /* This class is for the output subarea inside the output_area and after | |
428 | the prompt div. */ |
|
450 | the prompt div. */ | |
429 | div.output_subarea { |
|
451 | div.output_subarea { | |
@@ -438,6 +460,8 b' div.output_text {' | |||||
438 | text-align: left; |
|
460 | text-align: left; | |
439 | color: black; |
|
461 | color: black; | |
440 | font-family: monospace; |
|
462 | font-family: monospace; | |
|
463 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
464 | line-height: 1.231; | |||
441 | } |
|
465 | } | |
442 |
|
466 | |||
443 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ |
|
467 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ | |
@@ -613,11 +637,12 b' pre, code, kbd, samp { white-space: pre-wrap; }' | |||||
613 | .rendered_html ul {list-style:disc; margin: 1em 2em;} |
|
637 | .rendered_html ul {list-style:disc; margin: 1em 2em;} | |
614 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} |
|
638 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} | |
615 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} |
|
639 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} | |
616 |
.rendered_html ol {list-style: |
|
640 | .rendered_html ol {list-style:decimal; margin: 1em 2em;} | |
617 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} |
|
641 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} | |
618 |
.rendered_html ol ol ol {list-style: |
|
642 | .rendered_html ol ol ol {list-style:lower-alpha; margin: 0em 2em;} | |
619 |
.rendered_html ol ol ol ol {list-style:lower- |
|
643 | .rendered_html ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} | |
620 | .rendered_html ol ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} |
|
644 | /* any extras will just be numbers: */ | |
|
645 | .rendered_html ol ol ol ol ol {list-style:decimal; margin: 0em 2em;} | |||
621 |
|
646 | |||
622 | .rendered_html hr { |
|
647 | .rendered_html hr { | |
623 | color: black; |
|
648 | color: black; |
@@ -212,6 +212,7 b' span#notebook_name {' | |||||
212 | font-size: 146.5%; |
|
212 | font-size: 146.5%; | |
213 | } |
|
213 | } | |
214 |
|
214 | |||
|
215 | ||||
215 | .ui-menubar-item .ui-button .ui-button-text { |
|
216 | .ui-menubar-item .ui-button .ui-button-text { | |
216 | padding: 0.4em 1.0em; |
|
217 | padding: 0.4em 1.0em; | |
217 | font-size: 100%; |
|
218 | font-size: 100%; | |
@@ -263,8 +264,11 b' span#notebook_name {' | |||||
263 | padding: 3px 15px; |
|
264 | padding: 3px 15px; | |
264 | } |
|
265 | } | |
265 |
|
266 | |||
266 | #cell_type { |
|
267 | #maintoolbar > select, #maintoolbar label { | |
267 | font-size: 85%; |
|
268 | font-size: 85%; | |
|
269 | margin-left:0.3em; | |||
|
270 | margin-right:0.3em; | |||
|
271 | ||||
268 | } |
|
272 | } | |
269 |
|
273 | |||
270 |
|
274 | |||
@@ -335,6 +339,7 b' div.cell {' | |||||
335 | padding: 5px 5px 5px 0px; |
|
339 | padding: 5px 5px 5px 0px; | |
336 | /* This acts as a spacer between cells, that is outside the border */ |
|
340 | /* This acts as a spacer between cells, that is outside the border */ | |
337 | margin: 2px 0px 2px 0px; |
|
341 | margin: 2px 0px 2px 0px; | |
|
342 | outline: none; | |||
338 | } |
|
343 | } | |
339 |
|
344 | |||
340 | div.code_cell { |
|
345 | div.code_cell { | |
@@ -352,7 +357,9 b' div.prompt {' | |||||
352 | padding: 0.4em; |
|
357 | padding: 0.4em; | |
353 | margin: 0px; |
|
358 | margin: 0px; | |
354 | font-family: monospace; |
|
359 | font-family: monospace; | |
355 | text-align:right; |
|
360 | text-align: right; | |
|
361 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
362 | line-height: 1.231; | |||
356 | } |
|
363 | } | |
357 |
|
364 | |||
358 | div.input { |
|
365 | div.input { | |
@@ -424,6 +431,21 b' div.output_area {' | |||||
424 | page-break-inside: avoid; |
|
431 | page-break-inside: avoid; | |
425 | } |
|
432 | } | |
426 |
|
433 | |||
|
434 | ||||
|
435 | /* This is needed to protect the pre formating from global settings such | |||
|
436 | as that of bootstrap */ | |||
|
437 | div.output_area pre { | |||
|
438 | font-family: monospace; | |||
|
439 | margin: 0; | |||
|
440 | padding: 0; | |||
|
441 | border: 0; | |||
|
442 | font-size: 100%; | |||
|
443 | font: inherit; | |||
|
444 | vertical-align: baseline; | |||
|
445 | color: black; | |||
|
446 | background-color: white; | |||
|
447 | } | |||
|
448 | ||||
427 | /* This class is for the output subarea inside the output_area and after |
|
449 | /* This class is for the output subarea inside the output_area and after | |
428 | the prompt div. */ |
|
450 | the prompt div. */ | |
429 | div.output_subarea { |
|
451 | div.output_subarea { | |
@@ -438,6 +460,8 b' div.output_text {' | |||||
438 | text-align: left; |
|
460 | text-align: left; | |
439 | color: black; |
|
461 | color: black; | |
440 | font-family: monospace; |
|
462 | font-family: monospace; | |
|
463 | /* This has to match that of the the CodeMirror class line-height below */ | |||
|
464 | line-height: 1.231; | |||
441 | } |
|
465 | } | |
442 |
|
466 | |||
443 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ |
|
467 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ | |
@@ -613,11 +637,12 b' pre, code, kbd, samp { white-space: pre-wrap; }' | |||||
613 | .rendered_html ul {list-style:disc; margin: 1em 2em;} |
|
637 | .rendered_html ul {list-style:disc; margin: 1em 2em;} | |
614 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} |
|
638 | .rendered_html ul ul {list-style:square; margin: 0em 2em;} | |
615 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} |
|
639 | .rendered_html ul ul ul {list-style:circle; margin-left: 0em 2em;} | |
616 |
.rendered_html ol {list-style: |
|
640 | .rendered_html ol {list-style:decimal; margin: 1em 2em;} | |
617 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} |
|
641 | .rendered_html ol ol {list-style:upper-alpha; margin: 0em 2em;} | |
618 |
.rendered_html ol ol ol {list-style: |
|
642 | .rendered_html ol ol ol {list-style:lower-alpha; margin: 0em 2em;} | |
619 |
.rendered_html ol ol ol ol {list-style:lower- |
|
643 | .rendered_html ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} | |
620 | .rendered_html ol ol ol ol ol {list-style:lower-roman; margin: 0em 2em;} |
|
644 | /* any extras will just be numbers: */ | |
|
645 | .rendered_html ol ol ol ol ol {list-style:decimal; margin: 0em 2em;} | |||
621 |
|
646 | |||
622 | .rendered_html hr { |
|
647 | .rendered_html hr { | |
623 | color: black; |
|
648 | color: black; |
General Comments 0
You need to be logged in to leave comments.
Login now