doc.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. body {
  2. color: #47555c;
  3. font-size: 16px;
  4. font-family: "Open Sans", sans-serif;
  5. margin: 0;
  6. padding: 0;
  7. background: #eff4ff;
  8. }
  9. a:link { color: #008fee; }
  10. a:visited { color: #008fee; }
  11. a:hover { color: #22a7ff; }
  12. h1 { font-size:26px; }
  13. h2 { font-size:24px; }
  14. h3 { font-size:18px; }
  15. h4 { font-size:16px; }
  16. hr {
  17. height: 1px;
  18. background: #c1cce4;
  19. border: 0px;
  20. margin: 20px 0;
  21. }
  22. code {
  23. font-family: "Open Sans Mono", "Andale Mono", monospace;
  24. }
  25. tt {
  26. font-family: "Open Sans Mono", "Andale Mono", monospace;
  27. }
  28. body, td, th {
  29. }
  30. textarea, pre, tt {
  31. font-family: "Open Sans Mono", "Andale Mono", monospace;
  32. }
  33. img {
  34. border-width: 0px;
  35. }
  36. .example {
  37. background-color: #323744;
  38. color: white;
  39. font-size: 16px;
  40. padding: 16px 24px;
  41. border-radius: 2px;
  42. }
  43. div.header, div.footer {
  44. }
  45. #container {
  46. }
  47. #product {
  48. background-color: white;
  49. padding: 10px;
  50. height: 130px;
  51. border-bottom: solid #d3dbec 1px;
  52. }
  53. #product big {
  54. font-size: 42px;
  55. }
  56. #product strong {
  57. font-weight: normal;
  58. }
  59. #product_logo {
  60. float: right;
  61. }
  62. #product_name {
  63. padding-top: 15px;
  64. padding-left: 30px;
  65. font-size: 42px;
  66. font-weight: normal;
  67. }
  68. #product_description {
  69. padding-left: 30px;
  70. color: #757779;
  71. }
  72. #main {
  73. background: #eff4ff;
  74. margin: 0;
  75. }
  76. #navigation {
  77. width: 100%;
  78. background-color: rgb(44,62,103);
  79. padding: 10px;
  80. margin: 0;
  81. }
  82. #navigation h1 {
  83. display: none;
  84. }
  85. #navigation a:hover {
  86. text-decoration: underline;
  87. }
  88. #navigation ul li a {
  89. color: rgb(136, 208, 255);
  90. font-weight: bold;
  91. text-decoration: none;
  92. }
  93. #navigation ul li li a {
  94. color: rgb(136, 208, 255);
  95. font-weight: normal;
  96. text-decoration: none;
  97. }
  98. #navigation ul {
  99. display: inline;
  100. color: white;
  101. padding: 0px;
  102. padding-top: 10px;
  103. padding-bottom: 10px;
  104. }
  105. #navigation li {
  106. display: inline;
  107. list-style-type: none;
  108. padding-left: 5px;
  109. padding-right: 5px;
  110. }
  111. #navigation li {
  112. padding: 10px;
  113. padding: 10px;
  114. }
  115. #navigation li li {
  116. }
  117. #navigation li:hover a {
  118. color: rgb(166, 238, 255);
  119. }
  120. #content {
  121. padding: 20px;
  122. width: 800px;
  123. margin-left: auto;
  124. margin-right: auto;
  125. }
  126. #about {
  127. display: none;
  128. }
  129. dl.reference {
  130. background-color: white;
  131. padding: 20px;
  132. border: solid #d3dbec 1px;
  133. }
  134. dl.reference dt {
  135. padding: 5px;
  136. padding-top: 25px;
  137. color: #637bbc;
  138. }
  139. dl.reference dl dt {
  140. padding-top: 5px;
  141. color: #637383;
  142. }
  143. dl.reference dd {
  144. }
  145. @media print {
  146. body {
  147. font: 10pt "Times New Roman", "TimeNR", Times, serif;
  148. }
  149. a {
  150. font-weight:bold; color: #004080; text-decoration: underline;
  151. }
  152. #main {
  153. background-color: #ffffff; border-left: 0px;
  154. }
  155. #container {
  156. margin-left: 2%; margin-right: 2%; background-color: #ffffff;
  157. }
  158. #content {
  159. margin-left: 0px; padding: 1em; border-left: 0px; border-right: 0px; background-color: #ffffff;
  160. }
  161. #navigation {
  162. display: none;
  163. }
  164. #product_logo {
  165. display: none;
  166. }
  167. #about img {
  168. display: none;
  169. }
  170. .example {
  171. font-family: "Andale Mono", monospace;
  172. font-size: 8pt;
  173. page-break-inside: avoid;
  174. }
  175. }