47 lines
1.0 KiB
CSS
47 lines
1.0 KiB
CSS
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
/* stylelint-disable no-duplicate-selectors */
|
|
/* stylelint-disable */
|
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
.radar .legend {
|
|
margin-top: 16px;
|
|
}
|
|
.radar .legend .legendItem {
|
|
position: relative;
|
|
color: rgba(0, 0, 0, 0.45);
|
|
line-height: 22px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
.radar .legend .legendItem p {
|
|
margin: 0;
|
|
}
|
|
.radar .legend .legendItem h6 {
|
|
margin-top: 4px;
|
|
margin-bottom: 0;
|
|
padding-left: 16px;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
}
|
|
.radar .legend .legendItem::after {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 0;
|
|
width: 1px;
|
|
height: 40px;
|
|
background-color: #f0f0f0;
|
|
content: '';
|
|
}
|
|
.radar .legend > :last-child .legendItem::after {
|
|
display: none;
|
|
}
|
|
.radar .legend .dot {
|
|
position: relative;
|
|
top: -1px;
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
margin-right: 6px;
|
|
border-radius: 6px;
|
|
}
|