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.

121 lines
1.8 KiB

  1. /*
  2. Description: Magula style for highligh.js
  3. Author: Ruslan Keba <rukeba@gmail.com>
  4. Website: http://rukeba.com/
  5. Version: 1.0
  6. Date: 2009-01-03
  7. Music: Aphex Twin / Xtal
  8. */
  9. .hljs {
  10. display: block;
  11. overflow-x: auto;
  12. padding: 0.5em;
  13. background-color: #f4f4f4;
  14. -webkit-text-size-adjust: none;
  15. }
  16. .hljs,
  17. .hljs-subst {
  18. color: black;
  19. }
  20. .hljs-string,
  21. .hljs-title,
  22. .hljs-parent,
  23. .hljs-tag .hljs-value,
  24. .hljs-rules .hljs-value,
  25. .hljs-preprocessor,
  26. .hljs-pragma,
  27. .ruby .hljs-symbol,
  28. .ruby .hljs-symbol .hljs-string,
  29. .hljs-template_tag,
  30. .django .hljs-variable,
  31. .smalltalk .hljs-class,
  32. .hljs-addition,
  33. .hljs-flow,
  34. .hljs-stream,
  35. .bash .hljs-variable,
  36. .apache .hljs-cbracket,
  37. .coffeescript .hljs-attribute {
  38. color: #050;
  39. }
  40. .hljs-comment,
  41. .hljs-annotation,
  42. .diff .hljs-header,
  43. .hljs-chunk {
  44. color: #777;
  45. }
  46. .hljs-number,
  47. .hljs-date,
  48. .hljs-regexp,
  49. .hljs-literal,
  50. .smalltalk .hljs-symbol,
  51. .smalltalk .hljs-char,
  52. .hljs-change,
  53. .tex .hljs-special {
  54. color: #800;
  55. }
  56. .hljs-label,
  57. .hljs-javadoc,
  58. .ruby .hljs-string,
  59. .hljs-decorator,
  60. .hljs-filter .hljs-argument,
  61. .hljs-localvars,
  62. .hljs-array,
  63. .hljs-attr_selector,
  64. .hljs-pseudo,
  65. .hljs-pi,
  66. .hljs-doctype,
  67. .hljs-deletion,
  68. .hljs-envvar,
  69. .hljs-shebang,
  70. .apache .hljs-sqbracket,
  71. .nginx .hljs-built_in,
  72. .tex .hljs-formula,
  73. .hljs-prompt,
  74. .clojure .hljs-attribute {
  75. color: #00e;
  76. }
  77. .hljs-keyword,
  78. .hljs-id,
  79. .hljs-phpdoc,
  80. .hljs-dartdoc,
  81. .hljs-title,
  82. .hljs-built_in,
  83. .smalltalk .hljs-class,
  84. .hljs-winutils,
  85. .bash .hljs-variable,
  86. .apache .hljs-tag,
  87. .xml .hljs-tag,
  88. .tex .hljs-command,
  89. .hljs-request,
  90. .hljs-status {
  91. font-weight: bold;
  92. color: navy;
  93. }
  94. .nginx .hljs-built_in {
  95. font-weight: normal;
  96. }
  97. .coffeescript .javascript,
  98. .javascript .xml,
  99. .tex .hljs-formula,
  100. .xml .javascript,
  101. .xml .vbscript,
  102. .xml .css,
  103. .xml .hljs-cdata {
  104. opacity: 0.5;
  105. }
  106. /* --- */
  107. .apache .hljs-tag {
  108. font-weight: bold;
  109. color: blue;
  110. }