Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
| Download
Sage Reference Manual
Project: SageManifolds
Views: 717114/**1* Sage stylesheet theme. This stylesheet is heavily borrowed from the2* Sphinx stylesheet default theme distributed as the file3* themes/default/static/default.css_t in Sphinx 0.6.3.4*/56@import url("basic.css");78/* -- page layout ----------------------------------------------------------- */910body {11font-family: sans-serif;12font-size: 100%;13background-color: #B8B9F6;14color: #000;15margin: 0;16padding: 0;17}1819div.document {20background-color: #EAEAF8;21}2223div.documentwrapper {24float: left;25width: 100%;26}2728div.bodywrapper {29margin: 0 0 0 230px;30}3132div.body {33background-color: #ffffff;34color: #000000;35padding: 0 20px 30px 20px;36}3738div.footer {39color: #000000;40width: 100%;41padding: 9px 0 9px 0;42text-align: center;43font-size: 75%;44}4546div.footer a {47color: #000000;48text-decoration: underline;49}5051div.related {52background-color: #B8B9F6;53line-height: 30px;54color: #000000;55}5657div.related a {58color: #090999;59}6061div.sphinxsidebar {62}6364div.sphinxsidebar h3 {65font-family: 'Trebuchet MS', sans-serif;66color: #000000;67font-size: 1.4em;68font-weight: normal;69margin: 0;70padding: 0;71}7273div.sphinxsidebar h3 a {74color: #000000;75}7677div.sphinxsidebar h4 {78font-family: 'Trebuchet MS', sans-serif;79color: #000000;80font-size: 1.3em;81font-weight: normal;82margin: 5px 0 0 0;83padding: 0;84}8586div.sphinxsidebar p {87color: #000000;88}8990div.sphinxsidebar p.topless {91margin: 5px 10px 10px 10px;92}9394div.sphinxsidebar ul {95margin: 10px;96padding: 0;97color: #000000;98}99100div.sphinxsidebar a {101color: #090999;102}103104div.sphinxsidebar input {105border: 1px solid #090999;106font-family: sans-serif;107font-size: 1em;108}109110/* -- body styles ----------------------------------------------------------- */111112a {113color: #45529B;114text-decoration: none;115}116117a:hover {118text-decoration: underline;119}120121div.body p, div.body dd, div.body li {122text-align: justify;123line-height: 130%;124}125126div.body h1,127div.body h2,128div.body h3,129div.body h4,130div.body h5,131div.body h6 {132font-family: 'Trebuchet MS', sans-serif;133background-color: #EAEAF8;134font-weight: normal;135color: #20435c;136border-bottom: 1px solid #ccc;137margin: 20px -20px 10px -20px;138padding: 3px 0 3px 10px;139}140141div.body h1 { margin-top: 0; font-size: 200%; }142div.body h2 { font-size: 160%; }143div.body h3 { font-size: 140%; }144div.body h4 { font-size: 120%; }145div.body h5 { font-size: 110%; }146div.body h6 { font-size: 100%; }147148a.headerlink {149color: #c60f0f;150font-size: 0.8em;151padding: 0 4px 0 4px;152text-decoration: none;153}154155a.headerlink:hover {156background-color: #c60f0f;157color: white;158}159160div.body p, div.body dd, div.body li {161text-align: justify;162line-height: 130%;163}164165div.admonition p.admonition-title + p {166display: inline;167}168169div.note {170background-color: #eee;171border: 1px solid #ccc;172}173174div.admonition-todo {175background-color: #eee;176border: 1px solid #ccc;177}178179div.seealso {180background-color: #ffc;181border: 1px solid #ff6;182}183184div.topic {185background-color: #eee;186}187188div.warning {189background-color: #ffe4e4;190border: 1px solid #f66;191}192193div.hint {194background-color: #D8F6CE;195border: 1px solid #31B404;196}197198p.admonition-title {199display: inline;200}201202p.admonition-title:after {203content: ":";204}205206/**207* Code block.208* The border colour should be a darker shade of the background colour.209* The hex code #E8D898 used below is a pale, light grayish amber.210*/211pre {212padding: 5px;213background-color: #FFFFE5;214color: #333333;215line-height: 120%;216border: 1px solid #E8D898;217border-left: none;218border-right: none;219}220221/**222* Commands or code within text. The hex code #EAEAF8 used below is a223* pale, light grayish blue.224*/225tt {226background-color: #EAEAF8;227padding: 0 1px 0 1px;228font-size: 0.95em;229}230231