index.module.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. :global {
  2. .green {
  3. .vf-notehead > path {
  4. fill: green;
  5. }
  6. }
  7. .follow-down{
  8. .vf-note path{
  9. fill:#977CFF !important;
  10. stroke: #977CFF !important;
  11. }
  12. }
  13. .follow-up{
  14. .vf-note path{
  15. fill:rgb(255, 0, 0) !important;
  16. stroke: rgb(255, 0, 0) !important;
  17. }
  18. }
  19. }
  20. .follow {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. width: 100vw;
  25. height: 100vh;
  26. z-index: 10;
  27. }
  28. .title {
  29. margin-top: 40px;
  30. font-size: 12px;
  31. }
  32. .endBtns {
  33. position: fixed;
  34. top: 40px;
  35. right: 10px;
  36. }
  37. .button {
  38. height: 23px;
  39. padding: 0;
  40. margin: 0;
  41. border: none;
  42. background: none;
  43. font-size: 0;
  44. &.hasText {
  45. height: 27px;
  46. border-radius: 4px;
  47. font-size: 5px;
  48. margin-right: 10px;
  49. img {
  50. width: 15px;
  51. height: 14px;
  52. display: block;
  53. margin: auto;
  54. margin-bottom: 1px;
  55. }
  56. :global(.van-button__text) {
  57. display: flex;
  58. font-size: 5px;
  59. color: #828282;
  60. // font-weight: 500;
  61. flex-direction: column;
  62. > span {
  63. display: block;
  64. margin-top: 2px;
  65. }
  66. }
  67. }
  68. &.bigIcon {
  69. img {
  70. width: 25px;
  71. height: 14px;
  72. display: block;
  73. margin: auto;
  74. margin-bottom: 1px;
  75. }
  76. }
  77. }
  78. .start {
  79. width: 75px;
  80. height: 75px;
  81. background-repeat: no-repeat;
  82. background-position: center;
  83. background-size: 100%;
  84. border-radius: 100%;
  85. position: fixed;
  86. top: 50%;
  87. left: 50%;
  88. transform: translate(-50%, -50%);
  89. font-size: 12px;
  90. color: #fff;
  91. }
  92. .noteState {
  93. position: fixed;
  94. bottom: 0;
  95. right: 10PX;
  96. width: 100Px;
  97. height: 30Px;
  98. background-color: rgba(0, 0, 0, 0.3);
  99. z-index: 1000;
  100. border-radius: 4Px;
  101. display: flex;
  102. align-items: center;
  103. justify-content: space-evenly;
  104. color: #fff;
  105. .dot {
  106. width: 13Px;
  107. height: 10Px;
  108. border-radius: 50%;
  109. transform: rotate(-20deg);
  110. }
  111. }