musicScore.module.less 722 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .musicScore {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. -webkit-overflow-scrolling: touch;
  6. overflow: scroll;
  7. .container {
  8. display: block;
  9. border: none;
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .musicModel {
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. right: 0;
  18. bottom: 0;
  19. }
  20. }
  21. .errorModel {
  22. position: absolute;
  23. left: 0;
  24. top: 0;
  25. right: 0;
  26. bottom: 0;
  27. background: #000;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. overflow: hidden;
  32. }
  33. .startBtn{
  34. position: absolute;
  35. left: 50%;
  36. bottom: 6vh;
  37. transform: translateX(-50%);
  38. &:active{
  39. opacity: .8;
  40. }
  41. }
  42. .loading{
  43. position: absolute;
  44. left: 50%;
  45. top: 0;
  46. transform: translateX(-50%);
  47. }