Displays a base image and an "x-ray" view of a second image where the mouse is pointing
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

59 líneas
723 B

  1. html, body {
  2. font-family: sans-serif;
  3. width: 100vw;
  4. height: 100vh;
  5. margin: 0;
  6. display: flex;
  7. flex-direction: column;
  8. }
  9. canvas {
  10. position: absolute;
  11. }
  12. canvas.hidden {
  13. display: none;
  14. }
  15. img {
  16. display: none;
  17. }
  18. #overlay {
  19. z-index: 1;
  20. }
  21. #menu {
  22. display: flex;
  23. flex: 0 1;
  24. flex-direction: row;
  25. transition: 0.5s;
  26. flex-wrap: wrap;
  27. justify-content: center;
  28. align-items: center;
  29. }
  30. #menu.start input,
  31. #menu.start button,
  32. #menu.start label {
  33. font-size: 36pt;
  34. }
  35. #menu.start .nostart {
  36. display: none;
  37. }
  38. .large,
  39. .large > * {
  40. font-size: 24pt;
  41. }
  42. .large > input[type=number] {
  43. max-width: 72pt;
  44. }
  45. #fill-div {
  46. position: relative;
  47. flex: 1 0;
  48. }