Skip to content

Commit f15c446

Browse files
committed
Live dashboard implemented using Dash and Cytoscape.js
1 parent 24f7575 commit f15c446

File tree

4 files changed

+690
-0
lines changed

4 files changed

+690
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
html {
2+
font-family: "Helvetica", "Arial", sans-serif;
3+
font-size: 12px;
4+
}
5+
6+
body {
7+
margin: 0;
8+
padding: 0;
9+
}
10+
11+
table {
12+
table-layout: fixed;
13+
width: 95%;
14+
border-collapse: collapse;
15+
white-space: nowrap;
16+
}
17+
18+
th {
19+
text-align: left;
20+
border-bottom: 1px solid #999999;
21+
}
22+
23+
td {
24+
white-space: nowrap;
25+
overflow: hidden;
26+
text-overflow: ellipsis;
27+
}
28+
29+
svg {
30+
/* Limit height of array image */
31+
max-height: 300px;
32+
}
33+
34+
#info-container {
35+
width: 300px;
36+
height: 100vh;
37+
float: left;
38+
background-color: #f7fafd;
39+
}
40+
41+
.info-panel {
42+
margin-left: 5px;
43+
}
44+
45+
#graph-container {
46+
margin-left: 300px;
47+
}
48+
49+
#cytoscape-controls {
50+
position: absolute;
51+
top: 10px;
52+
right: 10px;
53+
}
6.98 KB
Loading

0 commit comments

Comments
 (0)