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.

136 lines
1.6 KiB

  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;
  13. -webkit-text-size-adjust: none;
  14. }
  15. .hljs-header,
  16. .hljs-decorator,
  17. .hljs-annotation {
  18. color: #000077;
  19. }
  20. .hljs-horizontal_rule,
  21. .hljs-link_url,
  22. .hljs-emphasis,
  23. .hljs-attribute {
  24. color: #070;
  25. }
  26. .hljs-emphasis {
  27. font-style: italic;
  28. }
  29. .hljs-link_label,
  30. .hljs-strong,
  31. .hljs-value,
  32. .hljs-string,
  33. .scss .hljs-value .hljs-string {
  34. color: #d14;
  35. }
  36. .hljs-strong {
  37. font-weight: bold;
  38. }
  39. .hljs-blockquote,
  40. .hljs-comment {
  41. color: #998;
  42. font-style: italic;
  43. }
  44. .asciidoc .hljs-title,
  45. .hljs-function .hljs-title {
  46. color: #900;
  47. }
  48. .hljs-class {
  49. color: #458;
  50. }
  51. .hljs-id,
  52. .hljs-pseudo,
  53. .hljs-constant,
  54. .hljs-hexcolor {
  55. color: teal;
  56. }
  57. .hljs-variable {
  58. color: #336699;
  59. }
  60. .hljs-bullet,
  61. .hljs-javadoc {
  62. color: #997700;
  63. }
  64. .hljs-pi,
  65. .hljs-doctype {
  66. color: #3344bb;
  67. }
  68. .hljs-code,
  69. .hljs-number {
  70. color: #099;
  71. }
  72. .hljs-important {
  73. color: #f00;
  74. }
  75. .smartquote,
  76. .hljs-label {
  77. color: #970;
  78. }
  79. .hljs-preprocessor,
  80. .hljs-pragma {
  81. color: #579;
  82. }
  83. .hljs-reserved,
  84. .hljs-keyword,
  85. .scss .hljs-value {
  86. color: #000;
  87. }
  88. .hljs-regexp {
  89. background-color: #fff0ff;
  90. color: #880088;
  91. }
  92. .hljs-symbol {
  93. color: #990073;
  94. }
  95. .hljs-symbol .hljs-string {
  96. color: #a60;
  97. }
  98. .hljs-tag {
  99. color: #007700;
  100. }
  101. .hljs-at_rule,
  102. .hljs-at_rule .hljs-keyword {
  103. color: #088;
  104. }
  105. .hljs-at_rule .hljs-preprocessor {
  106. color: #808;
  107. }
  108. .scss .hljs-tag,
  109. .scss .hljs-attribute {
  110. color: #339;
  111. }