index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <head>
  3. <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
  4. </head>
  5. <html>
  6. <body>
  7. <style>
  8. canvas {
  9. margin: 0.25em;
  10. }
  11. p {
  12. font-family: 'Roboto Condensed', sans-serif;
  13. font-size: 2em;
  14. color: white;
  15. width: 256px;
  16. margin: 0.25em;
  17. }
  18. .right {
  19. text-align:right;
  20. }
  21. .vertical {
  22. display:flex;
  23. justify-content: center;
  24. align-items: center;
  25. flex-direction: column;
  26. height:100%;
  27. }
  28. .horizontal {
  29. display:flex;
  30. justify-content: center;
  31. align-items: center;
  32. flex-direction: row;
  33. }
  34. img {
  35. display: none;
  36. }
  37. html, body {
  38. padding: 0;
  39. margin: 0;
  40. background-color: black;
  41. width: 100%;
  42. height: 100%;
  43. }
  44. </style>
  45. <div class="vertical">
  46. <div class="horizontal">
  47. <canvas id="source"></canvas>
  48. <canvas id="target"></canvas>
  49. </div>
  50. <div class="horizontal">
  51. <p id="statsText" class="right"></p>
  52. <p id="numbersText"></p>
  53. </div>
  54. </div>
  55. <script src="main.js" type="module"></script>
  56. <img id="sourceImg"></img>
  57. </body>
  58. </html>