idea.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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-template_comment,
  20. .hljs-javadoc,
  21. .diff .hljs-header {
  22. color: #808080;
  23. font-style: italic;
  24. }
  25. .hljs-annotation,
  26. .hljs-decorator,
  27. .hljs-preprocessor,
  28. .hljs-pragma,
  29. .hljs-doctype,
  30. .hljs-pi,
  31. .hljs-chunk,
  32. .hljs-shebang,
  33. .apache .hljs-cbracket,
  34. .hljs-prompt,
  35. .http .hljs-title {
  36. color: #808000;
  37. }
  38. .hljs-tag,
  39. .hljs-pi {
  40. background: #efefef;
  41. }
  42. .hljs-tag .hljs-title,
  43. .hljs-id,
  44. .hljs-attr_selector,
  45. .hljs-pseudo,
  46. .hljs-literal,
  47. .hljs-keyword,
  48. .hljs-hexcolor,
  49. .css .hljs-function,
  50. .ini .hljs-title,
  51. .css .hljs-class,
  52. .hljs-list .hljs-keyword,
  53. .nginx .hljs-title,
  54. .tex .hljs-command,
  55. .hljs-request,
  56. .hljs-status {
  57. font-weight: bold;
  58. color: #000080;
  59. }
  60. .hljs-attribute,
  61. .hljs-rules .hljs-keyword,
  62. .hljs-number,
  63. .hljs-date,
  64. .hljs-regexp,
  65. .tex .hljs-special {
  66. font-weight: bold;
  67. color: #0000ff;
  68. }
  69. .hljs-number,
  70. .hljs-regexp {
  71. font-weight: normal;
  72. }
  73. .hljs-string,
  74. .hljs-value,
  75. .hljs-filter .hljs-argument,
  76. .css .hljs-function .hljs-params,
  77. .apache .hljs-tag {
  78. color: #008000;
  79. font-weight: bold;
  80. }
  81. .hljs-symbol,
  82. .ruby .hljs-symbol .hljs-string,
  83. .hljs-char,
  84. .tex .hljs-formula {
  85. color: #000;
  86. background: #d0eded;
  87. font-style: italic;
  88. }
  89. .hljs-phpdoc,
  90. .hljs-dartdoc,
  91. .hljs-yardoctag,
  92. .hljs-javadoctag {
  93. text-decoration: underline;
  94. }
  95. .hljs-variable,
  96. .hljs-envvar,
  97. .apache .hljs-sqbracket,
  98. .nginx .hljs-built_in {
  99. color: #660e7a;
  100. }
  101. .hljs-addition {
  102. background: #baeeba;
  103. }
  104. .hljs-deletion {
  105. background: #ffc8bd;
  106. }
  107. .diff .hljs-change {
  108. background: #bccff9;
  109. }