2020-06-22 07:00:45 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph-tooltip {
|
|
|
|
position: absolute;
|
|
|
|
background-color: white;
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 5px;
|
2020-06-27 07:35:34 +02:00
|
|
|
font-size: 15px;
|
2020-06-22 07:00:45 +02:00
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
transition: opacity 0.3s;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .cards-graph-grid {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 1em;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards-graph-grid svg {
|
|
|
|
flex: 3 0 0;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards-graph-grid div.graph-description {
|
|
|
|
flex: 0 0 10em;
|
|
|
|
font-family: "Arial";
|
|
|
|
} */
|
|
|
|
|
|
|
|
.no-domain-line .domain {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.range-box {
|
2020-06-26 07:34:21 +02:00
|
|
|
position: fixed;
|
2020-06-27 07:35:34 +02:00
|
|
|
z-index: 1;
|
2020-06-26 07:34:21 +02:00
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 4em;
|
|
|
|
background: white;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.range-box-pad {
|
|
|
|
height: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.range-box-inner {
|
2020-06-22 07:00:45 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2020-06-23 12:43:19 +02:00
|
|
|
.graph .area {
|
2020-06-22 07:00:45 +02:00
|
|
|
opacity: 0.05;
|
|
|
|
pointer-events: none;
|
2020-06-23 10:40:53 +02:00
|
|
|
fill: black;
|
2020-06-23 05:43:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.axis-label {
|
|
|
|
text-anchor: middle;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.y-axis-label {
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
rotate: 180;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hoverzone rect {
|
|
|
|
fill: none;
|
|
|
|
pointer-events: all;
|
2020-06-22 07:00:45 +02:00
|
|
|
}
|
2020-06-26 07:34:21 +02:00
|
|
|
|
2020-06-27 07:35:34 +02:00
|
|
|
.hoverzone rect:hover {
|
|
|
|
fill: grey;
|
|
|
|
opacity: 0.05;
|
|
|
|
}
|
|
|
|
|
2020-06-26 07:34:21 +02:00
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spin {
|
|
|
|
position: absolute;
|
|
|
|
animation: spin;
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 2em;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spin.active {
|
2020-06-26 11:25:02 +02:00
|
|
|
opacity: 0.5;
|
2020-06-26 07:34:21 +02:00
|
|
|
transition: opacity 1s;
|
|
|
|
}
|
2020-06-27 07:35:34 +02:00
|
|
|
|
|
|
|
.tooltip-area {
|
|
|
|
height: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip-area > * {
|
|
|
|
flex: 1 100%;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legend-outer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legend-outer div {
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|