meeting.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. html, body {
  2. background-color: #fff;
  3. color: #636b6f;
  4. font-family: 'Nunito', sans-serif;
  5. font-weight: 200;
  6. height: 100vh;
  7. margin: 0;
  8. }
  9. h1 {
  10. color: #555;
  11. width: 50%;
  12. text-align: center;
  13. }
  14. @media (max-width: 900px) {
  15. h1 {
  16. width: auto;
  17. text-align: center;
  18. font-size: 2rem;
  19. text-shadow: 1px 1px 2px #c0e4e2;
  20. }
  21. }
  22. @media (max-width: 400px) {
  23. h1 {
  24. font-size: 1.75rem;
  25. text-shadow: 1px 1px 2px #c0e4e2;
  26. }
  27. }
  28. .form-container {
  29. width: 50%;
  30. margin-right: auto;
  31. }
  32. @media (max-width: 900px) {
  33. .form-container {
  34. margin: auto;
  35. width: 100%;
  36. }
  37. }
  38. .form-container .form {
  39. background: #ffffffd1;
  40. max-width: 400px;
  41. margin: auto;
  42. border-radius: 4px;
  43. }
  44. .form-container .form h3 {
  45. font-size: 1.3rem;
  46. }
  47. .border-success {
  48. border-color: #44bdad85 !important;
  49. }
  50. .text-dark {
  51. color: #555;
  52. font-weight: 600;
  53. }
  54. .form-container .form input {
  55. border-color: #44bdad85 !important;
  56. }
  57. .form-container .form input:focus {
  58. box-shadow: 0 0 0 0.2rem #44bdad85;
  59. }
  60. .form-container .form input.has-error {
  61. border-color: #bd424285 !important;
  62. }
  63. .form-container .form input.has-error:focus {
  64. box-shadow: 0 0 0 0.2rem #bd444454;
  65. }
  66. .field-error {
  67. font-size: 0.9rem;
  68. font-weight: 600;
  69. padding-left: 0.75rem;
  70. margin-top: 0.25rem;
  71. }
  72. .main-view {
  73. width: 800px;
  74. height: 600px;
  75. max-width: 100%;
  76. max-height: 100%;
  77. margin: 0 1rem;
  78. position: relative;
  79. }
  80. .main-view .full-view {
  81. width: 100%;
  82. height: 100%;
  83. background: #444;
  84. border-radius: 3px;
  85. margin: 0 auto;
  86. }
  87. .main-view .full-view[data-from]::after {
  88. position: absolute;
  89. content: attr(data-from);
  90. left: 0;
  91. width: 100%;
  92. top: 0;
  93. background: rgba(0, 0, 0, 0.5);
  94. color: #fff;
  95. font-size: 13px;
  96. white-space: nowrap;
  97. padding: 0.5rem;
  98. overflow: hidden;
  99. text-overflow: ellipsis;
  100. pointer-events: none;
  101. }
  102. .main-view .thumbs {
  103. position: absolute;
  104. z-index: 2;
  105. bottom: 1.5rem;
  106. right: 1rem;
  107. width: 180px;
  108. height: 100%;
  109. display: flex;
  110. flex-direction: column;
  111. align-items: flex-end;
  112. justify-content: flex-end;
  113. }
  114. .main-view .thumbs .thumb-view {
  115. width: 120px;
  116. height: 90px;
  117. border: 1px solid #0d5875;
  118. box-shadow: 0 0 3px #888;
  119. border-radius: 3px;
  120. background: #444;
  121. margin-top: 1rem;
  122. position: relative;
  123. cursor: pointer;
  124. }
  125. .main-view .thumbs .thumb-view>* {
  126. pointer-events: none;
  127. }
  128. .main-view .thumbs .thumb-view[data-from]::after {
  129. position: absolute;
  130. content: attr(data-from);
  131. left: 0;
  132. width: 100%;
  133. bottom: 0;
  134. background: rgba(0, 0, 0, 0.5);
  135. color: #fff;
  136. font-size: 11px;
  137. white-space: nowrap;
  138. padding: 0 5px;
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. }
  142. .main-view .thumbs .disconnected-view {
  143. opacity: 0;
  144. height: 0;
  145. }
  146. .tp-bar {
  147. width: 120px;
  148. }
  149. .tp-bar .tp-item {
  150. padding-top: 1rem;
  151. padding-bottom: 0.5rem;
  152. border: 0.3rem solid transparent;
  153. }
  154. .tp-bar .tp-item.active {
  155. border: 0.3rem solid #44bdad85;
  156. }
  157. .avatar {
  158. margin: auto;
  159. width: 80px;
  160. height: 80px;
  161. display: flex;
  162. align-items: center;
  163. justify-content: center;
  164. border-radius: 100%;
  165. font-size: 2rem;
  166. font-weight: 600;
  167. }
  168. .invite-image {
  169. width: 80px;
  170. margin: auto;
  171. display: block;
  172. }
  173. .text-single {
  174. white-space: nowrap;
  175. text-overflow: ellipsis;
  176. overflow: hidden;
  177. }
  178. .btn[disabled] {
  179. opacity: 0.3;
  180. }
  181. body .OT_fit-mode-cover .OT_video-element {
  182. object-fit: contain;
  183. }
  184. .hang-up {
  185. position: absolute;
  186. z-index: 2;
  187. bottom: 1rem;
  188. left: 1rem;
  189. width: 50px;
  190. height: 50px;
  191. font-size: 120%;
  192. }
  193. .call-mcp {
  194. position: absolute;
  195. z-index: 2;
  196. bottom: 1rem;
  197. left: calc(2rem + 50px);
  198. width: 50px;
  199. height: 50px;
  200. font-size: 120%;
  201. }
  202. .patient-in-q-alert {
  203. -webkit-animation: blink 1s linear infinite;
  204. -moz-animation: blink 1s linear infinite;
  205. animation: blink 1s linear infinite;
  206. opacity: 0;
  207. }
  208. @-moz-keyframes blink {
  209. 50% { opacity: 1; }
  210. 100% { opacity: 0; }
  211. }
  212. @-webkit-keyframes blink {
  213. 50% { opacity: 1; }
  214. 100% { opacity: 0; }
  215. }
  216. @keyframes blink {
  217. 50% { opacity: 1; }
  218. 100% { opacity: 0; }
  219. }