Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

c3.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*-- Chart --*/
  2. .c3 svg {
  3. font: 10px sans-serif;
  4. -webkit-tap-highlight-color: transparent; }
  5. .c3 path, .c3 line {
  6. fill: none;
  7. stroke: #000; }
  8. .c3 text {
  9. -webkit-user-select: none;
  10. -moz-user-select: none;
  11. user-select: none; }
  12. .c3-legend-item-tile,
  13. .c3-xgrid-focus,
  14. .c3-ygrid,
  15. .c3-event-rect,
  16. .c3-bars path {
  17. shape-rendering: crispEdges; }
  18. .c3-chart-arc path {
  19. stroke: #fff; }
  20. .c3-chart-arc text {
  21. fill: #fff;
  22. font-size: 13px; }
  23. /*-- Axis --*/
  24. /*-- Grid --*/
  25. .c3-grid line {
  26. stroke: #aaa; }
  27. .c3-grid text {
  28. fill: #aaa; }
  29. .c3-xgrid, .c3-ygrid {
  30. stroke-dasharray: 3 3; }
  31. /*-- Text on Chart --*/
  32. .c3-text.c3-empty {
  33. fill: #808080;
  34. font-size: 2em; }
  35. /*-- Line --*/
  36. .c3-line {
  37. stroke-width: 1px; }
  38. /*-- Point --*/
  39. .c3-circle._expanded_ {
  40. stroke-width: 1px;
  41. stroke: white; }
  42. .c3-selected-circle {
  43. fill: white;
  44. stroke-width: 2px; }
  45. /*-- Bar --*/
  46. .c3-bar {
  47. stroke-width: 0; }
  48. .c3-bar._expanded_ {
  49. fill-opacity: 1;
  50. fill-opacity: 0.75; }
  51. /*-- Focus --*/
  52. .c3-target.c3-focused {
  53. opacity: 1; }
  54. .c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
  55. stroke-width: 2px; }
  56. .c3-target.c3-defocused {
  57. opacity: 0.3 !important; }
  58. /*-- Region --*/
  59. .c3-region {
  60. fill: steelblue;
  61. fill-opacity: .1; }
  62. /*-- Brush --*/
  63. .c3-brush .extent {
  64. fill-opacity: .1; }
  65. /*-- Select - Drag --*/
  66. /*-- Legend --*/
  67. .c3-legend-item {
  68. font-size: 12px; }
  69. .c3-legend-item-hidden {
  70. opacity: 0.15; }
  71. .c3-legend-background {
  72. opacity: 0.75;
  73. fill: white;
  74. stroke: lightgray;
  75. stroke-width: 1; }
  76. /*-- Title --*/
  77. .c3-title {
  78. font: 14px sans-serif; }
  79. /*-- Tooltip --*/
  80. .c3-tooltip-container {
  81. z-index: 10; }
  82. .c3-tooltip {
  83. border-collapse: collapse;
  84. border-spacing: 0;
  85. background-color: #fff;
  86. empty-cells: show;
  87. -webkit-box-shadow: 7px 7px 12px -9px #777777;
  88. -moz-box-shadow: 7px 7px 12px -9px #777777;
  89. box-shadow: 7px 7px 12px -9px #777777;
  90. opacity: 0.9; }
  91. .c3-tooltip tr {
  92. border: 1px solid #CCC; }
  93. .c3-tooltip th {
  94. background-color: #aaa;
  95. font-size: 14px;
  96. padding: 2px 5px;
  97. text-align: left;
  98. color: #FFF; }
  99. .c3-tooltip td {
  100. font-size: 13px;
  101. padding: 3px 6px;
  102. background-color: #fff;
  103. border-left: 1px dotted #999; }
  104. .c3-tooltip td > span {
  105. display: inline-block;
  106. width: 10px;
  107. height: 10px;
  108. margin-right: 6px; }
  109. .c3-tooltip td.value {
  110. text-align: right; }
  111. /*-- Area --*/
  112. .c3-area {
  113. stroke-width: 0;
  114. opacity: 0.2; }
  115. /*-- Arc --*/
  116. .c3-chart-arcs-title {
  117. dominant-baseline: middle;
  118. font-size: 1.3em; }
  119. .c3-chart-arcs .c3-chart-arcs-background {
  120. fill: #e0e0e0;
  121. stroke: none; }
  122. .c3-chart-arcs .c3-chart-arcs-gauge-unit {
  123. fill: #000;
  124. font-size: 16px; }
  125. .c3-chart-arcs .c3-chart-arcs-gauge-max {
  126. fill: #777; }
  127. .c3-chart-arcs .c3-chart-arcs-gauge-min {
  128. fill: #777; }
  129. .c3-chart-arc .c3-gauge-value {
  130. fill: #000;
  131. /* font-size: 28px !important;*/ }
  132. .c3-chart-arc.c3-target g path {
  133. opacity: 1; }
  134. .c3-chart-arc.c3-target.c3-focused g path {
  135. opacity: 1; }