-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonview.bundle.css
50 lines (50 loc) · 1.4 KB
/
jsonview.bundle.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.json-container {
font-family: 'Open Sans';
font-size: 14px;
background-color: #1F2430;
color: #CCCAC2;
box-sizing: border-box; }
.json-container .line {
margin: 4px 0;
display: flex;
justify-content: flex-start; }
.json-container .caret-icon {
width: 18px;
text-align: center;
cursor: pointer; }
.json-container .empty-icon {
width: 18px; }
.json-container .json-type {
margin-right: 4px;
margin-left: 4px; }
.json-container .json-key {
color: #CCCAC2;
margin-right: 4px;
margin-left: 4px; }
.json-container .json-index {
margin-right: 4px;
margin-left: 4px; }
.json-container .json-value {
margin-left: 8px; }
.json-container .json-number {
color: #f29668; }
.json-container .json-boolean {
color: #ec5f66; }
.json-container .json-string {
color: #86b25c; }
.json-container .json-size {
margin-right: 4px;
margin-left: 4px; }
.json-container .hide {
display: none; }
.json-container .fas {
display: inline-block;
width: 0;
height: 0;
border-style: solid; }
.json-container .fa-caret-down {
border-width: 6px 5px 0 5px;
border-color: #808080 transparent; }
.json-container .fa-caret-right {
border-width: 5px 0 5px 6px;
border-color: transparent transparent transparent #808080; }