s.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. @charset "utf-8";
  2. /* CSS Document */
  3. div.ControlsRow, div.HeadersRow {
  4. font-family: Georgia;
  5. }
  6. div.Canvas {
  7. font-family: Lucida Console, Georgia;
  8. font-size: 13px;
  9. background-color: #ECECEC;
  10. color: #000000;
  11. border: solid 1px #CECECE;
  12. }
  13. .ObjectBrace {
  14. color: #00AA00;
  15. font-weight: bold;
  16. }
  17. .ArrayBrace {
  18. color: #0033FF;
  19. font-weight: bold;
  20. }
  21. .PropertyName {
  22. color: #CC0000;
  23. font-weight: bold;
  24. }
  25. .String {
  26. color: #007777;
  27. }
  28. .Number {
  29. color: #AA00AA;
  30. }
  31. .Boolean {
  32. color: #0000FF;
  33. }
  34. .Function {
  35. color: #AA6633;
  36. text-decoration: italic;
  37. }
  38. .Null {
  39. color: #0000FF;
  40. }
  41. .Comma {
  42. color: #000000;
  43. font-weight: bold;
  44. }
  45. PRE.CodeContainer {
  46. margin-top: 0px;
  47. margin-bottom: 0px;
  48. }
  49. PRE.CodeContainer img {
  50. cursor: pointer;
  51. border: none;
  52. margin-bottom: -1px;
  53. }
  54. #CollapsibleViewDetail a {
  55. padding-left: 10px;
  56. }
  57. #ControlsRow {
  58. white-space: nowrap;
  59. font: 11px Georgia;
  60. }
  61. #TabSizeHolder {
  62. padding-left: 10px;
  63. padding-right: 10px;
  64. }
  65. #HeaderTitle {
  66. text-align: right;
  67. font-size: 11px;
  68. }
  69. #HeaderSubTitle {
  70. margin-bottom: 2px;
  71. margin-top: 0px
  72. }
  73. #RawJson {
  74. width: 99%;
  75. height: 120px;
  76. }
  77. A.OtherToolsLink {
  78. color: #555;
  79. text-decoration: none;
  80. }
  81. A.OtherToolsLink:hover {
  82. text-decoration: underline;
  83. }