Displays a base image and an "x-ray" view of a second image where the mouse is pointing
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

47 行
496 B

  1. body {
  2. font-family: sans-serif;
  3. }
  4. canvas {
  5. position: absolute;
  6. }
  7. canvas.hidden {
  8. display: none;
  9. }
  10. img {
  11. display: none;
  12. }
  13. #overlay {
  14. z-index: 1;
  15. }
  16. #menu {
  17. display: flex;
  18. flex-direction: row;
  19. transition: 0.5s;
  20. flex-wrap: wrap;
  21. }
  22. #menu.start input,
  23. #menu.start button,
  24. #menu.start label {
  25. font-size: 36pt;
  26. }
  27. #menu.start .nostart {
  28. display: none;
  29. }
  30. .large,
  31. .large > * {
  32. font-size: 24pt;
  33. }
  34. .large > input[type=number] {
  35. max-width: 72pt;
  36. }