Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrasmus committed Jun 6, 2014
2 parents ea35af8 + 323d28f commit 16bd8cb
Show file tree
Hide file tree
Showing 7 changed files with 1,330 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Summary
SUMMON is a python extension module that provides rapid prototyping of 2D
visualizations. By heavily relying on the python scripting language, SUMMON
allows the user to rapidly prototype a custom visualization for their data,
without the overhead of a designing a graphical user interface or
without the overhead of designing a graphical user interface or
recompiling native code. By simplifying the task of designing a
visualization, users can spend more time on understanding their data.

Expand Down
Binary file added doc/figures/01_basics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
117 changes: 117 additions & 0 deletions doc/manual.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@


body {
font-family: helvetica, sans;
padding: 40px;
}

.titlepage {
text-align: center;
}

.titlepage h1, .titlepage h2 {
color: #000;
}

hr {
width: 80%;
height: 2px;
background-color: #777;
border: #777;
}

body > h2 {
border-top: 5px #ccc solid;
border-bottom: 1px #ccc solid;
background-color: #eee;
padding-left: 5px;
text-shadow: 1px 1px 0px #fff;
}

h3 {
color: #000;
}

h4, h5 {
color: #55a;
}

.figure {
width: 70%;
text-align: center;
padding: 20px;
border: 5px #ccc solid;
margin: auto;
margin-top: 40px;
margin-bottom: 40px;
}

.figcaption {
text-align: left;
padding-top: 20px;
}

.figtitle {
font-weight: bold;
text-align: center;
}


.code
{
font-family: monospace;
border: #ccc solid 1px;
background-color: #eef;
padding:5px;
margin: 20px;
text-align: left;
overflow: auto;
}


/* use consistent line spacing for sub and sup */
sup,
sub {
height: 0;
line-height: 1;
vertical-align: baseline;
_vertical-align: bottom;
position: relative;
}

sup {
bottom: 1ex;
}

sub {
top: .5ex;
}


/* =========================================================================
* links
*/

a:active
{
text-decoration:none;
color: #0000FF;
}

a:visited
{
text-decoration:none;
color: #007;
}

a:link
{
text-decoration:none;
color: #007;
}

a:hover
{
text-decoration: underline;
color: #500;
}
Loading

0 comments on commit 16bd8cb

Please sign in to comment.