You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.css 5.5 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. body {
  19. background-color: #FFFFFF;
  20. color: #000000;
  21. margin: 0px 0px 0px 0px;
  22. font-family: Verdana, Helvetica, sans-serif;
  23. font-size : 90%;
  24. }
  25. a:link { color: #0F3660; }
  26. a:visited { color: #009999; }
  27. a:active { color: #000066; }
  28. a:hover { color: #000066; }
  29. .menucontainer {
  30. float: left;
  31. background-color: #4C6C8F;
  32. margin: 0px 5px;
  33. width: 250px;
  34. }
  35. .menu {
  36. font-size : 90%;
  37. padding: 3px 8px 5px 3px;
  38. border-right: 1px solid #294563;
  39. border-left: 1px solid #294563;
  40. }
  41. .menu a:link { color: #FFFFFF; text-decoration : none; }
  42. .menu a:visited { color: #FFFFFF; text-decoration : none; }
  43. .menu a:hover { color: #FFCC00; text-decoration : none; }
  44. .menu ul { margin: 0px 0px 0px 20px; padding: 0px; }
  45. .menu li { list-style-image: url('images/label.gif'); font-weight : bold; }
  46. .menu ul ul li .sel { list-style-image: url('images/current.gif'); font-weight : normal; }
  47. .menu ul ul li { list-style-image: url('images/page.gif'); font-weight : normal; }
  48. .menuheader {
  49. color: #CFDCED;
  50. }
  51. .sel {
  52. color: #ffcc00;
  53. }
  54. .tab { font-size : 85%; border: 0; background-color: #294563;}
  55. .tab a:link { text-decoration : none; }
  56. .tab a:visited { text-decoration : none; color: #2A4A6D }
  57. .tab a:hover { color: #000066; }
  58. table .title { background-color: #FFFFFF; width:100%; border: 0px; }
  59. .dida { font-size: 80%; }
  60. .pre { white-space: pre;}
  61. .nowrap { white-space: nowrap;}
  62. .main {
  63. margin-left: 280px;
  64. margin-right: 5px;
  65. }
  66. .content {
  67. padding: 5px 5px 5px 10px;
  68. font : small Verdana, Helvetica, sans-serif;
  69. font-size : 90%;
  70. }
  71. .content .ForrestTable { width: 100%; background-color: #7099C5; color: #ffffff; font-size : 90%;}
  72. .content .ForrestTable caption { text-align: left; color: black; font-weight: bold; }
  73. .content .ForrestTable th { text-align: center; }
  74. .content .ForrestTable td { background-color: #f0f0ff; color: black; }
  75. .content .externals { width: 80%; background-color: #7099C5; color: #ffffff; font-size : 90%;}
  76. .content .externals caption { text-align: left; color: black; font-weight: bold; }
  77. .content .externals th { width: 120px; text-align: right; }
  78. .content .externals td { background-color: #f0f0ff; color: black; }
  79. .frame { margin: 5px 20px 5px 20px; font-size: 90%; }
  80. .frame .content { margin: 0px; }
  81. .note { border: solid 1px #7099C5; background-color: #f0f0ff; }
  82. .note .label { background-color: #7099C5; color: #ffffff; }
  83. .warning { border: solid 1px #D00000; background-color: #fff0f0; }
  84. .warning .label { background-color: #D00000; color: #ffffff; }
  85. .fixme { border: solid 1px #C6C600; background-color: #FAF9C3; }
  86. .fixme .label { background-color: #C6C600; color: #ffffff; }
  87. .code { border-color: #CFDCED; border-style: solid; border-width: 1px; }
  88. .codefrag { font-family: "Courier New", Courier, monospace; }
  89. .highlight { background-color: yellow; }
  90. .minitoc {margin: 5px 5px 5px 40px;}
  91. .dtdElement { width: 100%; font-size: 90%; background-color : #ffffff; }
  92. .dtdTag { color: #990000; text-transform : uppercase; font-style : normal; font-size : 120%; font-weight : bold; }
  93. .section {
  94. font-family: Verdana, Helvetica, sans-serif;
  95. background-color: #294563;
  96. color: #ffffff;
  97. font-weight: bold;
  98. padding: 2px;
  99. margin-top: 20px;
  100. clear: right;
  101. }
  102. .subsection {
  103. font-family: arial,helvetica,sanserif;
  104. background-color: #4C6C8F;
  105. color: #ffffff;
  106. font-weight: bold;
  107. padding: 2px;
  108. clear: right;
  109. }
  110. .toc {
  111. font-family: arial,helvetica,sanserif;
  112. background-color: #4C6C8F;
  113. color: #ffffff;
  114. font-weight: bold;
  115. padding: 2px;
  116. }
  117. .faq {
  118. font-family: arial,helvetica,sanserif;
  119. background-color: #4C6C8F;
  120. color: #ffffff;
  121. font-weight: bold;
  122. padding: 2px;
  123. }
  124. .navpath {
  125. font-family: arial,helvetica,sanserif;
  126. background-color: #CFDCED;
  127. padding: 2px 6px;
  128. margin: 0px 0px 0px 0px;
  129. font-size: 90%;
  130. border-bottom: 2px solid #4C6C8F;
  131. }
  132. .title {
  133. font-family: Verdana, Helvetica, sans-serif;
  134. }
  135. .copyright {
  136. font-family: arial,helvetica,sanserif;
  137. font-size: 90%;
  138. background-color: #CFDCED;
  139. clear: both;
  140. text-align: center;
  141. margin: 0px;
  142. border-top: thin solid #4C6C8F;
  143. }
  144. .bluebar {
  145. padding: 5px 5px 5px 10px;
  146. background-color: #4C6C8F;
  147. margin: 0px;
  148. }
  149. .lightbluebar {
  150. padding: 5px 5px 5px 10px;
  151. background-color: #CFDCED;
  152. margin: 0px;
  153. border-top: 1px solid #294563;
  154. border-bottom: 1px solid #294563;
  155. }
  156. .logobar {
  157. background-color: #294563;
  158. padding-right: 10px;
  159. margin: 0px;
  160. }
  161. .searchcaption {
  162. color: #FFFFFF;
  163. text-align: left;
  164. font-family: arial,helvetica,sanserif;
  165. font-size: 90%;
  166. background-color: #4C6C8F;
  167. margin: 0px;
  168. }
  169. @media print {
  170. .menu {
  171. display: none;
  172. }
  173. }
  174. #adcontainer {
  175. }