-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (95 loc) · 1.68 KB
/
style.css
File metadata and controls
110 lines (95 loc) · 1.68 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
margin: 0;
padding: 0;
font-family: 'Inconsolata', monospace;
}
main {
width: 100%;
height: 50vh;
padding: 50px;
box-sizing: border-box;
overflow: auto;
}
canvas {
display: block;
}
.string {
color: #ff2222;
}
.boolean.true,
.boolean.false,
.number {
color: #0024ff;
}
.null,
.undefined {
color: #818181;
}
.arrow > span,
p > span.object,
p > span.array,
li > span.object,
li > span.array {
position: relative;
display: inline-block;
padding-left: 20px;
cursor: pointer;
vertical-align: top;
}
.arrow > span::before,
p > span.object::before,
p > span.array::before,
li > span.object::before,
li > span.array::before {
content: '';
display: block;
position: absolute;
left: 0;
border-top: 9px solid transparent;
border-right: 9px solid transparent;
border-bottom: 9px solid transparent;
border-left: 9px solid #797979;
}
.open.arrow > span::before,
p.open > span.object::before,
p.open > span.array::before,
li > span.open.object::before,
li > span.open.array::before {
border-top: 9px solid #797979;
border-left: 9px solid transparent;
}
.open > .arrayUl,
.open > .objectUl {
display: block;
}
.objectUl,
.arrayUl {
line-height: 1.4;
list-style: none;
display: none;
padding-left: 20px;
}
.node,
.arrayNumber,
.objectValue {
color: #9a00e0;
vertical-align: top;
}
.opacity {
opacity: 0.6;
}
body{
margin: 0;
padding: 0;
}
canvas {
display: block;
background-color: #fff;
}
.cursor canvas {
cursor: pointer;
}
.htmlElement,
svg {
display: none;
}