idea.css 1.6 KB

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