-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b70c4a
commit ae21fb9
Showing
627 changed files
with
31,635 additions
and
12 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,6 @@ | ||
build/* | ||
bin/* | ||
dist/* | ||
mathicsnotebook.egg-info/* | ||
*.pyc | ||
tests/.ipynb_checkpoints/* |
Binary file not shown.
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
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
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,112 @@ | ||
#docContent h1, | ||
#docContent h2 { | ||
margin-top: 0.2em; | ||
margin-bottom: 0.5em; | ||
font-family: sans-serif; | ||
} | ||
|
||
#docContent #navigation { | ||
list-style-type: none; | ||
float: right; | ||
margin: 0 0 1em; | ||
} | ||
#docContent #navigation span { | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
a img { | ||
border: none; | ||
} | ||
|
||
@media print { | ||
#docContent #navigation { | ||
display: none; | ||
} | ||
|
||
#breadcrumbs { | ||
display: none; | ||
} | ||
} | ||
|
||
#docContent h1 { | ||
} | ||
|
||
#docContent h2 { | ||
margin-top: 0.5em; | ||
font-size: 1.1em; | ||
} | ||
|
||
#docContent p { | ||
margin-top: 1em; | ||
margin-bottom: 0.2em; | ||
} | ||
|
||
#docContent a { | ||
text-decoration: none; | ||
color: #00f; | ||
} | ||
|
||
#docContent a:hover { | ||
color: #33f; | ||
} | ||
|
||
#docContent dl { | ||
border-top: 1px solid #ccc; | ||
border-bottom: 1px solid #ccc; | ||
padding: 0.2em 0.5em; | ||
background-color: rgb(96%, 96%, 94%); | ||
} | ||
|
||
#docContent dl dt { | ||
margin-top: 0.2em; | ||
} | ||
|
||
#docContent ul { | ||
list-style-type: circle; | ||
margin-top: 1em; | ||
margin-bottom: 0; | ||
margin-left: 0; | ||
} | ||
|
||
#docContent ul.tests { | ||
padding: 0; | ||
list-style-type: none; | ||
margin: 0; | ||
} | ||
|
||
#docContent div.test { | ||
position: relative; | ||
padding-left: 10px; | ||
} | ||
|
||
#docContent span.move { | ||
cursor: default; | ||
left: 0; | ||
} | ||
#docContent span.move:hover { | ||
background-color: white; | ||
width: 3px; | ||
} | ||
|
||
#docContent ul.test { | ||
padding: 0; | ||
list-style-type: none; | ||
margin-top: 5px; | ||
} | ||
|
||
#docContent ul.test li.test { | ||
color: navy; | ||
} | ||
|
||
#docContent .console { | ||
font-family: monospace; | ||
} | ||
|
||
#docContent div.console { | ||
margin: 0.5em 1em 0.5em; | ||
} | ||
|
||
#docContent pre { | ||
margin: 0; | ||
padding: 0; | ||
} |
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,51 @@ | ||
div.dark { | ||
z-index: 1; | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
bottom: 0; | ||
right: 0; | ||
overflow: hidden; | ||
text-align: center; | ||
} | ||
|
||
div.popupContainer, | ||
div.popupFrameContainer { | ||
position: fixed; | ||
left: 0; | ||
top: 0; | ||
width: 100%; | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
} | ||
|
||
div.popupContainer { | ||
z-index: 10; | ||
} | ||
|
||
div.popupFrameContainer { | ||
z-index: 2; | ||
} | ||
|
||
div.popup, | ||
iframe.popupFrame { | ||
width: 400px; | ||
min-height: 60px; | ||
margin-top: 100px; | ||
padding: 16px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
background-color: white; | ||
border: 1px solid #cccecb; | ||
box-shadow: 0px 1px 1px 0px #cccecb; | ||
border-radius: 3px; | ||
} | ||
|
||
iframe.popupFrame { | ||
padding: 0; | ||
border: none; | ||
background-color: white; | ||
z-index: 0; | ||
} |
Oops, something went wrong.