index.module.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .skeleton {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100vw;
  6. height: 100vh;
  7. padding: 20px 30px;
  8. background-color: #fff;
  9. z-index: 10;
  10. --van-skeleton-paragraph-height: .8rem;
  11. }
  12. .detail {
  13. width: 100vw;
  14. height: 100vh;
  15. overflow: hidden;
  16. --header-height: 62px;
  17. background: #01c1b5;
  18. .headHeight {
  19. width: 100%;
  20. height: var(--header-height);
  21. transition: margin .3s;
  22. z-index: 10;
  23. &.headHide {
  24. margin-top: calc(0Px - var(--header-height));
  25. }
  26. }
  27. .container {
  28. position: relative;
  29. height: calc(100vh - var(--header-height) - 15px);
  30. border-radius: 10px;
  31. margin: 0 15px;
  32. overflow-x: hidden;
  33. overflow-y: auto;
  34. background-color: #fff;
  35. &::-webkit-scrollbar {
  36. width: 0;
  37. display: none;
  38. }
  39. :global {
  40. #musicAndSelection {
  41. overflow: auto;
  42. border-radius: 12px;
  43. }
  44. }
  45. }
  46. }
  47. .shareBox {
  48. :global {
  49. #cursorImg-0 {
  50. display: none !important;
  51. }
  52. #selectionBox {
  53. pointer-events: none;
  54. }
  55. }
  56. }
  57. .demos {
  58. display: flex;
  59. justify-content: flex-end;
  60. align-items: center;
  61. padding: 6px 10px;
  62. z-index: 1;
  63. color: #2c3e50;
  64. &>div {
  65. display: flex;
  66. align-items: center;
  67. margin-right: 6px;
  68. &>span {
  69. margin-left: 4px;
  70. }
  71. }
  72. }
  73. .right {
  74. path {
  75. fill: #01C1B5;
  76. stroke: #01C1B5;
  77. }
  78. }
  79. .wrong {
  80. path {
  81. fill: #FF4444;
  82. stroke: #FF4444;
  83. }
  84. }
  85. .notPlay {
  86. path {
  87. fill: #000;
  88. stroke: #000;
  89. }
  90. }
  91. .cadence_wrong {
  92. path {
  93. fill: #067DD7;
  94. stroke: #067DD7;
  95. }
  96. }
  97. .intonation_wrong {
  98. path {
  99. fill: #FFAB25;
  100. stroke: #FFAB25;
  101. }
  102. }
  103. .integrity_wrong {
  104. path {
  105. fill: #CC75FF;
  106. stroke: #CC75FF;
  107. }
  108. }