idea.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. color: #000;
  9. background: #fff;
  10. }
  11. .hljs-subst, .hljs-title {
  12. font-weight: normal;
  13. color: #000;
  14. }
  15. .hljs-comment, .hljs-quote {
  16. color: #808080;
  17. font-style: italic;
  18. }
  19. .hljs-meta {
  20. color: #808000;
  21. }
  22. .hljs-tag {
  23. background: #efefef;
  24. }
  25. .hljs-section, .hljs-name, .hljs-literal, .hljs-keyword, .hljs-selector-tag, .hljs-type, .hljs-selector-id, .hljs-selector-class {
  26. font-weight: bold;
  27. color: #000080;
  28. }
  29. .hljs-attribute, .hljs-number, .hljs-regexp, .hljs-link {
  30. font-weight: bold;
  31. color: #00f;
  32. }
  33. .hljs-number, .hljs-regexp, .hljs-link {
  34. font-weight: normal;
  35. }
  36. .hljs-string {
  37. color: #008000;
  38. font-weight: bold;
  39. }
  40. .hljs-symbol, .hljs-bullet, .hljs-formula {
  41. color: #000;
  42. background: #d0eded;
  43. font-style: italic;
  44. }
  45. .hljs-doctag {
  46. text-decoration: underline;
  47. }
  48. .hljs-variable, .hljs-template-variable {
  49. color: #660e7a;
  50. }
  51. .hljs-addition {
  52. background: #baeeba;
  53. }
  54. .hljs-deletion {
  55. background: #ffc8bd;
  56. }
  57. .hljs-emphasis {
  58. font-style: italic;
  59. }
  60. .hljs-strong {
  61. font-weight: bold;
  62. }