123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- @charset "utf-8";
- /* CSS Document */
- div.ControlsRow, div.HeadersRow {
- font-family: Georgia;
- }
- div.Canvas {
- font-family: Lucida Console, Georgia;
- font-size: 13px;
- background-color: #ECECEC;
- color: #000000;
- border: solid 1px #CECECE;
- }
- .ObjectBrace {
- color: #00AA00;
- font-weight: bold;
- }
- .ArrayBrace {
- color: #0033FF;
- font-weight: bold;
- }
- .PropertyName {
- color: #CC0000;
- font-weight: bold;
- }
- .String {
- color: #007777;
- }
- .Number {
- color: #AA00AA;
- }
- .Boolean {
- color: #0000FF;
- }
- .Function {
- color: #AA6633;
- text-decoration: italic;
- }
- .Null {
- color: #0000FF;
- }
- .Comma {
- color: #000000;
- font-weight: bold;
- }
- PRE.CodeContainer {
- margin-top: 0px;
- margin-bottom: 0px;
- }
- PRE.CodeContainer img {
- cursor: pointer;
- border: none;
- margin-bottom: -1px;
- }
- #CollapsibleViewDetail a {
- padding-left: 10px;
- }
- #ControlsRow {
- white-space: nowrap;
- font: 11px Georgia;
- }
- #TabSizeHolder {
- padding-left: 10px;
- padding-right: 10px;
- }
- #HeaderTitle {
- text-align: right;
- font-size: 11px;
- }
- #HeaderSubTitle {
- margin-bottom: 2px;
- margin-top: 0px
- }
- #RawJson {
- width: 99%;
- height: 120px;
- }
- A.OtherToolsLink {
- color: #555;
- text-decoration: none;
- }
- A.OtherToolsLink:hover {
- text-decoration: underline;
- }
|