style.scss 821 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @import './base';
  2. html,
  3. body {
  4. height: 100%;
  5. }
  6. .hide {
  7. display: none;
  8. }
  9. .show {
  10. display: block;
  11. }
  12. .mod-start,
  13. .mod-main {
  14. position: relative;
  15. height: 100%;
  16. }
  17. .mod-camera {
  18. height: 60%;
  19. #cameraVideo {
  20. display: block;
  21. width: 100%;
  22. height: 100%;
  23. object-fit: fill;
  24. }
  25. }
  26. .mod-game {
  27. height: 40%;
  28. canvas {
  29. display: block;
  30. width: 100%;
  31. height: 100%;
  32. }
  33. }
  34. .mod-record {
  35. position: absolute;
  36. left: 50%;
  37. bottom: 0;
  38. width: 60px;
  39. height: 60px;
  40. transform: translate(-50%, 0);
  41. font-size: 14px;
  42. line-height: 60px;
  43. border-radius: 50%;
  44. text-align: center;
  45. background-color: rgba($color: red, $alpha: 1.0);
  46. color: #fff;
  47. user-select: none;
  48. &:active{
  49. opacity: .8;
  50. }
  51. }