Spaces:
Running
Running
File size: 1,296 Bytes
d8760c5 |
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
body{
font-family: menlo, Consolas, 'Lucida Console', monospace;
margin: 10px;
margin-left: 20px;
width: 1130px;
background: #fff;
margin-top: 30px;
}
.container{
margin-top: 30px;
}
.tooltip {
top: -1000px;
position: fixed;
padding: 10px;
background: rgba(255, 255, 255, .90);
border: 1px solid lightgray;
pointer-events: none;
}
.tooltip-hidden{
opacity: 0;
transition: all .3s;
transition-delay: .1s;
}
@media (max-width: 590px){
div.tooltip{
bottom: -1px;
width: calc(100%);
left: -1px !important;
right: -1px !important;
top: auto !important;
width: auto !important;
}
}
svg{
overflow: visible;
}
.domain{
display: none;
}
.axis{
opacity: .7;
}
text{
/*pointer-events: none;*/
text-shadow: 0 1.5px 0 #fff, 1.5px 0 0 #fff, 0 -1.5px 0 #fff, -1.5px 0 0 #fff;
}
#graph > div{
/*display: inline-block;*/
}
.active path{
stroke: #f0f;
/*stroke-width: 2;*/
opacity: 1;
}
.active text{
fill: #f0f;
opacity: 1 !important;
font-size: 14px;
}
p{
max-width: 650px;
}
.bg-tick{
stroke: #eee;
}
.tick{
display: none;
}
text.tiny{
font-size: 9px;
font-family: monospace;
}
circle.sentence.active{
fill: #f0f;
}
.axis-label{
/*font-weight: 600;*/
font-size: 12px;
color: #000;
} |