style_rmgss_claro.css 19 KB

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