-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgraph.css
More file actions
95 lines (81 loc) · 1.52 KB
/
graph.css
File metadata and controls
95 lines (81 loc) · 1.52 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
main {
display: grid;
grid-template-columns: 1fr 320px;
height: calc(100vh - 72px);
}
.graph-container {
position: relative;
}
#graph {
width: 100%;
height: 100%;
background: #ffffff;
}
.graph-filter {
position: absolute;
top: 10px;
left: 10px;
z-index: 10;
display: flex;
flex-direction: column;
gap: 10px;
background: #ffffff;
border: 1px solid #cecece;
border-radius: 10px;
padding: 10px;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
min-width: 240px;
}
.graph-filter label {
font-size: 16px;
color: #0b0c0c;
font-weight: bold;
}
.graph-filter input {
width: 100%;
padding: 10px 10px;
font-size: 16px;
border: 1px solid #d1d5db;
border-radius: 5px;
outline: none;
}
.graph-filter input:focus {
outline: rgb(255, 221, 0) solid 3px;
outline-offset: 0px;
box-shadow: 0px 0px 0px 2px inset;
}
.sidebar {
padding: 1rem;
border-left: 1px solid #d1d5db;
background: #f9fafb;
overflow-y: auto;
}
.sidebar h2 {
margin-top: 0;
font-size: 1rem;
}
.sidebar #node-details {
word-break: break-word;
background: #ffffff;
border: 1px solid #d1d5db;
padding: 0.75rem;
border-radius: 0.375rem;
}
.sidebar #node-details section {
margin-bottom: 1rem;
border-bottom: 1px solid #d1d5db;
}
.sidebar #node-details section:last-child {
border-bottom: none;
}
.sidebar #node-details a {
color: #2563eb;
text-decoration: none;
}
.sidebar #node-details a:hover {
text-decoration: underline;
}
.occurrence {
background-color: #ffeb3b;
font-weight: bold;
}