12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* 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;
- }
|