foundation.css 1.5 KB

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