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