-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rick Copeland <[email protected]>
- Loading branch information
Showing
198 changed files
with
49,421 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[email protected].10520 |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* Primary styles | ||
* | ||
* Author: IPython Development Team | ||
*/ | ||
|
||
|
||
body { | ||
background-color: white; | ||
/* 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; | ||
overflow: hidden; | ||
} | ||
|
||
|
||
div#header { | ||
/* Initially hidden to prevent FLOUC */ | ||
display: none; | ||
position: relative; | ||
height: 40px; | ||
padding: 5px; | ||
margin: 0px; | ||
width: 100%; | ||
} | ||
|
||
span#ipython_notebook { | ||
position: absolute; | ||
padding: 2px 2px 2px 5px; | ||
} | ||
|
||
span#ipython_notebook h1 img { | ||
font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; | ||
height: 24px; | ||
text-decoration:none; | ||
display: inline; | ||
color: black; | ||
} | ||
|
||
div#main_app { | ||
/* Initially hidden to prevent FLOUC */ | ||
display: none; | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.ui-button .ui-button-text { | ||
padding: 0.2em 0.8em; | ||
font-size: 77%; | ||
} | ||
|
||
span#login_widget { | ||
float: right; | ||
} | ||
|
||
/* generic class for hidden objects */ | ||
.hidden { | ||
display: none; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/** | ||
* 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, | ||
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
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, | ||
fieldset, form, label, legend, | ||
table, caption, tbody, tfoot, thead, tr, th, td, | ||
article, aside, canvas, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
} | ||
|
||
article, aside, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section { | ||
display: block; | ||
} | ||
|
||
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; } | ||
|
||
|
||
/** | ||
* Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/ | ||
*/ | ||
|
||
body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */ | ||
select, input, textarea, button { font:99% sans-serif; } | ||
|
||
/* Normalize monospace sizing: | ||
en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */ | ||
pre, code, kbd, samp { font-family: monospace, sans-serif; } | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
.CodeMirror { | ||
line-height: 1em; | ||
font-family: monospace; | ||
} | ||
|
||
.CodeMirror-scroll { | ||
overflow: auto; | ||
height: 300px; | ||
/* This is needed to prevent an IE[67] bug where the scrolled content | ||
is visible outside of the scrolling box. */ | ||
position: relative; | ||
} | ||
|
||
.CodeMirror-gutter { | ||
position: absolute; left: 0; top: 0; | ||
z-index: 10; | ||
background-color: #f7f7f7; | ||
border-right: 1px solid #eee; | ||
min-width: 2em; | ||
height: 100%; | ||
} | ||
.CodeMirror-gutter-text { | ||
color: #aaa; | ||
text-align: right; | ||
padding: .4em .2em .4em .4em; | ||
} | ||
.CodeMirror-lines { | ||
padding: .4em; | ||
} | ||
|
||
.CodeMirror pre { | ||
-moz-border-radius: 0; | ||
-webkit-border-radius: 0; | ||
-o-border-radius: 0; | ||
border-radius: 0; | ||
border-width: 0; margin: 0; padding: 0; background: transparent; | ||
font-family: inherit; | ||
font-size: inherit; | ||
padding: 0; margin: 0; | ||
white-space: pre; | ||
word-wrap: normal; | ||
} | ||
|
||
.CodeMirror textarea { | ||
font-family: inherit !important; | ||
font-size: inherit !important; | ||
} | ||
|
||
.CodeMirror-cursor { | ||
z-index: 10; | ||
position: absolute; | ||
visibility: hidden; | ||
border-left: 1px solid black !important; | ||
} | ||
.CodeMirror-focused .CodeMirror-cursor { | ||
visibility: visible; | ||
} | ||
|
||
span.CodeMirror-selected { | ||
background: #ccc !important; | ||
color: HighlightText !important; | ||
} | ||
.CodeMirror-focused span.CodeMirror-selected { | ||
background: Highlight !important; | ||
} | ||
|
||
.CodeMirror-matchingbracket {color: #0f0 !important;} | ||
.CodeMirror-nonmatchingbracket {color: #f22 !important;} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.cm-s-default span.cm-keyword {color: #708;} | ||
.cm-s-default span.cm-atom {color: #219;} | ||
.cm-s-default span.cm-number {color: #164;} | ||
.cm-s-default span.cm-def {color: #00f;} | ||
.cm-s-default span.cm-variable {color: black;} | ||
.cm-s-default span.cm-variable-2 {color: #05a;} | ||
.cm-s-default span.cm-variable-3 {color: #0a5;} | ||
.cm-s-default span.cm-property {color: black;} | ||
.cm-s-default span.cm-operator {color: black;} | ||
.cm-s-default span.cm-comment {color: #a50;} | ||
.cm-s-default span.cm-string {color: #a11;} | ||
.cm-s-default span.cm-string-2 {color: #f50;} | ||
.cm-s-default span.cm-meta {color: #555;} | ||
.cm-s-default span.cm-error {color: #f00;} | ||
.cm-s-default span.cm-qualifier {color: #555;} | ||
.cm-s-default span.cm-builtin {color: #30a;} | ||
.cm-s-default span.cm-bracket {color: #cc7;} | ||
.cm-s-default span.cm-tag {color: #170;} | ||
.cm-s-default span.cm-attribute {color: #00c;} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
|
||
.cm-s-ipython span.cm-keyword {color: #008000; font-weight: bold;} | ||
.cm-s-ipython span.cm-number {color: #000080;} | ||
.cm-s-ipython span.cm-operator {color: #AA22FF; font-weight: bold;} | ||
.cm-s-ipython span.cm-meta {color: #AA22FF;} | ||
.cm-s-ipython span.cm-comment {color: #408080; font-style: italic;} | ||
.cm-s-ipython span.cm-string {color: #BA2121;} | ||
.cm-s-ipython span.cm-error {color: #f00;} | ||
.cm-s-ipython span.cm-builtin {color: #008000;} | ||
.cm-s-ipython span.cm-variable {color: #000000;} | ||
|
||
/* These classes are not currently used in the python.js mode */ | ||
|
||
/*.cm-s-ipython span.cm-atom {color: #219;}*/ | ||
/*.cm-s-ipython span.cm-def {color: #00f;}*/ | ||
/*.cm-s-ipython span.cm-variable-2 {color: #05a;}*/ | ||
/*.cm-s-ipython span.cm-variable-3 {color: #0a5;}*/ | ||
/*.cm-s-ipython span.cm-property {color: black;}*/ | ||
/*.cm-s-ipython span.cm-qualifier {color: #555;}*/ | ||
/*.cm-s-ipython span.cm-bracket {color: #cc7;}*/ | ||
/*.cm-s-ipython span.cm-tag {color: #170;}*/ | ||
/*.cm-s-ipython span.cm-attribute {color: #00c;}*/ | ||
|
||
/* These are the old styles for our pre-themed version */ | ||
|
||
/*span.py-delimiter {color: #666666;}*/ | ||
/*span.py-special {color: #666666;}*/ | ||
/*span.py-operator {color: #AA22FF; font-weight: bold;}*/ | ||
/*span.py-keyword {color: #008000; font-weight: bold;}*/ | ||
/*span.py-number {color: #666666;}*/ | ||
/*span.py-identifier {color: #000000;}*/ | ||
/*span.py-func {color: #000000;}*/ | ||
/*span.py-type {color: #008000;}*/ | ||
/*span.py-decorator {color: #AA22FF;}*/ | ||
/*span.py-comment {color: #408080; font-style: italic;}*/ | ||
/*span.py-string {color: #BA2121;}*/ | ||
/*span.py-bytes {color: #BA2121;}*/ | ||
/*span.py-raw {color: #BA2121;}*/ | ||
/*span.py-unicode {color: #BA2121;}*/ |
Oops, something went wrong.