_forcegraph.scss 331 B

123456789101112131415161718192021222324
  1. .graph {
  2. height: 100%;
  3. width: 100%;
  4. background: url(img/gplaypattern.png);
  5. canvas {
  6. display: block;
  7. }
  8. svg {
  9. display: block;
  10. width: 100%;
  11. height: 100%;
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. circle, line {
  16. opacity: 0;
  17. stroke-width: 16px;
  18. cursor: pointer;
  19. }
  20. }
  21. }