From d0d4a7c59f5f19ef250d20398e68a3da799c0d97 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Thu, 19 Dec 2019 23:42:38 -0500 Subject: [PATCH] tweaked style --- Doxyfile | 4 +-- DoxygenLayout.xml | 6 ++-- README.md | 51 +++++++++++++++++++++++++++++++ docs/header.html | 2 +- docs/style.css | 78 +++++++++++++++++++++++++++++++---------------- 5 files changed, 109 insertions(+), 32 deletions(-) diff --git a/Doxyfile b/Doxyfile index 7935efd..b1e65fb 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1510,7 +1510,7 @@ DISABLE_INDEX = NO # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. -GENERATE_TREEVIEW = YES +GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. @@ -2465,7 +2465,7 @@ DIAFILE_DIRS = # generate a warning when it encounters a \startuml command in this case and # will not generate output for the diagram. -PLANTUML_JAR_PATH = /usr/share/plantuml/lib/plantuml.jar +PLANTUML_JAR_PATH = ./plantuml.jar # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a # configuration file for plantuml. diff --git a/DoxygenLayout.xml b/DoxygenLayout.xml index 951a94e..5574174 100644 --- a/DoxygenLayout.xml +++ b/DoxygenLayout.xml @@ -2,9 +2,9 @@ - - - + + + diff --git a/README.md b/README.md index ca1a4c7..7836e32 100644 --- a/README.md +++ b/README.md @@ -95,3 +95,54 @@ Edit -> User : Success | [view-telem](docs/debugging.md) | Prints @ref tide telemetry data to stdout for debugging | | [w+ and x+](docs/edit_scripts.md) | Marks the current file as writable and/or executable | + +--- + +# Heading 1 +## Heading 2 +### Heading 3 +#### Heading 4 +##### Heading 5 +###### Heading 6 + +[A link](google.com) + +**Bold Text** + +*Italicized Text* + +~~The world is flat.~~ + +> This is a blockquote + +`here is some code` + +``` +This is a +fenced code block +``` + +Unordered List: +* item 1 +* item 2 +* item 3 + +Ordered List: +1. item 1 +2. item 2 +3. item 3 + + This is + a code block + +| This | Is | +|------|-------| +| A | Table | + +@attention Pay attention! +@warning This is a warning! +@note This is a note! +@author Author Name Here +@copyright 2019 +@bug This is a bug! +@invariant This is an invariant diff --git a/docs/header.html b/docs/header.html index 122bb50..dadbc0f 100644 --- a/docs/header.html +++ b/docs/header.html @@ -7,7 +7,7 @@ $projectname: $title $title - + $treeview diff --git a/docs/style.css b/docs/style.css index cf8470f..95b205f 100644 --- a/docs/style.css +++ b/docs/style.css @@ -1,5 +1,6 @@ /* The standard CSS for doxygen 1.8.16 */ +/* body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; } @@ -7,7 +8,7 @@ body, table, div, p, dl { p.reference, p.definition { font: 400 14px/22px Roboto,sans-serif; } - +*/ /* @group Heading Levels */ h1.groupheader { @@ -1777,20 +1778,16 @@ u { /** Base Tag Styling */ body { - background-color: #eeeeee; + background-color: #fff; font-family: sans-serif; padding: 0; margin: 0; } h1, h2, h3, h4 { margin: 1em 1ex 0.5ex 0; } - h1 { font-size: 1.4em; } - h2 { font-size: 1.3em; } - h3 { font-size: 1.2em; } - h4 { font-size: 1.1em; } a { @@ -1798,19 +1795,17 @@ a { text-decoration: none; } -.left { float: left; } - -.right { float: right; } +hr { + border-top: 1px solid #005386; +} -/** Main Page Content */ -#doc-content { - background-color: #fff; -// margin: 0 0 0 200px; -// padding: 1.0em; -// border-left: 1px solid #cccccc; +blockquote { +// background-color: #F7F8FB; + border-left: 2px solid #005386; } -//.pageDoc { background-color: #fff; } -//.contents { background-color: #fff; } + +.left { float: left; } +.right { float: right; } /** Header Styling */ .mdlTitle { @@ -1850,9 +1845,9 @@ a { .tabs a.current { font-weight: bold; } .tabs ul { - list-style-type: none; - margin: 0; - padding: 0; + list-style-type: none; + margin: 0; + padding: 0; } .tabs li { @@ -1864,11 +1859,42 @@ a { } .navpath ul { + display: none; +} + +div.header { + background-color: #fff; background-image: none; - height: 30px; - line-height: 30px; - border: solid 1px #C2CDE4; - overflow: hidden; - margin: 0px; - padding: 0px; + border-bottom: 0px; +} + +table.markdownTable td, +table.markdownTable th { + border: 1px solid #005386; + padding: 3px 7px 2px; +} + +th.markdownTableHeadLeft, +th.markdownTableHeadRight, +th.markdownTableHeadCenter, +th.markdownTableHeadNone { + background-color: #005386; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +.contents a:visited { + color: #005386; + text-decoration: none; +} + +h2.groupheader { + border-bottom: 1px solid #005386; + color: #005386; +} + +.title { + font-size: 1.8em; } \ No newline at end of file -- 2.51.0