meeting.css 4.8 KB

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