prettify.css 1.1 KB

1234567891011121314151617181920212223242526
  1. pre .str { color: #d14 } /* string - pink */
  2. pre .kwd { color: #a61717; font-weight: bold }
  3. pre .com { color: #999988; font-style: italic; } /* comment - skyblue */
  4. pre .typ { color: #009999 } /* type - lightgreen */
  5. pre .lit { color: #cd5c5c } /* literal - darkred */
  6. pre .pun { color: #a61717 } /* punctuation */
  7. pre .pln { color: #000000 } /* plaintext */
  8. pre .tag { color: #000080; font-weight: bold } /* html/xml tag - lightyellow */
  9. pre .atn { color: #008080; font-weight: bold } /* attribute name - khaki */
  10. pre .atv { color: #d14 } /* attribute value - pink */
  11. pre .dec { color: #009999 } /* decimal - lightgreen */
  12. ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */
  13. li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
  14. li.L1,li.L3,li.L5,li.L7,li.L9 { }
  15. pre.prettyprint {
  16. border: 0;
  17. border-radius: 0;
  18. border-left: 3px solid #2d87e2;
  19. margin-left: 2em;
  20. padding: 0.5em;
  21. font-size: 90%;
  22. display: block;
  23. font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
  24. margin: 1em 0px;
  25. white-space: pre;
  26. }