highlight.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. .php-hl-default {
  2. color: Black;
  3. }
  4. .php-hl-code {
  5. color: Gray;
  6. }
  7. .php-hl-brackets {
  8. color: Olive;
  9. }
  10. .php-hl-comment {
  11. color: #808080;
  12. font-style: italic;
  13. }
  14. .php-hl-quotes {
  15. color: red;
  16. }
  17. .php-hl-string {
  18. color: Red;
  19. }
  20. .php-hl-identifier {
  21. color: green;
  22. }
  23. .php-hl-builtin {
  24. color: Teal;
  25. }
  26. .php-hl-reserved {
  27. color: black;
  28. font-weight: bold;
  29. }
  30. .php-hl-inlinedoc {
  31. color: Blue;
  32. }
  33. .php-hl-var {
  34. color: blue;
  35. }
  36. .php-hl-url {
  37. color: Blue;
  38. }
  39. .php-hl-special {
  40. color: Navy;
  41. }
  42. .php-hl-number {
  43. color: Maroon;
  44. }
  45. .php-hl-inlinetags {
  46. color: Blue;
  47. }
  48. .php-hl-main {
  49. font-family: 'Courier New', Courier, monospace;
  50. font-weight: normal;
  51. font-size: 12px;
  52. }
  53. ol.php-hl-main pre {
  54. margin: 0;
  55. padding: 0;
  56. }
  57. .php-hl-gutter {
  58. background-color: #999999;
  59. color: White
  60. }
  61. .php-hl-table {
  62. font-family: courier;
  63. font-size: 12px;
  64. border: solid 1px #505050;
  65. }
  66. .xml-hl-default {
  67. color: Black;
  68. }
  69. .xml-hl-code {
  70. color: Gray;
  71. }
  72. .xml-hl-brackets {
  73. color: Olive;
  74. }
  75. .xml-hl-comment {
  76. color: #808080;
  77. font-style: italic;
  78. }
  79. .xml-hl-quotes {
  80. color: red;
  81. }
  82. .xml-hl-string {
  83. color: Red;
  84. }
  85. .xml-hl-identifier {
  86. color: Blue;
  87. }
  88. .xml-hl-builtin {
  89. color: Teal;
  90. }
  91. .xml-hl-reserved {
  92. color: Green;
  93. }
  94. .xml-hl-inlinedoc {
  95. color: Blue;
  96. }
  97. .xml-hl-var {
  98. color: #000020;
  99. }
  100. .xml-hl-url {
  101. color: Blue;
  102. }
  103. .xml-hl-special {
  104. color: Navy;
  105. }
  106. .xml-hl-number {
  107. color: Maroon;
  108. }
  109. .xml-hl-inlinetags {
  110. color: Blue;
  111. }
  112. .xml-hl-main {
  113. font-family: 'Courier New', Courier, monospace;
  114. font-weight: normal;
  115. }
  116. .xml-hl-gutter {
  117. background-color: #999999;
  118. color: White
  119. }
  120. .xml-hl-table {
  121. font-family: courier;
  122. font-size: 12px;
  123. border: solid 1px #505050;
  124. }
  125. .html-hl-default {
  126. color: Black;
  127. }
  128. .html-hl-code {
  129. color: Gray;
  130. }
  131. .html-hl-brackets {
  132. color: Olive;
  133. }
  134. .html-hl-comment {
  135. color: #808080;
  136. font-style: italic;
  137. }
  138. .html-hl-quotes {
  139. color: red;
  140. }
  141. .html-hl-string {
  142. color: Red;
  143. }
  144. .html-hl-identifier {
  145. color: Blue;
  146. }
  147. .html-hl-builtin {
  148. color: Teal;
  149. }
  150. .html-hl-reserved {
  151. color: Green;
  152. }
  153. .html-hl-inlinedoc {
  154. color: Blue;
  155. }
  156. .html-hl-var {
  157. color: #000020;
  158. }
  159. .html-hl-url {
  160. color: Blue;
  161. }
  162. .html-hl-special {
  163. color: Navy;
  164. }
  165. .html-hl-number {
  166. color: Maroon;
  167. }
  168. .html-hl-inlinetags {
  169. color: Blue;
  170. }
  171. .html-hl-main {
  172. font-family: 'Courier New', Courier, monospace;
  173. font-weight: normal;
  174. }
  175. .html-hl-gutter {
  176. background-color: #999999;
  177. color: White
  178. }
  179. .html-hl-table {
  180. font-family: courier;
  181. font-size: 12px;
  182. border: solid 1px #505050;
  183. }
  184. .css-hl-default {
  185. color: Black;
  186. }
  187. .css-hl-code {
  188. color: Gray;
  189. }
  190. .css-hl-brackets {
  191. color: Olive;
  192. }
  193. .css-hl-comment {
  194. color: #808080;
  195. font-style: italic;
  196. }
  197. .css-hl-quotes {
  198. color: red;
  199. }
  200. .css-hl-string {
  201. color: Red;
  202. }
  203. .css-hl-identifier {
  204. color: Blue;
  205. }
  206. .css-hl-builtin {
  207. color: Teal;
  208. }
  209. .css-hl-reserved {
  210. color: Green;
  211. }
  212. .css-hl-inlinedoc {
  213. color: Blue;
  214. }
  215. .css-hl-var {
  216. color: #000020;
  217. }
  218. .css-hl-url {
  219. color: Blue;
  220. }
  221. .css-hl-special {
  222. color: Navy;
  223. }
  224. .css-hl-number {
  225. color: Maroon;
  226. }
  227. .css-hl-inlinetags {
  228. color: Blue;
  229. }
  230. .css-hl-main {
  231. font-family: 'Courier New', Courier, monospace;
  232. font-weight: normal;
  233. }
  234. .css-hl-gutter {
  235. background-color: #999999;
  236. color: White
  237. }
  238. .css-hl-table {
  239. font-family: courier;
  240. font-size: 12px;
  241. border: solid 1px #505050;
  242. }
  243. .javascript-hl-default {
  244. color: Black;
  245. }
  246. .javascript-hl-code {
  247. color: Gray;
  248. }
  249. .javascript-hl-brackets {
  250. color: Olive;
  251. }
  252. .javascript-hl-comment {
  253. color: #808080;
  254. font-style: italic;
  255. }
  256. .javascript-hl-quotes {
  257. color: red;
  258. }
  259. .javascript-hl-string {
  260. color: Red;
  261. }
  262. .javascript-hl-identifier {
  263. color: Blue;
  264. }
  265. .javascript-hl-builtin {
  266. color: Teal;
  267. }
  268. .javascript-hl-reserved {
  269. color: Green;
  270. }
  271. .javascript-hl-inlinedoc {
  272. color: Blue;
  273. }
  274. .javascript-hl-var {
  275. color: #000020;
  276. }
  277. .javascript-hl-url {
  278. color: Blue;
  279. }
  280. .javascript-hl-special {
  281. color: Navy;
  282. }
  283. .javascript-hl-number {
  284. color: Maroon;
  285. }
  286. .javascript-hl-inlinetags {
  287. color: Blue;
  288. }
  289. .javascript-hl-main {
  290. font-family: 'Courier New', Courier, monospace;
  291. font-weight: normal;
  292. }
  293. .javascript-hl-gutter {
  294. background-color: #999999;
  295. color: White
  296. }
  297. .javascript-hl-table {
  298. font-family: courier;
  299. font-size: 12px;
  300. border: solid 1px #505050;
  301. }
  302. .sql-hl-default {
  303. color: Black;
  304. }
  305. .sql-hl-code {
  306. color: Gray;
  307. }
  308. .sql-hl-brackets {
  309. color: Olive;
  310. }
  311. .sql-hl-comment {
  312. color: #808080;
  313. font-style: italic;
  314. }
  315. .sql-hl-quotes {
  316. color: red;
  317. }
  318. .sql-hl-string {
  319. color: Red;
  320. }
  321. .sql-hl-identifier {
  322. color: Blue;
  323. }
  324. .sql-hl-builtin {
  325. color: Teal;
  326. }
  327. .sql-hl-reserved {
  328. color: Green;
  329. }
  330. .sql-hl-inlinedoc {
  331. color: Blue;
  332. }
  333. .sql-hl-var {
  334. color: #000020;
  335. }
  336. .sql-hl-url {
  337. color: Blue;
  338. }
  339. .sql-hl-special {
  340. color: Navy;
  341. }
  342. .sql-hl-number {
  343. color: Maroon;
  344. }
  345. .sql-hl-inlinetags {
  346. color: Blue;
  347. }
  348. .sql-hl-main {
  349. font-family: 'Courier New', Courier, monospace;
  350. font-weight: normal;
  351. }
  352. .sql-hl-gutter {
  353. background-color: #999999;
  354. color: White
  355. }
  356. .sql-hl-table {
  357. font-family: courier;
  358. font-size: 12px;
  359. border: solid 1px #505050;
  360. }
  361. .source .copycode
  362. {
  363. text-align: right;
  364. float: right;
  365. }
  366. .source .copycode a
  367. {
  368. cursor: pointer;
  369. color: blue;
  370. }
  371. .source .copycode_hover a
  372. {
  373. color: red;
  374. }