-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
176 lines (151 loc) · 3.43 KB
/
Copy pathstyle.css
File metadata and controls
176 lines (151 loc) · 3.43 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
html,body {
height: auto;
min-height: 100%;
font-family: sans-serif;
margin: 0;
padding: 0;
overflow-y: hidden;
}
#header {
text-align: center;
}
h1 {
margin-top: 40px;
margin-bottom: 5px;
}
#container {
overflow: hidden;
}
.zoomButton {
display: inline-block;
background: AliceBlue;
border: 1px solid black;
border-radius: 15%;
color: black;
padding: 5px;
text-align: center;
}
.zoomButton:hover {
background: LightSteelBlue;
}
#legend {
text-align: center;
padding: 10px;
}
.legendLabel {
display: inline-block;
margin: 5px;
padding: 10px;
border: 1px solid black;
border-radius: 0.5em;
}
.legendLabel p {
margin: 0;
padding: 0;
}
#existingQ {
background: lightgreen;
}
#conditional {
background: springgreen;
border-radius: 35%;
}
#missing {
background: orange;
}
#diagramContainer {
padding: 20px;
width: 100%;
height: 100%;
min-height: 800px; /* Adjust based on your preference */
position: relative; /* Relative positioning helps jsPlumb to calculate offsets correctly */
}
.groupClass {
border: 1px solid black;
border-radius: 0.5em;
text-align: center;
}
.groupClass h2 {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.window {
display: flex; /* Establishes this element as a Flex container */
flex-direction: column; /* Makes the main axis vertical */
justify-content: center; /* Centers content along the main axis */
align-items: center; /* Centers content along the cross axis (horizontally, in this case) */
border: 1px solid black;
border-radius: 0.5em;
text-align: center;
width: 220px;
height: 100px;
position: absolute;
padding: 10px;
}
.window p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.windowConditional {
display: flex; /* Establishes this element as a Flex container */
flex-direction: column; /* Makes the main axis vertical */
justify-content: center; /* Centers content along the main axis */
align-items: center; /* Centers content along the cross axis (horizontally, in this case) */
border: 1px solid black;
border-radius: 35%;
text-align: center;
width: 180px;
height: 100px;
position: absolute;
padding: 10px;
}
.windowConditional p {
margin-top: 0.5em; /* Adjust as needed */
margin-bottom: 0.5em; /* Adjust as needed */
}
.hoverDiv {
display: none;
position: fixed;
z-index: 1000; /* Ensure it's on top of other elements */
/*pointer-events: none; /* Ignore mouse events */
overflow: hidden;
margin: 20px 20px;
border-radius: 10px;
box-shadow: black 0px 2px 8px 0px;
width: 450px;
height: 375px;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip img {
vertical-align: middle;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 300px;
background-color: white;
color: black;
text-align: center;
border: 1px solid black;
border-radius: 0.5em;
position: absolute;
z-index: 1;
top: -5px;
right: 110%;
padding: 10px;
}
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 50%;
left: 100%; /* To the right of the tooltip */
margin-top: -5px;
/*border-width: 5px;
border-style: solid;
border-color: transparent transparent transparent black;*/
}
.tooltip:hover .tooltiptext {
visibility: visible;
}