-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
118 lines (107 loc) · 2.2 KB
/
style.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
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
111
112
113
114
115
116
117
118
body {
margin: 0px;
}
#page {
display: grid;
grid-template-areas:
"header header"
"eventlist svgcontainer"
"eventlist svgcontainer";
grid-template-rows: min-content auto auto;
/* Make the sidebar just enough wide for the content but the svgcontainer take the most space */
grid-template-columns: 25% auto;
height: 100%;
}
#header {
grid-area: header;
height: min-content;
padding: 8px;
background-color: #a6b8c7;
border: 1px solid #00060b;
margin: 5px;
display: flex;
gap: 8px;
}
#infocontainer {
position: absolute;
background-color: #eee;
padding: 10px;
width: min-content;
max-width: 50%; /* don't let the popup occlude the entire graph */
overflow: scroll;
}
#closeinfocontainer {
cursor: pointer;
}
#svgcontainer {
grid-area: svgcontainer;
/* Prevent the svg from filling more than the available space by allowing it to scroll in both directions */
overflow: scroll;
}
#eventlist {
grid-area: eventlist;
border: 1px solid;
border-color: #00060b;
margin: 5px;
overflow-y: scroll;
}
.eventlistrow {
display: flex;
border-bottom: 1px solid;
border-color: #00060b;
cursor: pointer;
}
.eventlistrow:hover {
background-color: #a6b8c7;
}
.eventlistrowprefix {
padding: 5px;
}
.eventlistrowjson {
padding: 5px;
cursor: pointer;
text-wrap: nowrap;
}
.eventlistroweventid {
padding: 5px;
text-wrap: nowrap;
}
.eventlistrowbody {
overflow: scroll;
white-space: nowrap;
padding: 5px;
flex-grow: 1;
}
.loader {
border: 3px solid #f3f3f3; /* Light grey */
border-top: 3px solid #3498db; /* Blue */
border-radius: 50%;
width: 16px;
height: 16px;
animation: spin 1s linear infinite;
margin: 0 10 0 10;
display: none;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.node-text {
font-family: Gill Sans, Calibri, sans-serif;
}
input {
font-family: Gill Sans, Calibri, sans-serif;
}
div {
font-family: Gill Sans, Calibri, sans-serif;
}
body {
height: 100%;
}
.monospace {
font-family: "Lucida Console", Courier, monospace;
}