shThemeMoxieDoc.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /**
  2. * SyntaxHighlighter
  3. * http://alexgorbatchev.com/
  4. *
  5. * SyntaxHighlighter is donationware. If you are using it, please donate.
  6. * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
  7. *
  8. * @version
  9. * 2.0.320 (May 03 2009)
  10. *
  11. * @copyright
  12. * Copyright (C) 2004-2009 Alex Gorbatchev.
  13. *
  14. * @license
  15. * This file is part of SyntaxHighlighter.
  16. *
  17. * SyntaxHighlighter is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU Lesser General Public License as published by
  19. * the Free Software Foundation, either version 3 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * SyntaxHighlighter is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with SyntaxHighlighter. If not, see <http://www.gnu.org/copyleft/lesser.html>.
  29. */
  30. /************************************
  31. * Default Syntax Highlighter theme.
  32. *
  33. * Interface elements.
  34. ************************************/
  35. .syntaxhighlighter
  36. {
  37. background-color: #E7E5DC !important;
  38. }
  39. /* Highlighed line number */
  40. .syntaxhighlighter .line.highlighted .number
  41. {
  42. background-color: #6CE26C !important;
  43. color: black !important;
  44. }
  45. /* Highlighed line */
  46. .syntaxhighlighter .line.highlighted.alt1 .content,
  47. .syntaxhighlighter .line.highlighted.alt2 .content
  48. {
  49. background-color: #6CE26C !important;
  50. }
  51. /* Gutter line numbers */
  52. .syntaxhighlighter .line .number
  53. {
  54. color: #5C5C5C !important;
  55. }
  56. /* Add border to the lines */
  57. .syntaxhighlighter .line .content
  58. {
  59. border-left: 3px solid #99BBE8 !important;
  60. color: #000 !important;
  61. }
  62. .syntaxhighlighter.printing .line .content
  63. {
  64. border: 0 !important;
  65. }
  66. /* First line */
  67. .syntaxhighlighter .line.alt1 .content
  68. {
  69. background-color: #fff !important;
  70. }
  71. /* Second line */
  72. .syntaxhighlighter .line.alt2 .content
  73. {
  74. background-color: #F8F8F8 !important;
  75. }
  76. .syntaxhighlighter .line .content .block
  77. {
  78. background: url(../img/wrapping.png) 0 1.1em no-repeat !important;
  79. }
  80. .syntaxhighlighter .ruler
  81. {
  82. color: silver !important;
  83. background-color: #F8F8F8 !important;
  84. border-left: 3px solid #6CE26C !important;
  85. }
  86. .syntaxhighlighter.nogutter .ruler
  87. {
  88. border: 0 !important;
  89. }
  90. .syntaxhighlighter .toolbar
  91. {
  92. background-color: #F8F8F8 !important;
  93. border: #E7E5DC solid 1px !important;
  94. }
  95. .syntaxhighlighter .toolbar a
  96. {
  97. color: #a0a0a0 !important;
  98. }
  99. .syntaxhighlighter .toolbar a:hover
  100. {
  101. color: red !important;
  102. }
  103. /************************************
  104. * Actual syntax highlighter colors.
  105. ************************************/
  106. .syntaxhighlighter .plain,
  107. .syntaxhighlighter .plain a
  108. {
  109. color: #000 !important;
  110. }
  111. .syntaxhighlighter .comments,
  112. .syntaxhighlighter .comments a
  113. {
  114. color: #008200 !important;
  115. }
  116. .syntaxhighlighter .string,
  117. .syntaxhighlighter .string a
  118. {
  119. color: blue !important;
  120. }
  121. .syntaxhighlighter .keyword
  122. {
  123. color: #069 !important;
  124. font-weight: bold !important;
  125. }
  126. .syntaxhighlighter .preprocessor
  127. {
  128. color: gray !important;
  129. }
  130. .syntaxhighlighter .variable
  131. {
  132. color: #a70 !important;
  133. }
  134. .syntaxhighlighter .value
  135. {
  136. color: #090 !important;
  137. }
  138. .syntaxhighlighter .functions
  139. {
  140. color: #ff1493 !important;
  141. }
  142. .syntaxhighlighter .constants
  143. {
  144. color: #0066CC !important;
  145. }
  146. .syntaxhighlighter .script
  147. {
  148. background-color: yellow !important;
  149. }
  150. .syntaxhighlighter .color1,
  151. .syntaxhighlighter .color1 a
  152. {
  153. color: #808080 !important;
  154. }
  155. .syntaxhighlighter .color2,
  156. .syntaxhighlighter .color2 a
  157. {
  158. color: #ff1493 !important;
  159. }
  160. .syntaxhighlighter .color3,
  161. .syntaxhighlighter .color3 a
  162. {
  163. color: red !important;
  164. }