dendogram.css 319 B

1234567891011121314151617181920212223242526
  1. <style>
  2. .node circle {
  3. fill: #999;
  4. }
  5. .node text {
  6. font: 10px sans-serif;
  7. }
  8. .node--internal circle {
  9. fill: #555;
  10. }
  11. .node--internal text {
  12. text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
  13. }
  14. .link {
  15. fill: none;
  16. stroke: #555;
  17. stroke-opacity: 0.4;
  18. stroke-width: 1.5px;
  19. }
  20. </style>