diff options
Diffstat (limited to 'apidocs/apidocs.css')
-rw-r--r-- | apidocs/apidocs.css | 210 |
1 files changed, 210 insertions, 0 deletions
diff --git a/apidocs/apidocs.css b/apidocs/apidocs.css new file mode 100644 index 0000000..1a7a337 --- /dev/null +++ b/apidocs/apidocs.css @@ -0,0 +1,210 @@ +.navbar { + margin-bottom: 0px; +} + +.page-header { + margin-top: 22px; +} + + +ul { + margin-top: 10px; + padding-left: 10px; + list-style-type: none; +} + +li { + padding-top: 5px; + padding-bottom: 5px; +} + +li a { + text-decoration: none; +} + +ul { + margin-left: 10px; +} + +ul ul { + border-left-color: #e1f5fe; + border-left-width: 1px; + border-left-style: solid; +} + +ul ul ul { + border-left-color: #b3e5fc; +} + +ul ul ul ul { + border-left-color: #81d4fa; +} + +ul ul ul ul ul { + border-left-color: #4fc3f7; +} + +ul ul ul ul ul ul { + border-left-color: #29b6f6; +} + +ul ul ul ul ul ul ul { + border-left-color: #03a9f4; +} + +ul ul ul ul ul ul ul { + border-left-color: #039be5; +} + +.undocumented { + font-style: italic; + color: #9e9e9e; +} + +.functionBody p { + margin-top: 6px; + margin-bottom: 6px; +} + +#splitTables > p { + margin-bottom: 5px; +} + +#splitTables > table, .fieldTable { + margin-bottom: 20px; + width: 100%; + border: 0; +} + +#splitTables > table { + border: 1px solid #eee; +} + +#splitTables > table tr { + border-bottom-color: #eee; + border-bottom-width: 1px; + border-bottom-style: solid; +} + +#splitTables > table tr td, .fieldTable tr td { + padding: 5px; +} + +#splitTables > table tr td { + border-left-color: #eee; + border-left-width: 1px; + border-left-style: solid; +} + +#splitTables > table tr td:nth-child(1), .fieldTable tr td:nth-child(1) { + border-left: none; + width: 150px; +} + +#splitTables > table tr td:nth-child(2), .fieldTable tr td.fieldArg { + font-family: Menlo,Monaco,Consolas,"Courier New",monospace; + width: 200px; +} + +tr.package { + background-color: #fff3e0; +} + +tr.module { + background-color: #fff8e1; +} + +tr.class { + background-color: #fffde7; +} + +tr.instancevariable, tr.variable, tr.baseclassvariable, tr.attribute { + background-color: #f3e5f5; +} + +tr.interface { + background-color: #fbe9e7; +} + +tr.method, tr.function, tr.basemethod, tr.baseclassmethod, tr.classmethod { + background-color: #f1f8e9; +} + +tr.private { + background-color: #f1f1f1; +} + +.fieldTable { + margin-top: 10px; +} + + +#childList > div { + margin: 20px; + padding: 15px; + padding-bottom: 5px; +} + +.functionBody { + margin-left: 15px; +} + +.functionBody > #part { + font-style: italic; +} + +.functionBody > #part > a { + text-decoration: none; +} + +.functionBody .interfaceinfo { + font-style: italic; + margin-bottom: 3px; +} + +.functionBody > .undocumented { + + margin-top: 6px; + margin-bottom: 6px; +} + +.code { + font-family: Menlo,Monaco,Consolas,"Courier New",monospace; + padding:2px 4px; + font-size:90%; + color:#c7254e; + background-color:#f9f2f4; + border-radius:4px +} + +code > .code { + padding: 0px; +} + + +div.function { + border-left-color: #03a9f4; + border-left-width: 1px; + border-left-style: solid; +} + +div.function .functionHeader { + font-family: monospace; +} + +.moduleDocstring { + margin: 20px; +} + +#partOf { + margin-top: -13px; + margin-bottom: 19px; +} + +.fromInitPy { + font-style: italic; +} + +pre { + padding-left: 0px; +} |