-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathframe.scss
More file actions
47 lines (40 loc) · 672 Bytes
/
frame.scss
File metadata and controls
47 lines (40 loc) · 672 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
body{
text-align: center;
}
svg {
font: 10px sans-serif;
// text{
// fill:white;
// }
}
text, tspan, textPath {
white-space: nowrap;
}
user agent stylesheettext, foreignObject {
display: block;
}
.node rect {
// fill: white;
}
.join, .link, .node rect {
fill: none;
stroke: #636363;
stroke-width: 1.5px;
}
.node .element rect {
fill: #bdbdbd;
stroke: none;
text{
// color:white;
}
}
.link path, .node rect, .node text, .join {
-webkit-transition: all 500ms linear;
-moz-transition: all 500ms linear;
-ms-transition: all 500ms linear;
-o-transition: all 500ms linear;
transition: all 500ms linear;
}
.node .selection rect {
stroke: #e6550d;
}