You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
821 B
35 lines
821 B
1 year ago
|
.chartist-tooltip {
|
||
|
position: absolute;
|
||
|
display: inline-block;
|
||
|
opacity: 0;
|
||
|
min-width: 5em;
|
||
|
padding: .5em;
|
||
|
background: #F4C63D;
|
||
|
color: #453D3F;
|
||
|
font-family: Oxygen,Helvetica,Arial,sans-serif;
|
||
|
font-weight: 700;
|
||
|
text-align: center;
|
||
|
pointer-events: none;
|
||
|
z-index: 1;
|
||
|
-webkit-transition: opacity .2s linear;
|
||
|
-moz-transition: opacity .2s linear;
|
||
|
-o-transition: opacity .2s linear;
|
||
|
transition: opacity .2s linear; }
|
||
|
.chartist-tooltip:before {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
top: 100%;
|
||
|
left: 50%;
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
margin-left: -15px;
|
||
|
border: 15px solid transparent;
|
||
|
border-top-color: #F4C63D; }
|
||
|
.chartist-tooltip.tooltip-show {
|
||
|
opacity: 1; }
|
||
|
|
||
|
.ct-area, .ct-line {
|
||
|
pointer-events: none; }
|
||
|
|
||
|
/*# sourceMappingURL=chartist-plugin-tooltip.css.map */
|