Skip to content

Tweak styling of html doxygen output #2795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions doc/assets/cbmc_style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
code {
color: red;
background-color: WhiteSmoke;
border-style: solid;
border-width: 1px;
border-color: LightGrey;
padding: 1px 4px;
}

h1 {
font-size: 1.3em;
margin: 0.9em 0;
}

h2 {
font-size: 1.2em;
margin: 0.6em 0;
}

h3 {
font-size: 1.1em;
margin: 0.3em 0;
}

pre.fragment, div.fragment {
padding: 5px;
margin-left: 10px;
}


a {
color: #CA7900;
}

.contents a:visited {
color: #6237a8;
}

#nav-tree .label {
font-weight: bold;
font-size: 1.1em;
}

#nav-tree a {
color: MidnightBlue;
}

#nav-tree .selected a {
padding: 0.5em;
}

#nav-tree .item {
font-size: 1.1em;
padding: 0.2em;
}
2 changes: 1 addition & 1 deletion src/doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ HTML_STYLESHEET =
# list). For an example see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_STYLESHEET =
HTML_EXTRA_STYLESHEET = ../doc/assets/cbmc_style.css

# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
Expand Down