81 lines
1.5 KiB
CSS
81 lines
1.5 KiB
CSS
.chart {
|
|
height: 100%;
|
|
}
|
|
.legend {
|
|
position: absolute;
|
|
right: 25px;
|
|
top: 30px;
|
|
}
|
|
.item{
|
|
display: inline-block;
|
|
margin-right: 45px;
|
|
font-size: 14px;
|
|
position: relative;
|
|
color: #DFF1FE;
|
|
}
|
|
/* .block {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 2px;
|
|
display: inline-block;
|
|
margin-right: 4px;
|
|
} */
|
|
.item:before {
|
|
content: "";
|
|
width:14px;
|
|
height: 1px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: -23.3px;
|
|
background-color: rgba(255, 194, 20, 1);
|
|
transform: translateY(-50%);
|
|
}
|
|
.item:after {
|
|
content: "";
|
|
display: inline-block;
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 100%;
|
|
top: 50%;
|
|
background-color: rgba(255, 194, 20, 1);
|
|
left: -1.1vw;
|
|
transform: translateY(-50%) translateX(50%);
|
|
}
|
|
.block{
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
font-size: 14px;
|
|
position: relative;
|
|
color: #DFF1FE;
|
|
}
|
|
/* .block {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 2px;
|
|
display: inline-block;
|
|
margin-right: 4px;
|
|
} */
|
|
.block:before {
|
|
content: "";
|
|
width:14px;
|
|
height: 1px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: -24px;
|
|
transform: translateY(-50%);
|
|
background-color: rgba(0, 255, 245, 1);
|
|
}
|
|
.block:after {
|
|
content: "";
|
|
display: inline-block;
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: rgba(0, 255, 245, 1);
|
|
border-radius: 100%;
|
|
top: 50%;
|
|
left: -1.1vw;
|
|
transform: translateY(-50%) translateX(50%);
|
|
}
|