forked from greghub/funnel-graph-js
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·40 lines (39 loc) · 1005 Bytes
/
main.css
File metadata and controls
executable file
·40 lines (39 loc) · 1005 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
@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: "Open Sans", sans-serif;
padding: 4px;
border-radius: 5px;
border: 1px solid #000000;
background-color: #333333;
color: #f0f0f0;
z-index: 1000; }
.d3-funnel-js {
display: block;
margin: auto;
font-family: "Open Sans", sans-serif; }
.d3-funnel-js .label__group .label__value {
font-size: 1.5em;
fill: #fff;
line-height: 18px; }
.d3-funnel-js .label__group .label__title {
font-size: 1em;
font-weight: bold;
fill: #05df9d; }
.d3-funnel-js .label__group .label__percentage {
font-size: 1em;
font-weight: bold;
fill: #9896dc; }
.d3-funnel-js .divider {
stroke: #9896dc;
stroke-width: 0.1em; }