You are here

docco.css in DXPR GridStack 7

/*--------------------- Typography ----------------------------*/

@font-face {
    font-family: 'aller-light';
    src: url('public/fonts/aller-light.eot');
    src: url('public/fonts/aller-light.eot?#iefix') format('embedded-opentype'),
         url('public/fonts/aller-light.woff') format('woff'),
         url('public/fonts/aller-light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'aller-bold';
    src: url('public/fonts/aller-bold.eot');
    src: url('public/fonts/aller-bold.eot?#iefix') format('embedded-opentype'),
         url('public/fonts/aller-bold.woff') format('woff'),
         url('public/fonts/aller-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto-black';
    src: url('public/fonts/roboto-black.eot');
    src: url('public/fonts/roboto-black.eot?#iefix') format('embedded-opentype'),
         url('public/fonts/roboto-black.woff') format('woff'),
         url('public/fonts/roboto-black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*--------------------- Layout ----------------------------*/
html { height: 100%; }
body {
  font-family: "aller-light";
  font-size: 14px;
  line-height: 18px;
  color: #30404f;
  margin: 0; padding: 0;
  height:100%;
}
#container { min-height: 100%; }

a {
  color: #000;
}

b, strong {
  font-weight: normal;
  font-family: "aller-bold";
}

p {
  margin: 15px 0 0px;
}
  .annotation ul, .annotation ol {
    margin: 25px 0;
  }
    .annotation ul li, .annotation ol li {
      font-size: 14px;
      line-height: 18px;
      margin: 10px 0;
    }

h1, h2, h3, h4, h5, h6 {
  color: #112233;
  line-height: 1em;
  font-weight: normal;
  font-family: "roboto-black";
  text-transform: uppercase;
  margin: 30px 0 15px 0;
}

h1 {
  margin-top: 40px;
}
h2 {
  font-size: 1.26em;
}

hr {
  border: 0;
  background: 1px #ddd;
  height: 1px;
  margin: 20px 0;
}

pre, tt, code {
  font-size: 12px; line-height: 16px;
  font-family: Menlo, Monaco, Consolas, "Lucida Console", monospace;
  margin: 0; padding: 0;
}
  .annotation pre {
    display: block;
    margin: 0;
    padding: 7px 10px;
    background: #fcfcfc;
    -moz-box-shadow:    inset 0 0 10px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    box-shadow:         inset 0 0 10px rgba(0,0,0,0.1);
    overflow-x: auto;
  }
    .annotation pre code {
      border: 0;
      padding: 0;
      background: transparent;
    }


blockquote {
  border-left: 5px solid #ccc;
  margin: 0;
  padding: 1px 0 1px 1em;
}
  .sections blockquote p {
    font-family: Menlo, Consolas, Monaco, monospace;
    font-size: 12px; line-height: 16px;
    color: #999;
    margin: 10px 0 0;
    white-space: pre-wrap;
  }

ul.sections {
  list-style: none;
  padding:0 0 5px 0;;
  margin:0;
}

/*
  Force border-box so that % widths fit the parent
  container without overlap because of margin/padding.

  More Info : http://www.quirksmode.org/css/box.html
*/
ul.sections > li > div {
  -moz-box-sizing: border-box;    /* firefox */
  -ms-box-sizing: border-box;     /* ie */
  -webkit-box-sizing: border-box; /* webkit */
  -khtml-box-sizing: border-box;  /* konqueror */
  box-sizing: border-box;         /* css3 */
}


/*---------------------- Jump Page -----------------------------*/
#jump_to, #jump_page {
  margin: 0;
  background: white;
  -webkit-box-shadow: 0 0 25px #777; -moz-box-shadow: 0 0 25px #777;
  -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px;
  font: 16px Arial;
  cursor: pointer;
  text-align: right;
  list-style: none;
}

#jump_to a {
  text-decoration: none;
}

#jump_to a.large {
  display: none;
}
#jump_to a.small {
  font-size: 22px;
  font-weight: bold;
  color: #676767;
}

#jump_to, #jump_wrapper {
  position: fixed;
  right: 0; top: 0;
  padding: 10px 15px;
  margin:0;
}

#jump_wrapper {
  display: none;
  padding:0;
}

#jump_to:hover #jump_wrapper {
  display: block;
}

#jump_page_wrapper{
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
}

#jump_page {
  padding: 5px 0 3px;
  margin: 0 0 25px 25px;
  max-height: 100%;
  overflow: auto;
}

#jump_page .source {
  display: block;
  padding: 15px;
  text-decoration: none;
  border-top: 1px solid #eee;
}

#jump_page .source:hover {
  background: #f5f5ff;
}

#jump_page .source:first-child {
}

/*---------------------- Low resolutions (> 320px) ---------------------*/
@media only screen and (min-width: 320px) {
  .pilwrap { display: none; }

  ul.sections > li > div {
    display: block;
    padding:5px 10px 0 10px;
  }

  ul.sections > li > div.annotation ul, ul.sections > li > div.annotation ol {
    padding-left: 30px;
  }

  ul.sections > li > div.content {
    overflow-x:auto;
    -webkit-box-shadow: inset 0 0 5px #e5e5ee;
    box-shadow: inset 0 0 5px #e5e5ee;
    border: 1px solid #dedede;
    margin:5px 10px 5px 10px;
    padding-bottom: 5px;
  }

  ul.sections > li > div.annotation pre {
    margin: 7px 0 7px;
    padding-left: 15px;
  }

  ul.sections > li > div.annotation p tt, .annotation code {
    background: #f8f8ff;
    border: 1px solid #dedede;
    font-size: 12px;
    padding: 0 0.2em;
  }
}

/*----------------------  (> 481px) ---------------------*/
@media only screen and (min-width: 481px) {
  #container {
    position: relative;
  }
  body {
    background-color: #F5F5FF;
    font-size: 15px;
    line-height: 21px;
  }
  pre, tt, code {
    line-height: 18px;
  }
  p, ul, ol {
    margin: 0 0 15px;
  }


  #jump_to {
    padding: 5px 10px;
  }
  #jump_wrapper {
    padding: 0;
  }
  #jump_to, #jump_page {
    font: 10px Arial;
    text-transform: uppercase;
  }
  #jump_page .source {
    padding: 5px 10px;
  }
  #jump_to a.large {
    display: inline-block;
  }
  #jump_to a.small {
    display: none;
  }



  #background {
    position: absolute;
    top: 0; bottom: 0;
    width: 350px;
    background: #fff;
    border-right: 1px solid #e5e5ee;
    z-index: -1;
  }

  ul.sections > li > div.annotation ul, ul.sections > li > div.annotation ol {
    padding-left: 40px;
  }

  ul.sections > li {
    white-space: nowrap;
  }

  ul.sections > li > div {
    display: inline-block;
  }

  ul.sections > li > div.annotation {
    max-width: 350px;
    min-width: 350px;
    min-height: 5px;
    padding: 13px;
    overflow-x: hidden;
    white-space: normal;
    vertical-align: top;
    text-align: left;
  }
  ul.sections > li > div.annotation pre {
    margin: 15px 0 15px;
    padding-left: 15px;
  }

  ul.sections > li > div.content {
    padding: 13px;
    vertical-align: top;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .pilwrap {
    position: relative;
    display: inline;
  }

  .pilcrow {
    font: 12px Arial;
    text-decoration: none;
    color: #454545;
    position: absolute;
    top: 3px; left: -20px;
    padding: 1px 2px;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
  }
    .for-h1 .pilcrow {
      top: 47px;
    }
    .for-h2 .pilcrow, .for-h3 .pilcrow, .for-h4 .pilcrow {
      top: 35px;
    }

  ul.sections > li > div.annotation:hover .pilcrow {
    opacity: 1;
  }
}

/*---------------------- (> 1025px) ---------------------*/
@media only screen and (min-width: 1025px) {

  body {
    font-size: 16px;
    line-height: 24px;
  }

  #background {
    width: 525px;
  }
  ul.sections > li > div.annotation {
    max-width: 525px;
    min-width: 525px;
    padding: 10px 25px 1px 50px;
  }
  ul.sections > li > div.content {
    padding: 9px 15px 16px 25px;
  }
}

/*---------------------- Syntax Highlighting -----------------------------*/

td.linenos { background-color: #f0f0f0; padding-right: 10px; }
span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; }
/*

github.com style (c) Vasily Polovnyov <vast@whiteants.net>

*/

pre code {
  display: block; padding: 0.5em;
  color: #000;
  background: #f8f8ff
}

pre .hljs-comment,
pre .hljs-template_comment,
pre .hljs-diff .hljs-header,
pre .hljs-javadoc {
  color: #408080;
  font-style: italic
}

pre .hljs-keyword,
pre .hljs-assignment,
pre .hljs-literal,
pre .hljs-css .hljs-rule .hljs-keyword,
pre .hljs-winutils,
pre .hljs-javascript .hljs-title,
pre .hljs-lisp .hljs-title,
pre .hljs-subst {
  color: #954121;
  /*font-weight: bold*/
}

pre .hljs-number,
pre .hljs-hexcolor {
  color: #40a070
}

pre .hljs-string,
pre .hljs-tag .hljs-value,
pre .hljs-phpdoc,
pre .hljs-tex .hljs-formula {
  color: #219161;
}

pre .hljs-title,
pre .hljs-id {
  color: #19469D;
}
pre .hljs-params {
  color: #00F;
}

pre .hljs-javascript .hljs-title,
pre .hljs-lisp .hljs-title,
pre .hljs-subst {
  font-weight: normal
}

pre .hljs-class .hljs-title,
pre .hljs-haskell .hljs-label,
pre .hljs-tex .hljs-command {
  color: #458;
  font-weight: bold
}

pre .hljs-tag,
pre .hljs-tag .hljs-title,
pre .hljs-rules .hljs-property,
pre .hljs-django .hljs-tag .hljs-keyword {
  color: #000080;
  font-weight: normal
}

pre .hljs-attribute,
pre .hljs-variable,
pre .hljs-instancevar,
pre .hljs-lisp .hljs-body {
  color: #008080
}

pre .hljs-regexp {
  color: #B68
}

pre .hljs-class {
  color: #458;
  font-weight: bold
}

pre .hljs-symbol,
pre .hljs-ruby .hljs-symbol .hljs-string,
pre .hljs-ruby .hljs-symbol .hljs-keyword,
pre .hljs-ruby .hljs-symbol .hljs-keymethods,
pre .hljs-lisp .hljs-keyword,
pre .hljs-tex .hljs-special,
pre .hljs-input_number {
  color: #990073
}

pre .hljs-builtin,
pre .hljs-constructor,
pre .hljs-built_in,
pre .hljs-lisp .hljs-title {
  color: #0086b3
}

pre .hljs-preprocessor,
pre .hljs-pi,
pre .hljs-doctype,
pre .hljs-shebang,
pre .hljs-cdata {
  color: #999;
  font-weight: bold
}

pre .hljs-deletion {
  background: #fdd
}

pre .hljs-addition {
  background: #dfd
}

pre .hljs-diff .hljs-change {
  background: #0086b3
}

pre .hljs-chunk {
  color: #aaa
}

pre .hljs-tex .hljs-formula {
  opacity: 0.5;
}

File

vendor/underscore/docs/docco.css
View source
  1. /*--------------------- Typography ----------------------------*/
  2. @font-face {
  3. font-family: 'aller-light';
  4. src: url('public/fonts/aller-light.eot');
  5. src: url('public/fonts/aller-light.eot?#iefix') format('embedded-opentype'),
  6. url('public/fonts/aller-light.woff') format('woff'),
  7. url('public/fonts/aller-light.ttf') format('truetype');
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. @font-face {
  12. font-family: 'aller-bold';
  13. src: url('public/fonts/aller-bold.eot');
  14. src: url('public/fonts/aller-bold.eot?#iefix') format('embedded-opentype'),
  15. url('public/fonts/aller-bold.woff') format('woff'),
  16. url('public/fonts/aller-bold.ttf') format('truetype');
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. @font-face {
  21. font-family: 'roboto-black';
  22. src: url('public/fonts/roboto-black.eot');
  23. src: url('public/fonts/roboto-black.eot?#iefix') format('embedded-opentype'),
  24. url('public/fonts/roboto-black.woff') format('woff'),
  25. url('public/fonts/roboto-black.ttf') format('truetype');
  26. font-weight: normal;
  27. font-style: normal;
  28. }
  29. /*--------------------- Layout ----------------------------*/
  30. html { height: 100%; }
  31. body {
  32. font-family: "aller-light";
  33. font-size: 14px;
  34. line-height: 18px;
  35. color: #30404f;
  36. margin: 0; padding: 0;
  37. height:100%;
  38. }
  39. #container { min-height: 100%; }
  40. a {
  41. color: #000;
  42. }
  43. b, strong {
  44. font-weight: normal;
  45. font-family: "aller-bold";
  46. }
  47. p {
  48. margin: 15px 0 0px;
  49. }
  50. .annotation ul, .annotation ol {
  51. margin: 25px 0;
  52. }
  53. .annotation ul li, .annotation ol li {
  54. font-size: 14px;
  55. line-height: 18px;
  56. margin: 10px 0;
  57. }
  58. h1, h2, h3, h4, h5, h6 {
  59. color: #112233;
  60. line-height: 1em;
  61. font-weight: normal;
  62. font-family: "roboto-black";
  63. text-transform: uppercase;
  64. margin: 30px 0 15px 0;
  65. }
  66. h1 {
  67. margin-top: 40px;
  68. }
  69. h2 {
  70. font-size: 1.26em;
  71. }
  72. hr {
  73. border: 0;
  74. background: 1px #ddd;
  75. height: 1px;
  76. margin: 20px 0;
  77. }
  78. pre, tt, code {
  79. font-size: 12px; line-height: 16px;
  80. font-family: Menlo, Monaco, Consolas, "Lucida Console", monospace;
  81. margin: 0; padding: 0;
  82. }
  83. .annotation pre {
  84. display: block;
  85. margin: 0;
  86. padding: 7px 10px;
  87. background: #fcfcfc;
  88. -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  89. -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  90. box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  91. overflow-x: auto;
  92. }
  93. .annotation pre code {
  94. border: 0;
  95. padding: 0;
  96. background: transparent;
  97. }
  98. blockquote {
  99. border-left: 5px solid #ccc;
  100. margin: 0;
  101. padding: 1px 0 1px 1em;
  102. }
  103. .sections blockquote p {
  104. font-family: Menlo, Consolas, Monaco, monospace;
  105. font-size: 12px; line-height: 16px;
  106. color: #999;
  107. margin: 10px 0 0;
  108. white-space: pre-wrap;
  109. }
  110. ul.sections {
  111. list-style: none;
  112. padding:0 0 5px 0;;
  113. margin:0;
  114. }
  115. /*
  116. Force border-box so that % widths fit the parent
  117. container without overlap because of margin/padding.
  118. More Info : http://www.quirksmode.org/css/box.html
  119. */
  120. ul.sections > li > div {
  121. -moz-box-sizing: border-box; /* firefox */
  122. -ms-box-sizing: border-box; /* ie */
  123. -webkit-box-sizing: border-box; /* webkit */
  124. -khtml-box-sizing: border-box; /* konqueror */
  125. box-sizing: border-box; /* css3 */
  126. }
  127. /*---------------------- Jump Page -----------------------------*/
  128. #jump_to, #jump_page {
  129. margin: 0;
  130. background: white;
  131. -webkit-box-shadow: 0 0 25px #777; -moz-box-shadow: 0 0 25px #777;
  132. -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px;
  133. font: 16px Arial;
  134. cursor: pointer;
  135. text-align: right;
  136. list-style: none;
  137. }
  138. #jump_to a {
  139. text-decoration: none;
  140. }
  141. #jump_to a.large {
  142. display: none;
  143. }
  144. #jump_to a.small {
  145. font-size: 22px;
  146. font-weight: bold;
  147. color: #676767;
  148. }
  149. #jump_to, #jump_wrapper {
  150. position: fixed;
  151. right: 0; top: 0;
  152. padding: 10px 15px;
  153. margin:0;
  154. }
  155. #jump_wrapper {
  156. display: none;
  157. padding:0;
  158. }
  159. #jump_to:hover #jump_wrapper {
  160. display: block;
  161. }
  162. #jump_page_wrapper{
  163. position: fixed;
  164. right: 0;
  165. top: 0;
  166. bottom: 0;
  167. }
  168. #jump_page {
  169. padding: 5px 0 3px;
  170. margin: 0 0 25px 25px;
  171. max-height: 100%;
  172. overflow: auto;
  173. }
  174. #jump_page .source {
  175. display: block;
  176. padding: 15px;
  177. text-decoration: none;
  178. border-top: 1px solid #eee;
  179. }
  180. #jump_page .source:hover {
  181. background: #f5f5ff;
  182. }
  183. #jump_page .source:first-child {
  184. }
  185. /*---------------------- Low resolutions (> 320px) ---------------------*/
  186. @media only screen and (min-width: 320px) {
  187. .pilwrap { display: none; }
  188. ul.sections > li > div {
  189. display: block;
  190. padding:5px 10px 0 10px;
  191. }
  192. ul.sections > li > div.annotation ul, ul.sections > li > div.annotation ol {
  193. padding-left: 30px;
  194. }
  195. ul.sections > li > div.content {
  196. overflow-x:auto;
  197. -webkit-box-shadow: inset 0 0 5px #e5e5ee;
  198. box-shadow: inset 0 0 5px #e5e5ee;
  199. border: 1px solid #dedede;
  200. margin:5px 10px 5px 10px;
  201. padding-bottom: 5px;
  202. }
  203. ul.sections > li > div.annotation pre {
  204. margin: 7px 0 7px;
  205. padding-left: 15px;
  206. }
  207. ul.sections > li > div.annotation p tt, .annotation code {
  208. background: #f8f8ff;
  209. border: 1px solid #dedede;
  210. font-size: 12px;
  211. padding: 0 0.2em;
  212. }
  213. }
  214. /*---------------------- (> 481px) ---------------------*/
  215. @media only screen and (min-width: 481px) {
  216. #container {
  217. position: relative;
  218. }
  219. body {
  220. background-color: #F5F5FF;
  221. font-size: 15px;
  222. line-height: 21px;
  223. }
  224. pre, tt, code {
  225. line-height: 18px;
  226. }
  227. p, ul, ol {
  228. margin: 0 0 15px;
  229. }
  230. #jump_to {
  231. padding: 5px 10px;
  232. }
  233. #jump_wrapper {
  234. padding: 0;
  235. }
  236. #jump_to, #jump_page {
  237. font: 10px Arial;
  238. text-transform: uppercase;
  239. }
  240. #jump_page .source {
  241. padding: 5px 10px;
  242. }
  243. #jump_to a.large {
  244. display: inline-block;
  245. }
  246. #jump_to a.small {
  247. display: none;
  248. }
  249. #background {
  250. position: absolute;
  251. top: 0; bottom: 0;
  252. width: 350px;
  253. background: #fff;
  254. border-right: 1px solid #e5e5ee;
  255. z-index: -1;
  256. }
  257. ul.sections > li > div.annotation ul, ul.sections > li > div.annotation ol {
  258. padding-left: 40px;
  259. }
  260. ul.sections > li {
  261. white-space: nowrap;
  262. }
  263. ul.sections > li > div {
  264. display: inline-block;
  265. }
  266. ul.sections > li > div.annotation {
  267. max-width: 350px;
  268. min-width: 350px;
  269. min-height: 5px;
  270. padding: 13px;
  271. overflow-x: hidden;
  272. white-space: normal;
  273. vertical-align: top;
  274. text-align: left;
  275. }
  276. ul.sections > li > div.annotation pre {
  277. margin: 15px 0 15px;
  278. padding-left: 15px;
  279. }
  280. ul.sections > li > div.content {
  281. padding: 13px;
  282. vertical-align: top;
  283. border: none;
  284. -webkit-box-shadow: none;
  285. box-shadow: none;
  286. }
  287. .pilwrap {
  288. position: relative;
  289. display: inline;
  290. }
  291. .pilcrow {
  292. font: 12px Arial;
  293. text-decoration: none;
  294. color: #454545;
  295. position: absolute;
  296. top: 3px; left: -20px;
  297. padding: 1px 2px;
  298. opacity: 0;
  299. -webkit-transition: opacity 0.2s linear;
  300. }
  301. .for-h1 .pilcrow {
  302. top: 47px;
  303. }
  304. .for-h2 .pilcrow, .for-h3 .pilcrow, .for-h4 .pilcrow {
  305. top: 35px;
  306. }
  307. ul.sections > li > div.annotation:hover .pilcrow {
  308. opacity: 1;
  309. }
  310. }
  311. /*---------------------- (> 1025px) ---------------------*/
  312. @media only screen and (min-width: 1025px) {
  313. body {
  314. font-size: 16px;
  315. line-height: 24px;
  316. }
  317. #background {
  318. width: 525px;
  319. }
  320. ul.sections > li > div.annotation {
  321. max-width: 525px;
  322. min-width: 525px;
  323. padding: 10px 25px 1px 50px;
  324. }
  325. ul.sections > li > div.content {
  326. padding: 9px 15px 16px 25px;
  327. }
  328. }
  329. /*---------------------- Syntax Highlighting -----------------------------*/
  330. td.linenos { background-color: #f0f0f0; padding-right: 10px; }
  331. span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; }
  332. /*
  333. github.com style (c) Vasily Polovnyov
  334. */
  335. pre code {
  336. display: block; padding: 0.5em;
  337. color: #000;
  338. background: #f8f8ff
  339. }
  340. pre .hljs-comment,
  341. pre .hljs-template_comment,
  342. pre .hljs-diff .hljs-header,
  343. pre .hljs-javadoc {
  344. color: #408080;
  345. font-style: italic
  346. }
  347. pre .hljs-keyword,
  348. pre .hljs-assignment,
  349. pre .hljs-literal,
  350. pre .hljs-css .hljs-rule .hljs-keyword,
  351. pre .hljs-winutils,
  352. pre .hljs-javascript .hljs-title,
  353. pre .hljs-lisp .hljs-title,
  354. pre .hljs-subst {
  355. color: #954121;
  356. /*font-weight: bold*/
  357. }
  358. pre .hljs-number,
  359. pre .hljs-hexcolor {
  360. color: #40a070
  361. }
  362. pre .hljs-string,
  363. pre .hljs-tag .hljs-value,
  364. pre .hljs-phpdoc,
  365. pre .hljs-tex .hljs-formula {
  366. color: #219161;
  367. }
  368. pre .hljs-title,
  369. pre .hljs-id {
  370. color: #19469D;
  371. }
  372. pre .hljs-params {
  373. color: #00F;
  374. }
  375. pre .hljs-javascript .hljs-title,
  376. pre .hljs-lisp .hljs-title,
  377. pre .hljs-subst {
  378. font-weight: normal
  379. }
  380. pre .hljs-class .hljs-title,
  381. pre .hljs-haskell .hljs-label,
  382. pre .hljs-tex .hljs-command {
  383. color: #458;
  384. font-weight: bold
  385. }
  386. pre .hljs-tag,
  387. pre .hljs-tag .hljs-title,
  388. pre .hljs-rules .hljs-property,
  389. pre .hljs-django .hljs-tag .hljs-keyword {
  390. color: #000080;
  391. font-weight: normal
  392. }
  393. pre .hljs-attribute,
  394. pre .hljs-variable,
  395. pre .hljs-instancevar,
  396. pre .hljs-lisp .hljs-body {
  397. color: #008080
  398. }
  399. pre .hljs-regexp {
  400. color: #B68
  401. }
  402. pre .hljs-class {
  403. color: #458;
  404. font-weight: bold
  405. }
  406. pre .hljs-symbol,
  407. pre .hljs-ruby .hljs-symbol .hljs-string,
  408. pre .hljs-ruby .hljs-symbol .hljs-keyword,
  409. pre .hljs-ruby .hljs-symbol .hljs-keymethods,
  410. pre .hljs-lisp .hljs-keyword,
  411. pre .hljs-tex .hljs-special,
  412. pre .hljs-input_number {
  413. color: #990073
  414. }
  415. pre .hljs-builtin,
  416. pre .hljs-constructor,
  417. pre .hljs-built_in,
  418. pre .hljs-lisp .hljs-title {
  419. color: #0086b3
  420. }
  421. pre .hljs-preprocessor,
  422. pre .hljs-pi,
  423. pre .hljs-doctype,
  424. pre .hljs-shebang,
  425. pre .hljs-cdata {
  426. color: #999;
  427. font-weight: bold
  428. }
  429. pre .hljs-deletion {
  430. background: #fdd
  431. }
  432. pre .hljs-addition {
  433. background: #dfd
  434. }
  435. pre .hljs-diff .hljs-change {
  436. background: #0086b3
  437. }
  438. pre .hljs-chunk {
  439. color: #aaa
  440. }
  441. pre .hljs-tex .hljs-formula {
  442. opacity: 0.5;
  443. }