-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
64 lines (55 loc) · 885 Bytes
/
app.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
@import url("node_modules/jsoneditor/dist/jsoneditor.min.css");
ul li{
display: inline;
}
ul {
padding: 0;
margin: 0.5em;
}
.btnStack {
margin: 0 4px;
background-color: #3883fa;
color: #b7d2fd;
text-decoration: none;
padding: 6px 12px;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
a.btnStack:hover {
background-color: #999;
color: #fff;
}
.block {
height: 100%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
}
.left {
left: 0;
width: 25%;
}
.right {
right: 0;
width: 75%;
}
#cy {
width: 100%;
height: 65%;
position: absolute;
}
#jsonViewer {
position: fixed;
right: 0;
bottom: 0;
height: 35%;
width: 70%;
}
code {
background: #f5f5f5;
}