style.css 2.4 KB

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