forked from greghub/funnel-graph-js
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathd3.scss
More file actions
58 lines (47 loc) · 1.2 KB
/
d3.scss
File metadata and controls
58 lines (47 loc) · 1.2 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
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
.d3-funnel-js-tooltip {
pointer-events: none;
font-size: .8em;
display: none;
align-items: center;
justify-content: center;
position: absolute;
white-space: wrap;
min-width: 140px;
width: auto;
height: 30px;
transition: opacity 0.2s;
font-family: $font-family;
padding: $tooltip-padding;
border-radius: $tooltip-border-radius;
border: $tooltip-border;
background-color: $tooltip-bg;
color: $tooltip;
z-index: $tooltip-z-index;
}
.d3-funnel-js {
display: block;
margin: auto;
font-family: $font-family;
.label__group {
.label__value {
font-size: $label-value-font-size;
fill: $label-value;
line-height: 18px;
}
.label__title {
font-size: $label-title-font-size;
font-weight: bold;
fill: $label-title;
}
.label__percentage {
font-size: $label-per-font-size;
font-weight: bold;
fill: $label-per;
}
}
.divider {
stroke: $divider-stroke ;
stroke-width: $divider-stroke-width;
}
}