maven-theme.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. body {
  20. padding: 0px 0px 10px 0px;
  21. }
  22. body, td, select, input, li{
  23. font-family: Verdana, Helvetica, Arial, sans-serif;
  24. font-size: 13px;
  25. }
  26. code{
  27. font-family: Courier, monospace;
  28. font-size: 13px;
  29. }
  30. a {
  31. text-decoration: none;
  32. }
  33. a:link {
  34. color:#36a;
  35. }
  36. a:visited {
  37. color:#47a;
  38. }
  39. a:active, a:hover {
  40. color:#69c;
  41. }
  42. #legend li.externalLink {
  43. background: url(../images/external.png) left top no-repeat;
  44. padding-left: 18px;
  45. }
  46. a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
  47. background: url(../images/external.png) right center no-repeat;
  48. padding-right: 18px;
  49. }
  50. #legend li.newWindow {
  51. background: url(../images/newwindow.png) left top no-repeat;
  52. padding-left: 18px;
  53. }
  54. a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
  55. background: url(../images/newwindow.png) right center no-repeat;
  56. padding-right: 18px;
  57. }
  58. h2 {
  59. padding: 4px 4px 4px 6px;
  60. border: 1px solid #999;
  61. color: #900;
  62. background-color: #ddd;
  63. font-weight:900;
  64. font-size: x-large;
  65. }
  66. h3 {
  67. padding: 4px 4px 4px 6px;
  68. border: 1px solid #aaa;
  69. color: #900;
  70. background-color: #eee;
  71. font-weight: normal;
  72. font-size: large;
  73. }
  74. h4 {
  75. padding: 4px 4px 4px 6px;
  76. border: 1px solid #bbb;
  77. color: #900;
  78. background-color: #fff;
  79. font-weight: normal;
  80. font-size: large;
  81. }
  82. h5 {
  83. padding: 4px 4px 4px 6px;
  84. color: #900;
  85. font-size: medium;
  86. }
  87. p {
  88. line-height: 1.3em;
  89. font-size: small;
  90. }
  91. #breadcrumbs {
  92. border-top: 1px solid #aaa;
  93. border-bottom: 1px solid #aaa;
  94. background-color: #ccc;
  95. }
  96. #leftColumn {
  97. margin: 10px 0 0 5px;
  98. border: 1px solid #999;
  99. background-color: #eee;
  100. padding-bottom: 3px; /* IE-9 scrollbar-fix */
  101. }
  102. #navcolumn h5 {
  103. font-size: smaller;
  104. border-bottom: 1px solid #aaaaaa;
  105. padding-top: 2px;
  106. color: #000;
  107. }
  108. table.bodyTable th {
  109. color: white;
  110. background-color: #bbb;
  111. text-align: left;
  112. font-weight: bold;
  113. }
  114. table.bodyTable th, table.bodyTable td {
  115. font-size: 1em;
  116. }
  117. table.bodyTable tr.a {
  118. background-color: #ddd;
  119. }
  120. table.bodyTable tr.b {
  121. background-color: #eee;
  122. }
  123. .source {
  124. border: 1px solid #999;
  125. }
  126. dl {
  127. padding: 4px 4px 4px 6px;
  128. border: 1px solid #aaa;
  129. background-color: #ffc;
  130. }
  131. dt {
  132. color: #900;
  133. }
  134. #organizationLogo img, #projectLogo img, #projectLogo span{
  135. margin: 8px;
  136. }
  137. #banner {
  138. border-bottom: 1px solid #fff;
  139. }
  140. .errormark, .warningmark, .donemark, .infomark {
  141. background: url(../images/icon_error_sml.gif) no-repeat;
  142. }
  143. .warningmark {
  144. background-image: url(../images/icon_warning_sml.gif);
  145. }
  146. .donemark {
  147. background-image: url(../images/icon_success_sml.gif);
  148. }
  149. .infomark {
  150. background-image: url(../images/icon_info_sml.gif);
  151. }