1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8"/>
- <title>Onion VCS</title>
- <style>
- body {
- margin: 0;
-
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .container {
- background-color: #333;
- }
- .node {
- stroke: #fff;
- stroke-width: 1.5px;
- }
- .link {
- stroke: #999;
- stroke-opacity: 1;
- }
- .label {
- font-size: 10px;
- fill: #fff;
- }
- </style>
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="./bundle.js"></script>
- </body>
- </html>
|