-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruleMap.css
More file actions
68 lines (66 loc) · 941 Bytes
/
ruleMap.css
File metadata and controls
68 lines (66 loc) · 941 Bytes
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
.minimap {
fill: white;
stroke: black;
}
.node {
cursor: pointer;
}
.node rect{
opacity:0.35;
stroke:black;
stroke-width:1.2px;
rx:2;
ry:2;
}
.mininode rect{
opacity:0.35;
stroke:lightgrey;
stroke-width:0.4px;
rx:1;
ry:1;
}
.link {
fill: none;
stroke: grey;
stroke-width:1px;
}
.mini-link{
fill: none;
stroke: lightgrey;
stroke-width:0.1px;
}
g.brush > .handle {
display: none;
}
.overlay {
pointer-events: none;
}
.caption{
position: absolute;
width: 20em;
color: white;
padding: 1em;
background-color: #0e242b;
border-color: #0e242b transparent;
border-radius: 5px;
pointer-events: none;
}
.caption:before{
position: absolute;
top: -15px;
content: '';
width: 0px;
height: 0px;
border-color: inherit;
border-width: 0 15px 15px;
border-style: solid;
}
.caption h3{
color: white;
font-size:18px;
margin:0px;
}
.caption p{
font-size: 14px;
margin:0px;
}