s.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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: 16px;
  9. width: 96%;
  10. height: 600px;
  11. padding:2%;
  12. overflow:auto;
  13. color: #fcebb6;
  14. border: solid 1px #CECECE;
  15. background-color: #272822;
  16. }
  17. .ObjectBrace {
  18. color: #00AA00;
  19. font-weight: bold;
  20. }
  21. .ArrayBrace {
  22. color: #0033FF;
  23. font-weight: bold;
  24. }
  25. .PropertyName {
  26. color: #ffffff;
  27. font-weight: bold;
  28. }
  29. .String {
  30. color: #ECE47E;
  31. }
  32. .Number {
  33. color: #ff80ff;
  34. }
  35. .Boolean {
  36. color: #00ffff;
  37. }
  38. .Function {
  39. color: #AA6633;
  40. text-decoration: italic;
  41. }
  42. .Null {
  43. color: #cbde21;
  44. }
  45. .Comma {
  46. color: #fcebb6;
  47. font-weight: bold;
  48. }
  49. PRE.CodeContainer {
  50. margin-top: 0px;
  51. margin-bottom: 0px;
  52. }
  53. PRE.CodeContainer img {
  54. cursor: pointer;
  55. border: none;
  56. margin-bottom: -1px;
  57. }
  58. #CollapsibleViewDetail a {
  59. padding-left: 10px;
  60. }
  61. #ControlsRow {
  62. white-space: nowrap;
  63. font: 11px Georgia;
  64. }
  65. #TabSizeHolder {
  66. padding-left: 10px;
  67. padding-right: 10px;
  68. }
  69. #HeaderTitle {
  70. text-align: right;
  71. font-size: 11px;
  72. }
  73. #HeaderSubTitle {
  74. margin-bottom: 2px;
  75. margin-top: 0px
  76. }
  77. #RawJson {
  78. width: 99%;
  79. height: 120px;
  80. }
  81. A.OtherToolsLink {
  82. color: #555;
  83. text-decoration: none;
  84. }
  85. A.OtherToolsLink:hover {
  86. text-decoration: underline;
  87. }