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.
66 lines
881 B
66 lines
881 B
:root {
|
|
--legend-height: 30px
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
display: grid;
|
|
}
|
|
|
|
#chartCanvas,
|
|
#effectCanvas,
|
|
#detectionCanvas {
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
#graphLegend {
|
|
grid-column: 1;
|
|
grid-row: 2;
|
|
display: none;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
#graphLegend div {
|
|
display: inline;
|
|
margin: 0 10px 0 10px;
|
|
width: 50px;
|
|
}
|
|
|
|
#dataDiv {
|
|
display: none;
|
|
position: absolute;
|
|
height: 35px;
|
|
width: 70px;
|
|
background-color: white;
|
|
border: 1px solid lightgrey;
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#dataDiv p {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
#dataDiv b {
|
|
position: center;
|
|
font-size: 13px;
|
|
}
|
|
|
|
#detectionCanvas {
|
|
opacity: 0;
|
|
}
|
|
|
|
#effectCanvas {
|
|
transition: opacity 0.3s;
|
|
} |