laravel.css 2.6 KB

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