magula.css 890 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. Description: Magula style for highligh.js
  3. Author: Ruslan Keba <rukeba@gmail.com>
  4. Website: http://rukeba.com/
  5. Version: 1.0
  6. Date: 2009-01-03
  7. Music: Aphex Twin / Xtal
  8. */
  9. .hljs {
  10. display: block;
  11. overflow-x: auto;
  12. padding: .5em;
  13. background-color: #f4f4f4;
  14. }
  15. .hljs, .hljs-subst {
  16. color: black;
  17. }
  18. .hljs-string, .hljs-title, .hljs-symbol, .hljs-bullet, .hljs-attribute, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
  19. color: #050;
  20. }
  21. .hljs-comment, .hljs-quote {
  22. color: #777;
  23. }
  24. .hljs-number, .hljs-regexp, .hljs-literal, .hljs-type, .hljs-link {
  25. color: #800;
  26. }
  27. .hljs-deletion, .hljs-meta {
  28. color: #00e;
  29. }
  30. .hljs-keyword, .hljs-selector-tag, .hljs-doctag, .hljs-title, .hljs-section, .hljs-built_in, .hljs-tag, .hljs-name {
  31. font-weight: bold;
  32. color: navy;
  33. }
  34. .hljs-emphasis {
  35. font-style: italic;
  36. }
  37. .hljs-strong {
  38. font-weight: bold;
  39. }