index.html 684 B

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