foundation.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. Description: Foundation 4 docs style for highlight.js
  3. Author: Dan Allen <dan.j.allen@gmail.com>
  4. Website: http://foundation.zurb.com/docs/
  5. Version: 1.0
  6. Date: 2013-04-02
  7. */
  8. .hljs {
  9. display: block;
  10. overflow-x: auto;
  11. padding: .5em;
  12. background: #eee;
  13. color: black;
  14. }
  15. .hljs-link, .hljs-emphasis, .hljs-attribute, .hljs-addition {
  16. color: #070;
  17. }
  18. .hljs-emphasis {
  19. font-style: italic;
  20. }
  21. .hljs-strong, .hljs-string, .hljs-deletion {
  22. color: #d14;
  23. }
  24. .hljs-strong {
  25. font-weight: bold;
  26. }
  27. .hljs-quote, .hljs-comment {
  28. color: #998;
  29. font-style: italic;
  30. }
  31. .hljs-section, .hljs-title {
  32. color: #900;
  33. }
  34. .hljs-class .hljs-title, .hljs-type {
  35. color: #458;
  36. }
  37. .hljs-variable, .hljs-template-variable {
  38. color: #369;
  39. }
  40. .hljs-bullet {
  41. color: #970;
  42. }
  43. .hljs-meta {
  44. color: #34b;
  45. }
  46. .hljs-code, .hljs-number, .hljs-literal, .hljs-keyword, .hljs-selector-tag {
  47. color: #099;
  48. }
  49. .hljs-regexp {
  50. background-color: #fff0ff;
  51. color: #808;
  52. }
  53. .hljs-symbol {
  54. color: #990073;
  55. }
  56. .hljs-tag, .hljs-name, .hljs-selector-id, .hljs-selector-class {
  57. color: #070;
  58. }