default.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. }
  7. body, td, th {
  8. font-family: arial, sans-serif;
  9. font-size: 11pt;
  10. color: #4D4D4D;
  11. line-height: 1.7em;
  12. }
  13. #container {
  14. margin: 0 auto;
  15. padding-bottom: 50px;
  16. width: 900px;
  17. }
  18. h1 {
  19. font-size: 180%;
  20. font-weight: bold;
  21. padding: 0;
  22. margin: 1em 0 1em 0;
  23. }
  24. h2 {
  25. padding-top: 20px;
  26. padding-bottom: 10px;
  27. border-bottom: 1px solid #a0c0f0;
  28. color: #2B7CE9;
  29. }
  30. h3 {
  31. font-size: 140%;
  32. }
  33. a {
  34. color: #2B7CE9;
  35. text-decoration: none;
  36. }
  37. a:visited {
  38. color: #2E60A4;
  39. }
  40. a:hover {
  41. color: red;
  42. text-decoration: underline;
  43. }
  44. hr {
  45. border: none 0;
  46. border-top: 1px solid #abc;
  47. height: 1px;
  48. }
  49. pre {
  50. display: block;
  51. font-size: 10pt;
  52. line-height: 1.5em;
  53. font-family: monospace;
  54. }
  55. pre, code {
  56. background-color: #f5f5f5;
  57. }
  58. table
  59. {
  60. border-collapse: collapse;
  61. }
  62. th {
  63. font-weight: bold;
  64. border: 1px solid lightgray;
  65. background-color: #E5E5E5;
  66. text-align: left;
  67. vertical-align: top;
  68. padding: 5px;
  69. }
  70. td {
  71. border: 1px solid lightgray;
  72. padding: 5px;
  73. vertical-align: top;
  74. }