| 1 |
.line-chart .axis line { |
| 2 |
stroke: #f0f0f0; } |
| 3 |
|
| 4 |
.line-chart .axis path { |
| 5 |
stroke: #f0f0f0; } |
| 6 |
|
| 7 |
.line-chart .axis text { |
| 8 |
fill: #5e6977; } |
| 9 |
|
| 10 |
.line-chart .grid line { |
| 11 |
stroke: #f0f0f0; } |
| 12 |
|
| 13 |
.line-chart .listening-rect { |
| 14 |
fill: transparent; } |
| 15 |
|
| 16 |
.line-chart__tooltip { |
| 17 |
opacity: 0; |
| 18 |
position: absolute; |
| 19 |
top: -25px; |
| 20 |
left: -17px; |
| 21 |
padding: 0.2em 0.5em; |
| 22 |
background: #1d293f; |
| 23 |
text-align: center; |
| 24 |
line-height: 1.4em; |
| 25 |
font-size: 0.9em; |
| 26 |
z-index: 10; |
| 27 |
transition: all 0.1s ease-out; |
| 28 |
pointer-events: none; |
| 29 |
color: #fff; |
| 30 |
font-family: Inter, Gilroy, Helvetica, sans-serif; |
| 31 |
border-radius: 2px; |
| 32 |
min-width: 28px; } |
| 33 |
|
| 34 |
.line-chart__tooltip:before { |
| 35 |
content: ""; |
| 36 |
position: absolute; |
| 37 |
bottom: 0; |
| 38 |
left: 50%; |
| 39 |
width: 12px; |
| 40 |
height: 12px; |
| 41 |
background: #1d293f; |
| 42 |
border-top-color: transparent; |
| 43 |
border-left-color: transparent; |
| 44 |
transform: translate(-50%, 50%) rotate(45deg); |
| 45 |
transform-origin: center center; |
| 46 |
z-index: 10; } |
| 47 |
|
| 48 |
.line-chart { |
| 49 |
position: relative; } |
| 50 |
|
| 51 |
/*# sourceMappingURL=chart.css.map */ |
| 52 |
|