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.

style.css 1.1 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright 2005 Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. h2 {
  18. font-size: 200%;
  19. background-color: ffffff;
  20. }
  21. h3 {
  22. font-size: 130%;
  23. color: #ffffff;
  24. background-color: #525D76;
  25. }
  26. h4 {
  27. color: #ffffff;
  28. background-color: #828DA6;
  29. }
  30. td {
  31. background-color: eeeeee;
  32. color: 000000;
  33. }
  34. /* first row */
  35. table tr:first-child td {
  36. background-color: cccccc;
  37. color: 000000;
  38. }
  39. /* or th as first row */
  40. table th {
  41. background-color: cccccc;
  42. color: 000000;
  43. }
  44. pre {
  45. background-color: efefef;
  46. }