meeting.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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. background: #000;
  80. }
  81. .main-view .full-view {
  82. width: 100%;
  83. height: 100%;
  84. background: #444;
  85. border-radius: 3px;
  86. margin: 0 auto;
  87. }
  88. .main-view .full-view[data-name]::after {
  89. position: absolute;
  90. content: attr(data-name);
  91. left: 0;
  92. width: 100%;
  93. top: 0;
  94. background: rgba(0, 0, 0, 0.5);
  95. color: #fff;
  96. font-size: 13px;
  97. white-space: nowrap;
  98. padding: 0.5rem;
  99. overflow: hidden;
  100. text-overflow: ellipsis;
  101. pointer-events: none;
  102. }
  103. .main-view .thumbs {
  104. position: absolute;
  105. z-index: 2;
  106. bottom: 1.5rem;
  107. right: 1rem;
  108. width: 180px;
  109. height: 100%;
  110. display: flex;
  111. flex-direction: column;
  112. align-items: flex-end;
  113. justify-content: flex-end;
  114. }
  115. .main-view .thumbs .thumb-view {
  116. width: 100px;
  117. height: 75px;
  118. border: 1px solid #0d5875;
  119. box-shadow: 0 0 3px #888;
  120. border-radius: 3px;
  121. background: #444;
  122. margin-top: 1rem;
  123. position: relative;
  124. cursor: pointer;
  125. }
  126. .main-view .thumbs .thumb-view>* {
  127. pointer-events: none;
  128. }
  129. .main-view .thumbs .thumb-view[data-name]::after {
  130. position: absolute;
  131. content: attr(data-name);
  132. left: 0;
  133. width: 100%;
  134. bottom: 0;
  135. background: rgba(0, 0, 0, 0.5);
  136. color: #fff;
  137. font-size: 11px;
  138. white-space: nowrap;
  139. padding: 0 5px;
  140. overflow: hidden;
  141. text-overflow: ellipsis;
  142. }
  143. .main-view .thumbs .disconnected-view {
  144. opacity: 0;
  145. height: 0;
  146. }
  147. .main-view .not-publishing {
  148. background: grey;
  149. }
  150. .main-view .not-publishing * {
  151. opacity: 0;
  152. }
  153. .tp-bar {
  154. width: 120px;
  155. }
  156. .tp-bar .tp-item {
  157. padding-top: 1rem;
  158. padding-bottom: 0.5rem;
  159. border: 0.3rem solid transparent;
  160. }
  161. .tp-bar .tp-item.active {
  162. border: 0.3rem solid #44bdad85;
  163. }
  164. .avatar {
  165. margin: auto;
  166. width: 80px;
  167. height: 80px;
  168. display: flex;
  169. align-items: center;
  170. justify-content: center;
  171. border-radius: 100%;
  172. font-size: 2rem;
  173. font-weight: 600;
  174. }
  175. .invite-image {
  176. width: 80px;
  177. margin: auto;
  178. display: block;
  179. }
  180. .text-single {
  181. white-space: nowrap;
  182. text-overflow: ellipsis;
  183. overflow: hidden;
  184. }
  185. .btn[disabled] {
  186. opacity: 0.3;
  187. }
  188. body .OT_fit-mode-cover .OT_video-element {
  189. object-fit: contain;
  190. }
  191. .hang-up {
  192. position: absolute;
  193. z-index: 2;
  194. bottom: 1rem;
  195. left: 1rem;
  196. width: 50px;
  197. height: 50px;
  198. font-size: 120%;
  199. }
  200. .call-mcp {
  201. position: absolute;
  202. z-index: 2;
  203. bottom: 1rem;
  204. left: calc(2rem + 50px);
  205. width: 50px;
  206. height: 50px;
  207. font-size: 120%;
  208. }
  209. .patient-in-q-alert {
  210. -webkit-animation: blink 1s linear infinite;
  211. -moz-animation: blink 1s linear infinite;
  212. animation: blink 1s linear infinite;
  213. opacity: 0;
  214. }
  215. @-moz-keyframes blink {
  216. 50% { opacity: 1; }
  217. 100% { opacity: 0; }
  218. }
  219. @-webkit-keyframes blink {
  220. 50% { opacity: 1; }
  221. 100% { opacity: 0; }
  222. }
  223. @keyframes blink {
  224. 50% { opacity: 1; }
  225. 100% { opacity: 0; }
  226. }