Package sage :: Package server :: Package notebook :: Module css
[hide private]
[frames] | no frames]

Module css

source code

nodoctest
Sage Notebook CSS



Functions [hide private]
 
css(color='default')
Return the CSS header used by the \sage Notebook.
source code
Variables [hide private]
  reset = '\nhtml,body,div,span,applet,object,iframe,h1,h2,h3,h4...
Function Details [hide private]

css(color='default')

source code 

Return the CSS header used by the \sage Notebook.

INPUT:
    color -- string or pair of html colors, e.g.,
                'gmail'
                'grey'
                \code{('\#ff0000', '\#0000ff')}

EXAMPLES:
    sage: import sage.server.notebook.css as c
    sage: type(c.css())
    <type 'str'>


Variables Details [hide private]

reset

Value:
'''
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote\
,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,\
q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset\
,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
border:0;
font-family:inherit;
font-size:100%;
...