postmark.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .navbar-default {
  2. background: #FFDE00;
  3. border: none;
  4. }
  5. .navbar-default .navbar-brand {
  6. color: #333;
  7. font-weight: bold;
  8. }
  9. .menu {
  10. background: #333;
  11. color: #fcfcfc;
  12. }
  13. .menu ul.list li a {
  14. color: #333;
  15. }
  16. .menu ul.list li.title {
  17. background: #FFDE00;
  18. color: #333;
  19. padding-bottom: 5px;
  20. }
  21. .menu ul.list li:nth-child(2) {
  22. margin-top: 0;
  23. }
  24. .menu ul.list li.chapter a, .menu ul.list li.chapter .simple {
  25. color: white;
  26. text-decoration: none;
  27. }
  28. .menu ul.list li.chapter ul.links a {
  29. color: #949494;
  30. text-transform: none;
  31. padding-left: 35px;
  32. }
  33. .menu ul.list li.chapter ul.links a:hover, .menu ul.list li.chapter ul.links a.active {
  34. color: #FFDE00;
  35. }
  36. .menu ul.list li.chapter ul.links {
  37. padding-left: 0;
  38. }
  39. .menu ul.list li.divider {
  40. background: rgba(255, 255, 255, 0.07);
  41. }
  42. #book-search-input input, #book-search-input input:focus, #book-search-input input:hover {
  43. color: #949494;
  44. }
  45. .copyright {
  46. color: #b3b3b3;
  47. }
  48. .content {
  49. background: #fcfcfc;
  50. }
  51. .content a {
  52. color: #007DCC;
  53. }
  54. .content a:visited {
  55. color: #0165a5;
  56. }
  57. .copyright {
  58. background: #272525;
  59. }
  60. .menu ul.list li:nth-last-child(2) {
  61. background: none;
  62. }
  63. .list-group-item:first-child, .list-group-item:last-child {
  64. border-radius: 0;
  65. }
  66. .menu ul.list li.title a {
  67. text-decoration: none;
  68. font-weight: bold;
  69. }
  70. .menu ul.list li.title a:hover {
  71. background: rgba(255,255,255,0.1);
  72. }
  73. .breadcrumb>li+li:before {
  74. content: "»\00a0"
  75. }
  76. .breadcrumb {
  77. padding-bottom: 15px;
  78. border-bottom: 1px solid #e1e4e5;
  79. }
  80. code {
  81. white-space: nowrap;
  82. max-width: 100%;
  83. background: #F5F5F5;
  84. border: solid 1px #e1e4e5;
  85. padding: 2px 5px;
  86. color: #666666;
  87. overflow-x: auto;
  88. border-radius: 0;
  89. }
  90. pre {
  91. white-space: pre;
  92. margin: 0;
  93. padding: 12px 12px;
  94. font-size: 12px;
  95. line-height: 1.5;
  96. display: block;
  97. overflow: auto;
  98. color: #404040;
  99. background: #f3f3f3;
  100. }
  101. pre code.hljs {
  102. border: none;
  103. background: inherit;
  104. }
  105. /*
  106. Atom One Light by Daniel Gamage
  107. Original One Light Syntax theme from https://github.com/atom/one-light-syntax
  108. base: #fafafa
  109. mono-1: #383a42
  110. mono-2: #686b77
  111. mono-3: #a0a1a7
  112. hue-1: #0184bb
  113. hue-2: #4078f2
  114. hue-3: #a626a4
  115. hue-4: #50a14f
  116. hue-5: #e45649
  117. hue-5-2: #c91243
  118. hue-6: #986801
  119. hue-6-2: #c18401
  120. */
  121. .hljs {
  122. display: block;
  123. overflow-x: auto;
  124. padding: 0.5em;
  125. color: #383a42;
  126. background: #fafafa;
  127. }
  128. .hljs-comment,
  129. .hljs-quote {
  130. color: #a0a1a7;
  131. font-style: italic;
  132. }
  133. .hljs-doctag,
  134. .hljs-keyword,
  135. .hljs-formula {
  136. color: #a626a4;
  137. }
  138. .hljs-section,
  139. .hljs-name,
  140. .hljs-selector-tag,
  141. .hljs-deletion,
  142. .hljs-subst {
  143. color: #e45649;
  144. }
  145. .hljs-literal {
  146. color: #0184bb;
  147. }
  148. .hljs-string,
  149. .hljs-regexp,
  150. .hljs-addition,
  151. .hljs-attribute,
  152. .hljs-meta-string {
  153. color: #50a14f;
  154. }
  155. .hljs-built_in,
  156. .hljs-class .hljs-title {
  157. color: #c18401;
  158. }
  159. .hljs-attr,
  160. .hljs-variable,
  161. .hljs-template-variable,
  162. .hljs-type,
  163. .hljs-selector-class,
  164. .hljs-selector-attr,
  165. .hljs-selector-pseudo,
  166. .hljs-number {
  167. color: #986801;
  168. }
  169. .hljs-symbol,
  170. .hljs-bullet,
  171. .hljs-link,
  172. .hljs-meta,
  173. .hljs-selector-id,
  174. .hljs-title {
  175. color: #4078f2;
  176. }
  177. .hljs-emphasis {
  178. font-style: italic;
  179. }
  180. .hljs-strong {
  181. font-weight: bold;
  182. }
  183. .hljs-link {
  184. text-decoration: underline;
  185. }