ascetic.css 590 B

1234567891011121314151617181920212223242526272829
  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: .5em;
  8. background: white;
  9. color: black;
  10. }
  11. .hljs-string, .hljs-variable, .hljs-template-variable, .hljs-symbol, .hljs-bullet, .hljs-section, .hljs-addition, .hljs-attribute, .hljs-link {
  12. color: #888;
  13. }
  14. .hljs-comment, .hljs-quote, .hljs-meta, .hljs-deletion {
  15. color: #ccc;
  16. }
  17. .hljs-keyword, .hljs-selector-tag, .hljs-section, .hljs-name, .hljs-type, .hljs-strong {
  18. font-weight: bold;
  19. }
  20. .hljs-emphasis {
  21. font-style: italic;
  22. }