Radar.razor.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. /* stylelint-disable */
  4. /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
  5. .radar .legend {
  6. margin-top: 16px;
  7. }
  8. .radar .legend .legendItem {
  9. position: relative;
  10. color: rgba(0, 0, 0, 0.45);
  11. line-height: 22px;
  12. text-align: center;
  13. cursor: pointer;
  14. }
  15. .radar .legend .legendItem p {
  16. margin: 0;
  17. }
  18. .radar .legend .legendItem h6 {
  19. margin-top: 4px;
  20. margin-bottom: 0;
  21. padding-left: 16px;
  22. color: rgba(0, 0, 0, 0.85);
  23. font-size: 24px;
  24. line-height: 32px;
  25. }
  26. .radar .legend .legendItem::after {
  27. position: absolute;
  28. top: 8px;
  29. right: 0;
  30. width: 1px;
  31. height: 40px;
  32. background-color: #f0f0f0;
  33. content: '';
  34. }
  35. .radar .legend > :last-child .legendItem::after {
  36. display: none;
  37. }
  38. .radar .legend .dot {
  39. position: relative;
  40. top: -1px;
  41. display: inline-block;
  42. width: 6px;
  43. height: 6px;
  44. margin-right: 6px;
  45. border-radius: 6px;
  46. }