vagrant.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. .navbar-default .navbar-brand {
  2. background: white;
  3. color: #8d9ba8;
  4. }
  5. .menu .list {
  6. background: #0c5593;
  7. }
  8. .menu .chapter {
  9. padding: 0 20px;
  10. }
  11. .menu ul.list li a[data-type="chapter-link"], .menu ul.list li.chapter .simple {
  12. color: white;
  13. text-transform: uppercase;
  14. border-bottom: 1px solid rgba(255,255,255,0.4);
  15. }
  16. .content h1, .content h2, .content h3, .content h4, .content h5 {
  17. color: #292e31;
  18. font-weight: normal;
  19. }
  20. .content {
  21. color: #4c555a;
  22. }
  23. a {
  24. color: #0094bf;
  25. text-decoration: underline;
  26. }
  27. a:hover {
  28. color: #f1362f;
  29. }
  30. .menu ul.list li.title {
  31. background: white;
  32. padding-bottom: 5px;
  33. }
  34. .menu ul.list li:nth-child(2) {
  35. margin-top: 0;
  36. }
  37. .menu ul.list li:nth-last-child(2) {
  38. background: none;
  39. }
  40. .menu ul.list li.title a {
  41. padding: 10px 15px;
  42. }
  43. .menu ul.list li.title a, .navbar a {
  44. color: #8d9ba8;
  45. text-decoration: none;
  46. font-size: 16px;
  47. font-weight: 300;
  48. }
  49. .menu ul.list li a {
  50. color: white;
  51. padding: 10px;
  52. font-weight: 300;
  53. text-decoration: none;
  54. }
  55. .menu ul.list li a.active {
  56. color: white;
  57. font-weight: bold;
  58. }
  59. .copyright {
  60. color: white;
  61. background: #000;
  62. }
  63. code {
  64. box-sizing: border-box;
  65. display: inline-block;
  66. padding: 0 5px;
  67. background: rgba(0,148,191,0.1);
  68. border: 1px solid #f0f4f7;
  69. border-radius: 3px;
  70. color: #0094bf;
  71. font-size: 13px;
  72. line-height: 20px;
  73. }
  74. pre {
  75. margin: 0;
  76. padding: 12px 12px;
  77. background: rgba(238,238,238,.35);
  78. border-radius: 3px;
  79. font-size: 13px;
  80. line-height: 1.5em;
  81. font-weight: 500;
  82. }
  83. pre code.hljs {
  84. border: none;
  85. background: none;
  86. box-shadow: none;
  87. }
  88. /*
  89. Atom One Light by Daniel Gamage
  90. Original One Light Syntax theme from https://github.com/atom/one-light-syntax
  91. base: #fafafa
  92. mono-1: #383a42
  93. mono-2: #686b77
  94. mono-3: #a0a1a7
  95. hue-1: #0184bb
  96. hue-2: #4078f2
  97. hue-3: #a626a4
  98. hue-4: #50a14f
  99. hue-5: #e45649
  100. hue-5-2: #c91243
  101. hue-6: #986801
  102. hue-6-2: #c18401
  103. */
  104. .hljs {
  105. display: block;
  106. overflow-x: auto;
  107. padding: 0.5em;
  108. color: #383a42;
  109. background: #fafafa;
  110. }
  111. .hljs-comment,
  112. .hljs-quote {
  113. color: #a0a1a7;
  114. font-style: italic;
  115. }
  116. .hljs-doctag,
  117. .hljs-keyword,
  118. .hljs-formula {
  119. color: #a626a4;
  120. }
  121. .hljs-section,
  122. .hljs-name,
  123. .hljs-selector-tag,
  124. .hljs-deletion,
  125. .hljs-subst {
  126. color: #e45649;
  127. }
  128. .hljs-literal {
  129. color: #0184bb;
  130. }
  131. .hljs-string,
  132. .hljs-regexp,
  133. .hljs-addition,
  134. .hljs-attribute,
  135. .hljs-meta-string {
  136. color: #50a14f;
  137. }
  138. .hljs-built_in,
  139. .hljs-class .hljs-title {
  140. color: #c18401;
  141. }
  142. .hljs-attr,
  143. .hljs-variable,
  144. .hljs-template-variable,
  145. .hljs-type,
  146. .hljs-selector-class,
  147. .hljs-selector-attr,
  148. .hljs-selector-pseudo,
  149. .hljs-number {
  150. color: #986801;
  151. }
  152. .hljs-symbol,
  153. .hljs-bullet,
  154. .hljs-link,
  155. .hljs-meta,
  156. .hljs-selector-id,
  157. .hljs-title {
  158. color: #4078f2;
  159. }
  160. .hljs-emphasis {
  161. font-style: italic;
  162. }
  163. .hljs-strong {
  164. font-weight: bold;
  165. }
  166. .hljs-link {
  167. text-decoration: underline;
  168. }