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.

74 lines
852B

  1. /*
  2. Date: 17.V.2011
  3. Author: pumbur <pumbur@pumbur.net>
  4. */
  5. .hljs {
  6. display: block;
  7. overflow-x: auto;
  8. padding: 0.5em;
  9. background: #222;
  10. }
  11. .hljs,
  12. .hljs-subst {
  13. color: #aaa;
  14. }
  15. .hljs-section {
  16. color: #fff;
  17. }
  18. .hljs-comment,
  19. .hljs-quote,
  20. .hljs-meta {
  21. color: #444;
  22. }
  23. .hljs-string,
  24. .hljs-symbol,
  25. .hljs-bullet,
  26. .hljs-regexp {
  27. color: #ffcc33;
  28. }
  29. .hljs-number,
  30. .hljs-addition {
  31. color: #00cc66;
  32. }
  33. .hljs-built_in,
  34. .hljs-builtin-name,
  35. .hljs-literal,
  36. .hljs-type,
  37. .hljs-template-variable,
  38. .hljs-attribute,
  39. .hljs-link {
  40. color: #32aaee;
  41. }
  42. .hljs-keyword,
  43. .hljs-selector-tag,
  44. .hljs-name,
  45. .hljs-selector-id,
  46. .hljs-selector-class {
  47. color: #6644aa;
  48. }
  49. .hljs-title,
  50. .hljs-variable,
  51. .hljs-deletion,
  52. .hljs-template-tag {
  53. color: #bb1166;
  54. }
  55. .hljs-section,
  56. .hljs-doctag,
  57. .hljs-strong {
  58. font-weight: bold;
  59. }
  60. .hljs-emphasis {
  61. font-style: italic;
  62. }