foundation.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. color: #997700;
  62. }
  63. .hljs-pi,
  64. .hljs-doctype {
  65. color: #3344bb;
  66. }
  67. .hljs-code,
  68. .hljs-number {
  69. color: #099;
  70. }
  71. .hljs-important {
  72. color: #f00;
  73. }
  74. .smartquote,
  75. .hljs-label {
  76. color: #970;
  77. }
  78. .hljs-preprocessor,
  79. .hljs-pragma {
  80. color: #579;
  81. }
  82. .hljs-reserved,
  83. .hljs-keyword,
  84. .scss .hljs-value {
  85. color: #000;
  86. }
  87. .hljs-regexp {
  88. background-color: #fff0ff;
  89. color: #880088;
  90. }
  91. .hljs-symbol {
  92. color: #990073;
  93. }
  94. .hljs-symbol .hljs-string {
  95. color: #a60;
  96. }
  97. .hljs-tag {
  98. color: #007700;
  99. }
  100. .hljs-at_rule,
  101. .hljs-at_rule .hljs-keyword {
  102. color: #088;
  103. }
  104. .hljs-at_rule .hljs-preprocessor {
  105. color: #808;
  106. }
  107. .scss .hljs-tag,
  108. .scss .hljs-attribute {
  109. color: #339;
  110. }