You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
2 years ago
|
@charset "UTF-8";
|
||
|
.jsonview {
|
||
|
font-family: monospace;
|
||
|
font-size: 1.1em;
|
||
|
white-space: pre-wrap; }
|
||
|
.jsonview .prop {
|
||
|
font-weight: bold; }
|
||
|
.jsonview .null {
|
||
|
color: red; }
|
||
|
.jsonview .bool {
|
||
|
color: blue; }
|
||
|
.jsonview .num {
|
||
|
color: blue; }
|
||
|
.jsonview .string {
|
||
|
color: green;
|
||
|
white-space: pre-wrap; }
|
||
|
.jsonview .string.multiline {
|
||
|
display: inline-block;
|
||
|
vertical-align: text-top; }
|
||
|
.jsonview .collapser {
|
||
|
position: absolute;
|
||
|
left: -1em;
|
||
|
cursor: pointer; }
|
||
|
.jsonview .collapsible {
|
||
|
transition: height 1.2s;
|
||
|
transition: width 1.2s; }
|
||
|
.jsonview .collapsible.collapsed {
|
||
|
height: .8em;
|
||
|
width: 1em;
|
||
|
display: inline-block;
|
||
|
overflow: hidden;
|
||
|
margin: 0; }
|
||
|
.jsonview .collapsible.collapsed:before {
|
||
|
content: "…";
|
||
|
width: 1em;
|
||
|
margin-left: .2em; }
|
||
|
.jsonview .collapser.collapsed {
|
||
|
transform: rotate(0deg); }
|
||
|
.jsonview .q {
|
||
|
display: inline-block;
|
||
|
width: 0px;
|
||
|
color: transparent; }
|
||
|
.jsonview li {
|
||
|
position: relative; }
|
||
|
.jsonview ul {
|
||
|
list-style: none;
|
||
|
margin: 0 0 0 2em;
|
||
|
padding: 0; }
|
||
|
.jsonview h1 {
|
||
|
font-size: 1.2em; }
|