/docs/style.css

http://github.com/MikeWey/DMagick · CSS · 209 lines · 179 code · 28 blank · 2 comment · 0 complexity · c54129c27a900be8ac66f34e27b89b43 MD5 · raw file

  1. body
  2. {
  3. margin: 0;
  4. padding: 0;
  5. border: 0;
  6. color: black;
  7. background-color: whiteSmoke;
  8. font-size: 100%;
  9. font-family: Verdana, "Deja Vu", "Bitstream Vera Sans", sans-serif;
  10. }
  11. div#header
  12. {
  13. padding: 1em;
  14. }
  15. div#navigation
  16. {
  17. font-size: 0.875em;
  18. float: left;
  19. padding: 0 1.5em;
  20. margin-bottom: 2em;
  21. }
  22. div#navigation h2
  23. {
  24. font-family: Verdana, "Deja Vu", "Bitstream Vera Sans", sans-serif;
  25. font-size: 1.35em;
  26. color: #17457C;
  27. margin: 0;
  28. }
  29. div#navigation ul
  30. {
  31. list-style-type: none;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. div#navigation li
  36. {
  37. margin: 0 0 0 0.8em;
  38. padding: 0;
  39. }
  40. #navigation a
  41. {
  42. display: block;
  43. color: #17457C;
  44. text-decoration: none;
  45. padding: 0.1em 0;
  46. border-bottom: 1px dotted #D0D0D0;
  47. }
  48. #navigation a:hover
  49. {
  50. color: darkRed;
  51. }
  52. #navigation a.active
  53. {
  54. color: black;
  55. border-color: black;
  56. }
  57. div#content
  58. {
  59. min-height: 440px;
  60. max-width: 76em;
  61. margin-left: 18em;
  62. margin-right: 1.6em;
  63. padding: 1.6em;
  64. padding-top: 1.3em;
  65. border: 0.6em solid #D0D0D0;
  66. background-color: white;
  67. font-size: 0.875em;
  68. line-height: 1.4em;
  69. }
  70. div#content li
  71. {
  72. padding-bottom: .7ex;
  73. }
  74. div#copyright
  75. {
  76. clear: both;
  77. margin-top: 2em;
  78. padding: 1em 2em;
  79. background-color: #E4E9EF;
  80. color: #17457C;
  81. font-size: 0.75em;
  82. text-align: center;
  83. }
  84. div#copyright a
  85. {
  86. color: #17457C;
  87. }
  88. #lastupdate
  89. {
  90. float: right;
  91. margin: -1.5em;
  92. margin-bottom: 0;
  93. text-align: right;
  94. font-size: 0.8em;
  95. font-style: italic;
  96. color: #D0D0D0;
  97. }
  98. h1, h2, h3, h4, h5, h6
  99. {
  100. font-family: Georgia, "Times New Roman", Times, serif;
  101. font-weight: normal;
  102. color: darkRed;
  103. line-height: normal;
  104. text-align: left;
  105. }
  106. h1
  107. {
  108. margin-top: 0;
  109. font-size: 2.5em;
  110. }
  111. h2
  112. {
  113. font-size: 1.7em;
  114. }
  115. h3
  116. {
  117. font-size: 1.35em;
  118. }
  119. h4
  120. {
  121. font-size: 1.15em;
  122. font-style: italic;
  123. margin-bottom: 0;
  124. }
  125. pre
  126. {
  127. background: whiteSmoke;
  128. padding: 1ex;
  129. margin: 1em 0 1em 3em;
  130. font-family: monospace;
  131. font-size: 1.2em;
  132. line-height: normal;
  133. border: 1px solid #ccc;
  134. width: auto;
  135. white-space: pre-wrap; /* css-3 */
  136. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  137. white-space: -pre-wrap; /* Opera 4-6 */
  138. white-space: -o-pre-wrap; /* Opera 7 */
  139. word-wrap: break-word; /* Internet Explorer 5.5+ */
  140. }
  141. dd
  142. {
  143. padding: 1ex;
  144. margin-left: 3em;
  145. margin-bottom: 1em;
  146. }
  147. hr
  148. {
  149. margin: 2em 0;
  150. }
  151. a
  152. {
  153. color: #006;
  154. }
  155. a:visited
  156. {
  157. color: #606;
  158. }
  159. td
  160. {
  161. vertical-align: top;
  162. }
  163. .d_inlinecode
  164. {
  165. font-family: monospace;
  166. font-weight: bold;
  167. }
  168. .d_decl {
  169. font-weight: bold;
  170. background-color: #E4E9EF;
  171. border-bottom: solid 2px #17457C;
  172. padding: 2px 0px 2px 2px;
  173. }
  174. /* Elements of D source code text */
  175. .d_comment { color: green; }
  176. .d_string { color: red; }
  177. .d_keyword { color: blue; }
  178. .d_psymbol { text-decoration: underline; }
  179. .d_param { font-style: italic; }
  180. /* Focal symbol that is being documented */
  181. .ddoc_psymbol { color: #17457C; }