diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2015-12-12 23:30:45 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2015-12-12 23:30:45 +0100 |
commit | aeb5ea59340f91ae445330c95429f903a8f20e8a (patch) | |
tree | 09e0e73b3faedfbbaed8823137a0935c56a61930 /doc/tools/main.css | |
parent | fb00cee33bd29969805572238815c0fb3d29ee45 (diff) |
Move documentation python tools to doc/tools folder
Diffstat (limited to 'doc/tools/main.css')
-rw-r--r-- | doc/tools/main.css | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/doc/tools/main.css b/doc/tools/main.css new file mode 100644 index 0000000000..a76e6bbed8 --- /dev/null +++ b/doc/tools/main.css @@ -0,0 +1,146 @@ +BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV, SPAN { + font-family: Arial, Geneva, Helvetica, sans-serif; +} + +a { + + text-decoration: none; + +} + +a:hover { + + text-decoration: underline; +} + +td.top_table { + + padding: 5px; +} + +div.method_doc { + + padding-bottom: 30px; +} + +div.method_description { + margin-left: 30px; +} + +list.inh_class_list { + margin-left: 30px; + +} + +div.inh_class_list { + margin-left: 30px; + +} + +div.method_doc div.method { + + font-size: 12pt; + font-weight: bold; +} + +span.funcdecl { + + color: #202060; +} + +span.funcdef { + + color: #202060; +} + + +span.qualifier { + + font-weight: bold; +} + + +span.symbol { + + /*font-weight: bold;*/ + color: #471870; +} + + +span.datatype { + + color: #6a1533; +} + +tr.category_title { + + background-color: #333333; +} +a.category_title { + font-weight: bold; + color: #FFFFFF; +} + +div.method_list { + + margin-left: 30px; +} + +div.constant_list { + + margin-left: 30px; +} + +div.member_list { + + margin-left: 30px; +} + +div.description { + + margin-left: 30px; +} + +div.class_description { + + margin-left: 30px; +} + +div.method_list li div { + + display: inline; +} + +div.member_list li div.member { + + display: inline; +} + +div.constant_list li div.constant { + + display: inline; +} + +span.member_description { + + font-style: italic; + color: grey; +} + +span.constant_description { + + font-style: italic; + color: grey; +} + +span.identifier { + + font-weight: bold; +} + + +table.class_table td { + + vertical-align: top; +} + |