2023-07-26 17:52:50 +05:30
|
|
|
.line {
|
2023-08-01 08:44:56 +05:30
|
|
|
fill: none;
|
|
|
|
|
stroke: #009EDC;
|
|
|
|
|
stroke-width: 1px;
|
|
|
|
|
}
|
2023-07-26 17:52:50 +05:30
|
|
|
|
2023-08-01 08:44:56 +05:30
|
|
|
.tests-count-card {
|
|
|
|
|
width: 40vw;
|
|
|
|
|
height: 45vh;
|
|
|
|
|
background-color: white;
|
|
|
|
|
margin: 10px;
|
|
|
|
|
/* display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-direction: column; */
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: rgb(219, 219, 219);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border-width: max(1px, 0.0625rem);
|
|
|
|
|
}
|
2023-07-26 17:52:50 +05:30
|
|
|
|
2023-08-01 08:44:56 +05:30
|
|
|
.testcount-graph-title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2023-07-31 10:49:08 +05:30
|
|
|
|
2023-08-01 08:44:56 +05:30
|
|
|
.axis-grid line {
|
|
|
|
|
/* stroke: #def; */
|
|
|
|
|
stroke: lightgrey;
|
2023-07-31 10:49:08 +05:30
|
|
|
/* stroke-opacity: 0.7; */
|
|
|
|
|
shape-rendering: crispEdges;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bar {
|
|
|
|
|
fill: steelblue;
|
2023-08-01 08:44:56 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.testcount-info-icon {
|
|
|
|
|
padding: 0px 0px 0px 10px;
|
|
|
|
|
/* margin-top: 5px; */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.testcount-info-card {
|
|
|
|
|
position: absolute;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
background-color: rgb(236, 247, 253);
|
|
|
|
|
height: 7vh;
|
|
|
|
|
width: 10vw;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: rgb(219, 219, 219);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border-width: max(1px, 0.0625rem);
|
|
|
|
|
margin-left: 26vw;
|
|
|
|
|
font-size: x-small;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
padding: 0.5em;
|
2023-07-31 10:49:08 +05:30
|
|
|
}
|