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

115 lines
1.7KB

  1. .container {
  2. margin-right: auto;
  3. margin-left: auto;
  4. width: 1070px;
  5. }
  6. body {
  7. font-size: 14px;
  8. line-height: 20px;
  9. color: #666666;
  10. background-color: #ffffff;
  11. }
  12. a {
  13. color: #0088cc;
  14. text-decoration: none;
  15. }
  16. a:hover {
  17. color: #005580;
  18. text-decoration: underline;
  19. }
  20. p {
  21. margin: 0 0 10px;
  22. }
  23. h2,
  24. h3,
  25. h4 {
  26. margin: 10px 0;
  27. font-family: inherit;
  28. font-weight: bold;
  29. line-height: 1;
  30. border-color: #D6E9C6;
  31. color: #468847;
  32. border-style: solid;
  33. border-width: 0 0 1px;
  34. padding-left: 0.5em;
  35. }
  36. h1 a,
  37. h2 a,
  38. h3 a,
  39. h4 a {
  40. color: inherit;
  41. }
  42. h1 {
  43. font-size: 30px;
  44. line-height: 40px;
  45. }
  46. h2 {
  47. font-size: 20px;
  48. line-height: 40px;
  49. }
  50. h3 {
  51. font-size: 18px;
  52. line-height: 40px;
  53. }
  54. code,
  55. pre {
  56. padding: 0 3px 2px;
  57. font-family: monospace;
  58. font-size: 12px;
  59. color: #333333;
  60. border-radius: 3px;
  61. }
  62. pre {
  63. display: block;
  64. padding: 9.5px;
  65. margin: 0 0 10px;
  66. font-size: 13px;
  67. line-height: 20px;
  68. word-break: break-all;
  69. word-wrap: break-word;
  70. white-space: pre;
  71. white-space: pre-wrap;
  72. background-color: #f5f5f5;
  73. border: 1px solid #ccc;
  74. border-radius: 4px;
  75. }
  76. code {
  77. padding: 2px 4px;
  78. color: #d14;
  79. background-color: #f7f7f9;
  80. border: 1px solid #e1e1e8;
  81. }
  82. pre code {
  83. padding: 0;
  84. color: inherit;
  85. background-color: transparent;
  86. border: 0;
  87. }
  88. .alert {
  89. padding: 8px 35px 8px 14px;
  90. margin-bottom: 20px;
  91. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  92. background-color: #fcf8e3;
  93. border: 1px solid #fbeed5;
  94. border-radius: 4px;
  95. color: #c09853;
  96. }
  97. .alert-danger,
  98. .alert-error {
  99. background-color: #f2dede;
  100. border-color: #eed3d7;
  101. color: #b94a48;
  102. }
  103. .alert-info {
  104. background-color: #d9edf7;
  105. border-color: #bce8f1;
  106. color: #3a87ad;
  107. }
  108. ul.toc {
  109. list-style-type: none;
  110. }