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.

46 lines
591B

  1. /*
  2. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: white;
  9. color: black;
  10. }
  11. .hljs-string,
  12. .hljs-variable,
  13. .hljs-template-variable,
  14. .hljs-symbol,
  15. .hljs-bullet,
  16. .hljs-section,
  17. .hljs-addition,
  18. .hljs-attribute,
  19. .hljs-link {
  20. color: #888;
  21. }
  22. .hljs-comment,
  23. .hljs-quote,
  24. .hljs-meta,
  25. .hljs-deletion {
  26. color: #ccc;
  27. }
  28. .hljs-keyword,
  29. .hljs-selector-tag,
  30. .hljs-section,
  31. .hljs-name,
  32. .hljs-type,
  33. .hljs-strong {
  34. font-weight: bold;
  35. }
  36. .hljs-emphasis {
  37. font-style: italic;
  38. }