dendogram.css 432 B

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