-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelationship_graph.css
122 lines (118 loc) · 2.18 KB
/
relationship_graph.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
119
120
121
122
colors {
spicymustard: #d8ae47;
seashell: #f8f7f2;
gray: #626262;
darkergray: #222222;
sage: #b1ac85;
elephant: #c3c5c4;
}
:focus {
outline: #b1ac85 auto 1px;
}
html {
height: 100%;
}
body {
color: #222222;
background-color: #d8ae47;
margin: 0;
height: 100%;
overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
margin: 5px 10px;
}
#main-body {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
margin: 0 auto;
}
.clear-div {
clear: both;
}
#header details {
margin: 10px 10px;
}
#header h1 {
color: #424242;
font-size: 2em;
margin: .25em;
padding: .25em;
float: right;
}
@media screen and (max-width: 700px) {
#header h1 {
font-size: 1em;
margin: 0;
}
#header #json_save_area {
margin: 0;
padding: 0;
}
#header .clear-div {
margin: 0;
padding: 0;
}
}
#header {
flex-shrink: 0;
padding: 0 20px;
background: #f8f7f2;
border-bottom: solid #c3c5c4 1px;
max-height: 100%;
overflow-y: auto;
}
.help_section {
border: solid #c3c5c4 1px;
border-radius: 5px;
background-color: #f8f7f2;
padding: 10px;
margin: 10px;
}
#main-content {
flex-grow: 1;
overflow-y: auto;
}
textarea, input, select, .section {
border: solid #c3c5c4 1px;
border-radius: 5px;
background-color: #f8f7f2;
color: inherit;
}
textarea, input, select {
margin: .25em;
padding: .25em;
}
.section, .subsection {
margin: 10px;
padding: 10px;
}
.subsection {
border: none;
}
textarea {
width: 100%;
}
body.display_only .section, body.display_only .subsection, body.display_only #header, body.display_only #graph_area_header {
display: none;
}
body.display_only #cytoscape_surround, body.display_only #cytoscape_area, body.display_only #node_data_display, body.display_only #cytoscape_view_controls {
display: block;
}
#node_data_display {
height: 5em;
border: solid #c3c5c4 1px;
border-radius: 5px;
overflow-y: auto;
}
#node_disp_label {
text-align: center;
font-size: 1.2em;
font-weight: bold;
}
#node_disp_type {
text-align: center;
font-weight: bold;
}