1/* 2 * Stylesheet for Doxygen HTML output. 3 * 4 * This file defines styles for custom elements in the header/footer and 5 * overrides some of the default Doxygen styles. 6 * 7 * Styles in this file do not affect the treeview sidebar. 8 */ 9 10/* Set the margins to place a small amount of whitespace on the left and right 11 * side of the page. */ 12div.contents { 13 margin-left:4em; 14 margin-right:4em; 15} 16 17/* Justify text in paragraphs. */ 18p { 19 text-align: justify; 20} 21 22/* Style of section headings. */ 23h1 { 24 border-bottom: 1px solid #879ECB; 25 color: #354C7B; 26 font-size: 160%; 27 font-weight: normal; 28 padding-bottom: 4px; 29 padding-top: 8px; 30} 31 32/* Style of subsection headings. */ 33h2:not(.memtitle):not(.groupheader) { 34 font-size: 125%; 35 margin-bottom: 0px; 36 margin-top: 16px; 37 padding: 0px; 38} 39 40/* Style of paragraphs immediately after subsection headings. */ 41h2 + p { 42 margin: 0px; 43 padding: 0px; 44} 45 46/* Style of subsection headings. */ 47h3 { 48 font-size: 100%; 49 margin-bottom: 0px; 50 margin-left: 2em; 51 margin-right: 2em; 52} 53 54/* Style of paragraphs immediately after subsubsection headings. */ 55h3 + p { 56 margin-top: 0px; 57 margin-left: 2em; 58 margin-right: 2em; 59} 60 61/* Style of the prefix "AWS IoT Device SDK C" that appears in the header. */ 62#csdkprefix { 63 color: #757575; 64} 65 66/* Style of the "Return to main page" link that appears in the header. */ 67#returntomain { 68 padding: 0.5em; 69} 70 71/* Style of the dividers on Configuration Settings pages. */ 72div.configpagedivider { 73 margin-left: 0px !important; 74 margin-right: 0px !important; 75 margin-top: 20px !important; 76} 77 78/* Style of configuration setting names. */ 79dl.section.user ~ h1 { 80 border-bottom: none; 81 color: #000000; 82 font-family: monospace, fixed; 83 font-size: 16px; 84 margin-bottom: 0px; 85 margin-left: 2em; 86 margin-top: 1.5em; 87} 88 89/* Style of paragraphs on a configuration settings page. */ 90dl.section.user ~ * { 91 margin-bottom: 10px; 92 margin-left: 4em; 93 margin-right: 4em; 94 margin-top: 0px; 95} 96 97/* Hide the configuration setting marker. */ 98dl.section.user { 99 display: none; 100} 101 102/* Overrides for code fragments and lines. */ 103div.fragment { 104 background: #ffffff; 105 border: none; 106 padding: 5px; 107} 108 109div.line { 110 color: #3a3a3a; 111} 112 113/* Overrides for code syntax highlighting colors. */ 114span.comment { 115 color: #008000; 116} 117 118span.keyword, span.keywordtype, span.keywordflow { 119 color: #0000ff; 120} 121 122span.preprocessor { 123 color: #50015a; 124} 125 126span.stringliteral, span.charliteral { 127 color: #800c0c; 128} 129 130a.code, a.code:visited, a.line, a.line:visited { 131 color: #496194; 132} 133