speechtotext.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .chat-container.data-v-c5c3bce2 {
  2. display: flex;
  3. flex-direction: column;
  4. overflow-y: auto;
  5. background-color: #f0f0f0;
  6. padding: 10px;
  7. }
  8. .messages.data-v-c5c3bce2 {
  9. flex-grow: 1;
  10. overflow-y: auto;
  11. }
  12. .message.data-v-c5c3bce2 {
  13. display: flex;
  14. justify-content: flex-end;
  15. align-items: flex-end;
  16. margin-bottom: 10px;
  17. flex-direction: column;
  18. }
  19. .text.data-v-c5c3bce2{
  20. width: 70%;
  21. background: white;
  22. border-radius: 5px;
  23. padding: 10px;
  24. margin: 5px 0 10px;
  25. box-sizing: border-box;
  26. font-size: 16px;
  27. }
  28. .bubble.data-v-c5c3bce2 {
  29. width:100px;
  30. padding: 10px 20px 10px 20px;
  31. justify-content: flex-end;
  32. margin-right: 10px;
  33. background-color: rgb(131 235 96);
  34. border-radius: 5px;
  35. display: flex;
  36. align-items: right;
  37. position: relative;
  38. }
  39. .bubble.data-v-c5c3bce2::after {
  40. content: "";
  41. width: 0px;
  42. height: 0px;
  43. border-top: 5px solid transparent;
  44. border-bottom: 5px solid transparent;
  45. border-left: 5px solid #83eb60;
  46. position: absolute;
  47. top: 14px;
  48. right: -5px;
  49. }
  50. .duration.data-v-c5c3bce2 {
  51. color: #000;
  52. font-size: 16px;
  53. }
  54. .audioPaly.data-v-c5c3bce2 {
  55. width: 12px;
  56. height: 12px;
  57. }
  58. .input-area.data-v-c5c3bce2 {
  59. position: fixed;
  60. bottom: 0;
  61. left: 0;
  62. width: 100%;
  63. background-color: rgb(245, 245, 245);
  64. display: flex;
  65. justify-content: center;
  66. padding: 10px;
  67. box-sizing: border-box;
  68. }
  69. .input-area>button.data-v-c5c3bce2 {
  70. display: block;
  71. width: 100%;
  72. background-color: #FFFFFF;
  73. border: none;
  74. padding: 3px 0;
  75. border-radius: 5px;
  76. color: #333333;
  77. font-size: 16px;
  78. font-weight: bold;
  79. text-align: center;
  80. outline: none;
  81. cursor: pointer;
  82. }
  83. .input-area>.button-hover.data-v-c5c3bce2 {
  84. background-color: #f0f0f0 !important;
  85. }
  86. .input-area>button.data-v-c5c3bce2:after {
  87. border: none;
  88. }
  89. .recording-overlay.data-v-c5c3bce2 {
  90. position: fixed;
  91. top: 50%;
  92. left: 50%;
  93. transform: translate(-50%, -50%);
  94. background-color: rgba(0, 0, 0, 0.7);
  95. color: white;
  96. padding: 20px;
  97. border-radius: 10px;
  98. text-align: center;
  99. }
  100. .recording-overlay view.data-v-c5c3bce2 {
  101. margin: 5px 0;
  102. }