view-code.css 490 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #header {
  2. background: #dfdfff;
  3. }
  4. span.keyword {
  5. color: blue;
  6. }
  7. span.word {
  8. color: black;
  9. }
  10. span.string {
  11. color: #008080;
  12. }
  13. span.character {
  14. color: red;
  15. }
  16. span.number {
  17. color: #800000;
  18. }
  19. span.punctuation {
  20. color: #808000;
  21. }
  22. span.comment {
  23. color: #008000;
  24. }
  25. span.linenumber {
  26. color: #808080;
  27. }
  28. span.cicsapi {
  29. color: blue;
  30. font-weight:bold;
  31. }
  32. pre a {
  33. color: #222222;
  34. text-decoration: none;
  35. font-size: inherit;
  36. }
  37. pre a:hover {
  38. text-decoration: none;
  39. }