index.html 709 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. svg text{
  15. }
  16. .container {
  17. background-color: #333;
  18. }
  19. .node {
  20. stroke: #fff;
  21. stroke-width: 1.5px;
  22. }
  23. .link {
  24. stroke: #999;
  25. stroke-opacity: 1;
  26. }
  27. .label {
  28. font-size: 10px;
  29. fill: #fff;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="root"></div>
  35. <script type="module" src="./bundle.js"></script>
  36. </body>
  37. </html>