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.

d3evolution.css 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .d3evolution svg {
  2. background-color: white;
  3. }
  4. .d3evolution .chart-title {
  5. font-size: 17px;
  6. }
  7. .d3evolution .y.label {
  8. font-size: 11px;
  9. font-weight: normal;
  10. }
  11. .d3evolution .grid line {
  12. stroke: lightgrey;
  13. stroke-opacity: .7;
  14. shape-rendering: crispEdges;
  15. }
  16. .d3evolution .grid path {
  17. stroke-width: 0;
  18. }
  19. .d3evolution .axis,
  20. .d3evolution .legend {
  21. font-size: 12px;
  22. }
  23. .d3evolution .legend .value {
  24. font-size: 10px;
  25. }
  26. .d3evolution .cursor-time {
  27. font-size: 10px;
  28. }
  29. .d3evolution .cursor {
  30. shape-rendering: crispEdges;
  31. }
  32. .d3evolution .cursor .background {
  33. stroke: white;
  34. }
  35. .d3evolution .cursor .foreground {
  36. stroke-dasharray: 4, 2;
  37. }
  38. .d3evolution .cursor .x.foreground {
  39. stroke: blue;
  40. }
  41. .d3evolution .cursor circle {
  42. shape-rendering: geometricPrecision;
  43. }
  44. .d3evolution .cursor circle.foreground {
  45. stroke-dasharray: none;
  46. stroke: black;
  47. opacity: .5;
  48. }
  49. /*
  50. path.path {
  51. shape-rendering: crispEdges;
  52. }
  53. */
  54. .d3evolution .axis path,
  55. .d3evolution .axis line {
  56. fill: none;
  57. stroke: grey;
  58. shape-rendering: crispEdges;
  59. }
  60. .d3evolution .legend circle {
  61. stroke-width: 2px;
  62. }
  63. .d3evolution .path-null {
  64. fill: steelblue;
  65. fill-opacity: .1;
  66. }