style_rmgss.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  1. /*
  2. * Sticky Footer Solution
  3. * by Steve Hatcher
  4. * http://stever.ca
  5. * http://www.cssstickyfooter.com
  6. * */
  7. @font-face{
  8. font-family:'EB Garamond';
  9. font-style:normal;
  10. font-weight:400;
  11. src:local('EB Garamond 12 Regular'), url('fonts/EBGaramond.otf') format('opentype');
  12. }
  13. @font-face{
  14. font-family:'EB Garamond';
  15. font-style:italic;
  16. font-weight:400;
  17. src:local('EB Garamond 12 Italic'), url('fonts/EBGaramond.otf') format('opentype');
  18. }
  19. * {margin:0;}
  20. /* must declare 0 margins on everything, also for main layout components use padding, not
  21. vertical margins (top and bottom) to add spacing, else those margins get added to total height
  22. and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */
  23. html, body {
  24. height: 100%;
  25. margin-left: 7px;
  26. margin-rigth: 5px;
  27. font-family: serif, georgia;
  28. font-size: 18px;
  29. /* C */
  30. background-color: #343A35;
  31. color: #C3C4C2;
  32. }
  33. body code{
  34. font-size: 15px;
  35. padding-left: 2px;
  36. padding-right: 2px;
  37. /* C */
  38. background-color: #242A25;
  39. }
  40. strong{
  41. /* C */
  42. color: #E2E9EA;
  43. }
  44. /* ----------------- */
  45. .row,.col,
  46. .row:after,.col:after,
  47. .row:before,.col:before{
  48. -webkit-box-sizing:border-box;
  49. -moz-box-sizing:border-box;
  50. box-sizing:border-box
  51. }
  52. /* clearfix */
  53. .row{*zoom:1}
  54. .row:before,
  55. .row:after{
  56. display:table;
  57. content:"";
  58. line-height:0}
  59. .row:after{clear:both}
  60. .row{
  61. padding:0;
  62. margin:0;
  63. }
  64. /* should probably put *zoom:1; here but for clarity it's separated*/
  65. ul.row,
  66. li.col{ list-style-type:none }
  67. .col{float:left}
  68. .col,
  69. .fill{
  70. width: 100%
  71. }
  72. .tc{width: 85%;}
  73. /* grid mq */
  74. /* @media (min-width:40em){ */
  75. /* .col:not(.fill){width:50%} */
  76. /* .col.third:nth-child(3), */
  77. /* .col.fifth:nth-child(5), */
  78. /* .col.fourth+div:nth-child(3).fill, */
  79. /* .col.fifth+div:nth-child(3).fill{width:100%} */
  80. /* .col+.fill{width:50%} */
  81. /* } */
  82. @media (min-width:55em){
  83. .col.half{width:50%}
  84. .col.half+.fill{width:50%}
  85. .col.third,
  86. .col.third:nth-child(3){width:33.333%}
  87. .col.third+.fill{width:66.666%}
  88. .col.fourth{width:25%}
  89. .col.fourth+.fill{width:75%}
  90. .col.fourth+div:nth-child(3).fill{width:50%;}
  91. .col.fifth,
  92. .col.fifth:nth-child(5){width:20%}
  93. .col.fifth+.fill{width:80%}
  94. .col.fifth+div:nth-child(3).fill{width:60%;}
  95. .col.fifth+div:nth-child(4).fill{width:40%;}
  96. }
  97. /* ie8 overrides - I'd suggest using conditionals with either ".ie-8 class or loading in a separate legacy stylesheet with conditionals */
  98. /* @media (min-width:30em){ */
  99. /* .row>.col{width:50%} */
  100. /* .row>.fill.col{width:100%} */
  101. /* .row>.half.col+.fill, */
  102. /* .row>.third.col+.fill, */
  103. /* .row>.fourth.col+.fill, */
  104. /* .row>.fifth.col+.fill, */
  105. /* .row>.fifth.col+div+div+.fill{width:50%} */
  106. /* .row>.fourth.col+div+.fill, */
  107. /* .row>.fifth.col+div+.fill, */
  108. /* .row>.third.col+div+div, */
  109. /* .row>.fifth.col+div+div+div+div{width:100%} */
  110. /* } */
  111. /* @media (min-width:40em){ */
  112. /* .row>.third.col, */
  113. /* .row>.third.col+div+div{width:33.333%} */
  114. /* .row>.third.col+.fill{width:66.666%} */
  115. /* .row>.fourth.col{width:25%} */
  116. /* .row>.fourth.col+.fill{width:75%} */
  117. /* .row>.fourth.col+div+.fill{width:50%} */
  118. /* .row>.fifth.col+.fill{width:80%} */
  119. /* .row>.fifth.col, */
  120. /* .row>.fifth.col+div+div+div+div{width:20%} */
  121. /* .row>.fifth.col+div+.fill{width:60%} */
  122. /* .row>.fifth.col+div+div+.fill{width:40%} */
  123. /* } */
  124. /* ----------------- */
  125. ul {
  126. margin-left: 7px;
  127. padding-left: 1.3em;
  128. line-height: 1.5em;
  129. /*list-style-type: none;*/
  130. list-style-position: outside;
  131. }
  132. div#nav_left {
  133. font-family: monospace;
  134. font-size: 12px;
  135. text-decoration: none;
  136. padding: 5px;
  137. word-wrap: break-word;
  138. margin: 10px 22px 22px 7px;
  139. border-radius: 12px;
  140. border-right-style: solid;
  141. border-right-width: 2px;
  142. border-left-style: none;
  143. border-left-width: 1px;
  144. border-top-style: solid;
  145. border-top-width: 2px;
  146. border-bottom-width: 2px;
  147. border-bottom-style: solid;
  148. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(53, 226, 234, 0.81);
  149. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(48, 201, 208, 0.81);
  150. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(57, 188, 194, 0.81);
  151. /* C */
  152. background-color: #002206;
  153. color: #B1BFA3;
  154. border-top-color: #43DDE5;
  155. border-right-color: #35E2EA;
  156. border-bottom-color: #2B4E4D;
  157. }
  158. div#nav_bottom {
  159. font-family: mono;
  160. font-size: 12px;
  161. text-decoration: none;
  162. padding: 8px;
  163. word-wrap: break-word;
  164. margin: 10px 22px 22px 7px;
  165. border-radius: 12px;
  166. border-right-style: solid;
  167. border-right-width: 2px;
  168. border-left-style: none;
  169. border-left-width: 1px;
  170. border-top-style: solid;
  171. border-top-width: 2px;
  172. border-bottom-width: 2px;
  173. border-bottom-style: solid;
  174. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(53, 226, 234, 0.81);
  175. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(48, 201, 208, 0.81);
  176. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(57, 188, 194, 0.81);
  177. /* C */
  178. background-color: #002206;
  179. color: #B1BFA3;
  180. border-top-color: #43DDE5;
  181. border-right-color: #35E2EA;
  182. border-bottom-color: #2B4E4D;
  183. }
  184. div#nav_right{
  185. font-family: mono;
  186. font-size: 12px;
  187. text-decoration: none;
  188. padding: 8px;
  189. word-wrap: break-word;
  190. margin: 150px 22px 22px 7px;
  191. border-radius: 12px;
  192. border-right-style: solid;
  193. border-right-width: 2px;
  194. border-left-style: none;
  195. border-left-width: 1px;
  196. border-top-style: solid;
  197. border-top-width: 2px;
  198. border-bottom-width: 2px;
  199. border-bottom-style: solid;
  200. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(53, 226, 234, 0.81);
  201. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(48, 201, 208, 0.81);
  202. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(57, 188, 194, 0.81);
  203. /* C */
  204. background-color: #002206;
  205. color: #B1BFA3;
  206. border-top-color: #43DDE5;
  207. border-right-color: #35E2EA;
  208. border-bottom-color: #2B4E4D;
  209. }
  210. div#nav_right a{
  211. /* C */
  212. color: #A1AD93;
  213. }
  214. div#nav_right a:hover{
  215. border-width: 2px;
  216. border-style: dashed;
  217. /* C */
  218. background-color: #27442B;
  219. border-color: #1d7d4a;
  220. }
  221. div#nav_right ul{
  222. list-style-type: none;
  223. line-height: 1.7em;
  224. margin-left: 0;
  225. word-wrap: break-word;
  226. }
  227. .vermas {
  228. border-radius: 7px;
  229. text-align: center;
  230. margin-bottom: 10px;
  231. /* C */
  232. background-color: #2C4080;
  233. }
  234. .vermas:hover {
  235. /* C */
  236. background-color: #2345B1;
  237. border-width: 2px;
  238. box-shadow: inset 0 3px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(69, 195, 64, 0.84);
  239. }
  240. div#noticia{
  241. padding: 8px;
  242. word-wrap: break-word;
  243. margin: 12px 35px 10px 7px;
  244. border-radius: 8px 8px 0px 0px;
  245. border-bottom-style: solid;
  246. border-top-style: none;
  247. border-right-style: none;
  248. border-left-style: none;
  249. border-width: 1px;
  250. /* C */
  251. border-right-color: #A2E3E1;
  252. border-top-color: #A2E3E1;
  253. border-left-color: #526341;
  254. border-bottom-color: #82A381;
  255. /* -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(157, 236, 154, 0.81); */
  256. /* -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(103, 235, 100, 0.81); */
  257. /* box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(69, 195, 64, 0.81); */
  258. }
  259. div#consejo_del_dia{
  260. margin: 12px 1px 1px 1px;
  261. padding: 4px;
  262. word-wrap: break-word;
  263. border-radius: 4px;
  264. /* border-style: dashed; */
  265. border-width: 1px;
  266. font-size: 0.8em;
  267. font-family: sans;
  268. /* C */
  269. border-color: #503BE9;
  270. }
  271. div#consejo_del_dia_bottom{
  272. margin: 12px 1px 1px 1px;
  273. padding: 4px;
  274. word-wrap: break-word;
  275. border-radius: 4px;
  276. /* border-style: dashed; */
  277. border-width: 1px;
  278. font-size: 0.8em;
  279. font-family: sans;
  280. /* C */
  281. border-color: #503BE9;
  282. }
  283. div#noticias_relacionadas { font-family: sans; font-size: 0.8em}
  284. div#noticias_relacionadas_bottom {font-family: sans; font-size: 0.9em}
  285. div#consejo_del_dia hr{
  286. /* C */
  287. background-color: #423B75;
  288. }
  289. div#side_toc {
  290. font-size: 0.64em;
  291. font-family: sans;
  292. }
  293. div#side_toc ul {
  294. margin: 7px 0px;
  295. }
  296. div#contenido{
  297. float:rigtht;
  298. width: 87;
  299. }
  300. div#wrap {
  301. min-height: 100%;
  302. padding:0 20em 0 20em;
  303. }
  304. @media screen and (max-width: 2900px) {
  305. div#wrap {
  306. padding:0 38em 0 38em;
  307. }
  308. div#nav_left {display: block;}
  309. div#nav_bottom {display: none;}
  310. div#consejo_del_dia {display: block}
  311. div#consejo_del_dia_bottom {display: none}
  312. div#noticias_relacionadas {display: block}
  313. div#noticias_relacionadas_bottom {display: none}
  314. }
  315. @media screen and (max-width: 2200px) {
  316. div#wrap {
  317. padding:0 27em 0 27em;
  318. }
  319. div#nav_left {display: block;}
  320. div#nav_bottom {display: none;}
  321. div#consejo_del_dia {display: block}
  322. div#consejo_del_dia_bottom {display: none}
  323. div#noticias_relacionadas {display: block}
  324. div#noticias_relacionadas_bottom {display: none}
  325. }
  326. @media screen and (max-width: 1800px) {
  327. div#wrap {
  328. padding:0 20em 0 20em;
  329. }
  330. div#nav_left {display: block;}
  331. div#nav_bottom {display: none;}
  332. div#consejo_del_dia {display: block}
  333. div#consejo_del_dia_bottom {display: none}
  334. div#noticias_relacionadas {display: block}
  335. div#noticias_relacionadas_bottom {display: none}
  336. }
  337. @media screen and (max-width: 1440px) {
  338. div#wrap {
  339. padding:0 13.5em 0 13.5em;
  340. }
  341. div#nav_left {display: block;}
  342. div#nav_bottom {display: none;}
  343. div#consejo_del_dia {display: block}
  344. div#consejo_del_dia_bottom {display: none}
  345. div#noticias_relacionadas {display: block}
  346. div#noticias_relacionadas_bottom {display: none}
  347. }
  348. @media screen and (max-width: 1220px) {
  349. div#wrap {
  350. padding:0 9.5em 0 9.5em;
  351. }
  352. div#nav_left {display: block;}
  353. div#nav_bottom {display: none;}
  354. div#consejo_del_dia {display: block}
  355. div#consejo_del_dia_bottom {display: none}
  356. div#noticias_relacionadas {display: block}
  357. div#noticias_relacionadas_bottom {display: none}
  358. }
  359. @media screen and (max-width: 1024px) {
  360. div#wrap {
  361. padding:0 7em 0 7em;
  362. }
  363. div#nav_left {display: block;}
  364. div#nav_bottom {display: none;}
  365. div#consejo_del_dia {display: block}
  366. div#consejo_del_dia_bottom {display: none}
  367. div#noticias_relacionadas {display: block}
  368. div#noticias_relacionadas_bottom {display: none}
  369. }
  370. @media screen and (max-width: 950px) {
  371. div#wrap {
  372. padding:0 5em 0 5em;
  373. }
  374. div#nav_left {display: none;}
  375. div#nav_bottom {display: block;}
  376. div#consejo_del_dia {display: none}
  377. div#consejo_del_dia_bottom {display: block}
  378. div#noticias_relacionadas {display: none}
  379. div#noticias_relacionadas_bottom {display: block}
  380. }
  381. @media screen and (max-width: 800px) {
  382. div#wrap {
  383. padding:0 .4em 0 .4em;
  384. }
  385. div#nav_left {display: none;}
  386. div#nav_bottom {display: block;}
  387. div#consejo_del_dia {display: none}
  388. div#consejo_del_dia_bottom {display: block}
  389. div#noticias_relacionadas {display: none}
  390. div#noticias_relacionadas_bottom {display: block}
  391. }
  392. div#nav {
  393. padding-top: 0.2%;
  394. padding-bottom: 0.2%;
  395. }
  396. div#main {
  397. overflow:auto;
  398. padding-bottom: 50px; /* must be same height as the footer */
  399. }
  400. div#home{
  401. font-size: 1.2em;
  402. padding: 5% 20%;
  403. /* C */
  404. color: #AAA;
  405. }
  406. div#footer {
  407. position: relative;
  408. margin-top: 50px; /* non negative value of footer height */
  409. height: 50px;
  410. clear:both;
  411. padding:0 2em;
  412. }
  413. div#attributes {
  414. padding: 1% 7%;
  415. }
  416. div.e-content {
  417. padding: 1% 2%;
  418. }
  419. div.output{
  420. padding: 2%;
  421. }
  422. div.highlight{
  423. padding: 2%;
  424. font-size: 11px;
  425. /* C */
  426. background-color: #111212;
  427. }
  428. h1 {
  429. font-family: 'EB Garamond', Garamond, serif;
  430. font-size: 2.9em;
  431. padding: 0 0 1% 5%;
  432. font-weight: normal;
  433. clear: both;
  434. /* C */
  435. color: #D8D9D7;
  436. }
  437. h2{
  438. font-family: 'EB Garamond', Garamond, serif;
  439. font-size: 1.85em;
  440. padding:0.5em 0;
  441. /* C */
  442. color: #D8D9D7;
  443. }
  444. h3{
  445. font-family: 'EB Garamond', Garamond, serif;
  446. font-size: 1.65em;
  447. padding:0.5em 0;
  448. /* C */
  449. color: #D8D9D7;
  450. }
  451. h4{
  452. font-family: 'EB Garamond', Garamond, serif;
  453. font-size: 1.4em;
  454. padding:0.5em 0;
  455. /* C */
  456. color: #D8D9D7;
  457. }
  458. h5{
  459. font-family: 'EB Garamond', Garamond, serif;
  460. font-size: 1.27em;
  461. padding:0.5em 0;
  462. /* C */
  463. color: #D8D9D7;
  464. }
  465. h6{
  466. font-family: 'EB Garamond', Garamond, serif;
  467. font-size: 1.16em;
  468. padding:0.5em 0;
  469. /* C */
  470. color: #D8D9D7;
  471. }
  472. p {
  473. padding:0.5em 0;
  474. }
  475. p#post-details {
  476. font-style: italic;
  477. text-align:right;
  478. font-size: 1.1em;
  479. }
  480. p.p-summary {
  481. font-style: italic;
  482. font-size: 1.2em;
  483. font-family: 'EB Garamond', Garamond, serif;
  484. }
  485. p#footer {
  486. padding-top: 15px;
  487. font-size: 0.8em;
  488. text-align: center;
  489. /* padding-left: 10%; */
  490. /* C */
  491. color: #ABC;
  492. }
  493. a {
  494. /* C */
  495. color: #56CE54;
  496. text-decoration: none;
  497. }
  498. a:visited{
  499. /* C */
  500. color: #46AE74;
  501. }
  502. a:hover{
  503. border-radius: 2px;
  504. /* C */
  505. background-color:#2DA22D;
  506. color: #C3C2D2;
  507. }
  508. .titulo_noticia{
  509. font-size: 1.35em;
  510. padding:0.2em 0;
  511. }
  512. .categorias a{
  513. font-family: sans;
  514. font-size: 14px;
  515. border-right-width: 2px;
  516. border-top-width: 1px;
  517. border-bottom-width: 0;
  518. border-left-width: 0;
  519. border-style: solid;
  520. border-radius: 2px;
  521. margin-right: 7px;
  522. /* C */
  523. border-right-color: #38C5DC;
  524. border-top-color: #3BA2B3;
  525. background-color: #2C4080;
  526. color: #E8E6D5;
  527. }
  528. .categorias a:visited{
  529. color: #E8E6D5;
  530. }
  531. a.button{
  532. padding: 0.3em;
  533. border: solid 1px;
  534. /* display: block; */
  535. text-decoration: none;
  536. /* C */
  537. background-color:#e2e2e2;
  538. }
  539. a.u-url{
  540. font-size:0.9em;
  541. }
  542. ul#nav {
  543. display: block;
  544. /*margin: 0 5%;
  545. padding: 0;*/
  546. padding-left: 35%;
  547. padding-top: 0.2%;
  548. padding-bottom: 0.2%;
  549. list-style-type: none;
  550. font-family: 'EB Garamond', Garamond, serif;
  551. font-size: 1.2em;
  552. }
  553. ul#nav li {
  554. display: inline; /* make flat */
  555. }
  556. ul#nav a {
  557. display: block;
  558. float: left;
  559. padding: 0 .1em;
  560. text-decoration: none;
  561. color: #999;
  562. }
  563. hr {
  564. border: 0;
  565. background-color: #999;
  566. height: 1px;
  567. }
  568. blockquote {
  569. padding: 0 2em;
  570. margin: 7px;
  571. border-left-style: solid;
  572. border-left-width: 7px;
  573. font-style: italic;
  574. /* C */
  575. background-color: #313433;
  576. border-left-color: #3E4984;
  577. }
  578. pre {
  579. font-size: 13px;
  580. border-top-width: 1px;
  581. border-top-style: solid;
  582. border-radius: 5px;
  583. /* C */
  584. border-color: #435161;
  585. background-color: #293029;
  586. padding: 4px;
  587. }
  588. table{
  589. font-family: sans;
  590. font-size: 0.9em;
  591. border-width: 1px;
  592. border-style: solid;
  593. /* C */
  594. border-color: #59595A;
  595. }
  596. td{
  597. border-top-style: solid;
  598. border-width: 1px;
  599. padding: 11px;
  600. /* C */
  601. border-color: #59595A;
  602. }
  603. .headerlink {
  604. padding-left: 7px;
  605. font-size: 0.33em;
  606. }
  607. .headerlink:hover {
  608. font-size: 0.5em;
  609. }
  610. .foto_nota {
  611. font-size: 0.8em;
  612. /* C */
  613. color: #A7AAAF;
  614. }
  615. img.leftbaricon {
  616. font-family: sans;
  617. border-radius: 40%;
  618. }
  619. /* Code Hilite */
  620. div.codehilite .hll { background-color: #3f3f3c }
  621. div.codehilite { background: #383838; }
  622. div.codehilite .c { color: #408080; font-style: italic } /* Comment */
  623. div.codehilite .err { border: 1px solid #FF0000 } /* Error */
  624. div.codehilite .k { color: #30A020; font-weight: bold } /* Keyword */
  625. div.codehilite .o { color: #7D7D7D } /* Operator */
  626. div.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
  627. div.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */
  628. div.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */
  629. div.codehilite .cpf { color: #509090; font-style: italic } /* Comment.PreprocFile */
  630. div.codehilite .c1 { color: #509090; font-style: italic } /* Comment.Single */
  631. div.codehilite .cs { color: #509090; font-style: italic } /* Comment.Special */
  632. div.codehilite .gd { color: #A00000 } /* Generic.Deleted */
  633. div.codehilite .ge { font-style: italic } /* Generic.Emph */
  634. div.codehilite .gr { color: #FF0000 } /* Generic.Error */
  635. div.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
  636. div.codehilite .gi { color: #00A000 } /* Generic.Inserted */
  637. div.codehilite .go { color: #888888 } /* Generic.Output */
  638. div.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
  639. div.codehilite .gs { font-weight: bold } /* Generic.Strong */
  640. div.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
  641. div.codehilite .gt { color: #0044DD } /* Generic.Traceback */
  642. div.codehilite .kc { color: #108020; font-weight: bold } /* Keyword.Constant */
  643. div.codehilite .kd { color: #008050; font-weight: bold } /* Keyword.Declaration */
  644. div.codehilite .kn { color: #20D020; font-weight: bold } /* Keyword.Namespace */
  645. div.codehilite .kp { color: #20E030 } /* Keyword.Pseudo */
  646. div.codehilite .kr { color: #508000; font-weight: bold } /* Keyword.Reserved */
  647. div.codehilite .kt { color: #a04040 } /* Keyword.Type */
  648. div.codehilite .m { color: #666666 } /* Literal.Number */
  649. div.codehilite .s { color: #E2911D } /* Literal.String */
  650. div.codehilite .na { color: #7D9029 } /* Name.Attribute */
  651. div.codehilite .nb { color: #40D030 } /* Name.Builtin */
  652. div.codehilite .nc { color: #3050FF; font-weight: bold } /* Name.Class */
  653. div.codehilite .no { color: #880000 } /* Name.Constant */
  654. div.codehilite .nd { color: #AA22FF } /* Name.Decorator */
  655. div.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */
  656. div.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
  657. div.codehilite .nf { color: #3891D3; } /* Name.Function */
  658. div.codehilite .nl { color: #A0A000 } /* Name.Label */
  659. div.codehilite .nn { color: #3940FF; font-weight: bold } /* Name.Namespace */
  660. div.codehilite .nt { color: #20B000; font-weight: bold } /* Name.Tag */
  661. div.codehilite .nv { color: #9957EC } /* Name.Variable */
  662. div.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
  663. div.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
  664. div.codehilite .mb { color: #666666 } /* Literal.Number.Bin */
  665. div.codehilite .mf { color: #666666 } /* Literal.Number.Float */
  666. div.codehilite .mh { color: #666666 } /* Literal.Number.Hex */
  667. div.codehilite .mi { color: #666666 } /* Literal.Number.Integer */
  668. div.codehilite .mo { color: #666666 } /* Literal.Number.Oct */
  669. div.codehilite .sb { color: #CA5931 } /* Literal.String.Backtick */
  670. div.codehilite .sc { color: #CA5931 } /* Literal.String.Char */
  671. div.codehilite .sd { color: #CA3961; font-style: italic } /* Literal.String.Doc */
  672. div.codehilite .s2 { color: #CA6131 } /* Literal.String.Double */
  673. div.codehilite .se { color: #EB6622; font-weight: bold } /* Literal.String.Escape */
  674. div.codehilite .sh { color: #BC3129 } /* Literal.String.Heredoc */
  675. div.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
  676. div.codehilite .sx { color: #008000 } /* Literal.String.Other */
  677. div.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */
  678. div.codehilite .s1 { color: #CE9241 } /* Literal.String.Single */
  679. div.codehilite .ss { color: #19177C } /* Literal.String.Symbol */
  680. div.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */
  681. div.codehilite .vc { color: #19177C } /* Name.Variable.Class */
  682. div.codehilite .vg { color: #19177C } /* Name.Variable.Global */
  683. div.codehilite .vi { color: #19177C } /* Name.Variable.Instance */
  684. div.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */