first commit

This commit is contained in:
dev-chiefworks
2022-05-31 16:21:53 -04:00
commit f76abffdcd
5978 changed files with 1078901 additions and 0 deletions
+85
View File
@@ -0,0 +1,85 @@
body {
font-family: 'Open Sans';
font-size: 16px;
background-color: #fff;
color: #808080;
box-sizing: border-box;
}
.line {
margin: 4px 0;
display: flex;
justify-content: flex-start;
}
.caret-icon {
width: 18px;
text-align: center;
cursor: pointer;
}
.empty-icon {
width: 18px;
}
.json-type {
margin-right: 4px;
margin-left: 4px;
}
.json-key {
color: #444;
margin-right: 4px;
margin-left: 4px;
}
.json-index {
margin-right: 4px;
margin-left: 4px;
}
.json-separator {
}
.json-value {
margin-left: 8px;
}
.json-number {
color: #f9ae58;
}
.json-boolean {
color: #ec5f66;
}
.json-string {
color: #3333cc;
}
.json-size {
margin-right: 4px;
margin-left: 4px;
}
.hide {
display: none;
}
.fas {
display: inline-block;
width: 0;
height: 0;
border-style: solid;
}
.fa-caret-down {
border-width: 6px 5px 0 5px;
border-color: #808080 transparent
}
.fa-caret-right {
border-width: 5px 0 5px 6px;
border-color: transparent transparent transparent #808080;
}