-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (74 loc) · 1.13 KB
/
style.css
File metadata and controls
80 lines (74 loc) · 1.13 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
html {
font-size: 14px;
}
body {
position: absolute;
top:0;
bottom:0;
width:100%;
font-family: 'Lato', sans-serif;
font-weight: 200;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.2rem; }
header {
height: 40px;
border-bottom: 1px solid #DDD;
background-color: #FAFAFA;
}
#app {
position: absolute;
top: 40px;
bottom: 0;
width: 100%;
}
#graph, #sidebar {
position: absolute;
top: 0;
bottom: 0;
}
#graph {
left: 0;
width: 70%;
/*padding-bottom: 100%;*/
vertical-align: middle;
overflow: hidden;
}
#sidebar {
right: 0;
width: 30%;
overflow: scroll;
}
#sidebar {
}
ul#nav li {
padding: 12px;
}
ul#graph-list {
margin: 0;
}
li.node-li {
padding: 6px;
border-bottom: 1px solid #DDD;
list-style: none;
}
.node-li:hover,
.node-li.hover {
background-color: #FAFAFA;
}
.node-li .dropdown {
display: none;
}
.node-li.expand .dropdown {
display: block;
}
svg.svgraph {
display: inline-block;
position: absolute;
top: 0;
left: 0;
}
circle.node:hover {
cursor: pointer;
}