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.

89 lines
1.1KB

  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: 0.5em;
  12. background: #eee; color: black;
  13. }
  14. .hljs-link,
  15. .hljs-emphasis,
  16. .hljs-attribute,
  17. .hljs-addition {
  18. color: #070;
  19. }
  20. .hljs-emphasis {
  21. font-style: italic;
  22. }
  23. .hljs-strong,
  24. .hljs-string,
  25. .hljs-deletion {
  26. color: #d14;
  27. }
  28. .hljs-strong {
  29. font-weight: bold;
  30. }
  31. .hljs-quote,
  32. .hljs-comment {
  33. color: #998;
  34. font-style: italic;
  35. }
  36. .hljs-section,
  37. .hljs-title {
  38. color: #900;
  39. }
  40. .hljs-class .hljs-title,
  41. .hljs-type {
  42. color: #458;
  43. }
  44. .hljs-variable,
  45. .hljs-template-variable {
  46. color: #336699;
  47. }
  48. .hljs-bullet {
  49. color: #997700;
  50. }
  51. .hljs-meta {
  52. color: #3344bb;
  53. }
  54. .hljs-code,
  55. .hljs-number,
  56. .hljs-literal,
  57. .hljs-keyword,
  58. .hljs-selector-tag {
  59. color: #099;
  60. }
  61. .hljs-regexp {
  62. background-color: #fff0ff;
  63. color: #880088;
  64. }
  65. .hljs-symbol {
  66. color: #990073;
  67. }
  68. .hljs-tag,
  69. .hljs-name,
  70. .hljs-selector-id,
  71. .hljs-selector-class {
  72. color: #007700;
  73. }