s.css 1.2 KB

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