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.

125 lines
1.7 KiB

  1. /*
  2. Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. color: #000;
  9. background: #fff;
  10. -webkit-text-size-adjust: none;
  11. }
  12. .hljs-subst,
  13. .hljs-title,
  14. .json .hljs-value {
  15. font-weight: normal;
  16. color: #000;
  17. }
  18. .hljs-comment,
  19. .hljs-javadoc,
  20. .diff .hljs-header {
  21. color: #808080;
  22. font-style: italic;
  23. }
  24. .hljs-annotation,
  25. .hljs-decorator,
  26. .hljs-preprocessor,
  27. .hljs-pragma,
  28. .hljs-doctype,
  29. .hljs-pi,
  30. .hljs-chunk,
  31. .hljs-shebang,
  32. .apache .hljs-cbracket,
  33. .hljs-prompt,
  34. .http .hljs-title {
  35. color: #808000;
  36. }
  37. .hljs-tag,
  38. .hljs-pi {
  39. background: #efefef;
  40. }
  41. .hljs-tag .hljs-title,
  42. .hljs-id,
  43. .hljs-attr_selector,
  44. .hljs-pseudo,
  45. .hljs-literal,
  46. .hljs-keyword,
  47. .hljs-hexcolor,
  48. .css .hljs-function,
  49. .ini .hljs-title,
  50. .css .hljs-class,
  51. .hljs-list .hljs-keyword,
  52. .nginx .hljs-title,
  53. .tex .hljs-command,
  54. .hljs-request,
  55. .hljs-status {
  56. font-weight: bold;
  57. color: #000080;
  58. }
  59. .hljs-attribute,
  60. .hljs-rules .hljs-keyword,
  61. .hljs-number,
  62. .hljs-date,
  63. .hljs-regexp,
  64. .tex .hljs-special {
  65. font-weight: bold;
  66. color: #0000ff;
  67. }
  68. .hljs-number,
  69. .hljs-regexp {
  70. font-weight: normal;
  71. }
  72. .hljs-string,
  73. .hljs-value,
  74. .hljs-filter .hljs-argument,
  75. .css .hljs-function .hljs-params,
  76. .apache .hljs-tag {
  77. color: #008000;
  78. font-weight: bold;
  79. }
  80. .hljs-symbol,
  81. .ruby .hljs-symbol .hljs-string,
  82. .hljs-char,
  83. .tex .hljs-formula {
  84. color: #000;
  85. background: #d0eded;
  86. font-style: italic;
  87. }
  88. .hljs-phpdoc,
  89. .hljs-dartdoc,
  90. .hljs-yardoctag,
  91. .hljs-javadoctag {
  92. text-decoration: underline;
  93. }
  94. .hljs-variable,
  95. .hljs-envvar,
  96. .apache .hljs-sqbracket,
  97. .nginx .hljs-built_in {
  98. color: #660e7a;
  99. }
  100. .hljs-addition {
  101. background: #baeeba;
  102. }
  103. .hljs-deletion {
  104. background: #ffc8bd;
  105. }
  106. .diff .hljs-change {
  107. background: #bccff9;
  108. }