index.html 732 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>Onion VCS Demo</title>
  6. <style>
  7. body {
  8. -webkit-user-select: none;
  9. -moz-user-select: none;
  10. -ms-user-select: none;
  11. user-select: none;
  12. }
  13. /* SVG style: */
  14. .container {
  15. background-color: #ddd;
  16. }
  17. .node {
  18. stroke: #000;
  19. stroke-width: 1.5px;
  20. }
  21. .link {
  22. stroke: #000;
  23. stroke-opacity: 1;
  24. }
  25. .arrowHead {
  26. fill: #000;
  27. }
  28. .label {
  29. font-size: 10px;
  30. fill: #000;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div id="root"></div>
  36. <script type="module" src="./bundle.js"></script>
  37. </body>
  38. </html>