meeting.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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: 1.5rem;
  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.5);
  137. color: #fff;
  138. font-size: 11px;
  139. white-space: nowrap;
  140. padding: 0 5px;
  141. overflow: hidden;
  142. text-overflow: ellipsis;
  143. }
  144. .main-view .thumbs .disconnected-view {
  145. opacity: 0;
  146. height: 0;
  147. }
  148. .main-view .not-publishing {
  149. background: grey;
  150. }
  151. .main-view .not-publishing * {
  152. opacity: 0;
  153. }
  154. .tp-bar {
  155. width: 120px;
  156. }
  157. .tp-bar .tp-item {
  158. padding-top: 1rem;
  159. padding-bottom: 0.5rem;
  160. border: 0.3rem solid transparent;
  161. }
  162. .tp-bar .tp-item.active {
  163. border: 0.3rem solid #44bdad85;
  164. }
  165. .avatar {
  166. margin: auto;
  167. width: 80px;
  168. height: 80px;
  169. display: flex;
  170. align-items: center;
  171. justify-content: center;
  172. border-radius: 100%;
  173. font-size: 2rem;
  174. font-weight: 600;
  175. }
  176. .invite-image {
  177. width: 80px;
  178. margin: auto;
  179. display: block;
  180. }
  181. .text-single {
  182. white-space: nowrap;
  183. text-overflow: ellipsis;
  184. overflow: hidden;
  185. }
  186. .btn[disabled] {
  187. opacity: 0.3;
  188. }
  189. body .OT_fit-mode-cover .OT_video-element {
  190. object-fit: contain;
  191. }
  192. .hang-up {
  193. position: absolute;
  194. z-index: 2;
  195. bottom: 1rem;
  196. left: 1rem;
  197. width: 50px;
  198. height: 50px;
  199. font-size: 120%;
  200. }
  201. .call-mcp {
  202. position: absolute;
  203. z-index: 2;
  204. bottom: 1rem;
  205. left: calc(2rem + 50px);
  206. width: 50px;
  207. height: 50px;
  208. font-size: 120%;
  209. }
  210. .patient-in-q-alert {
  211. -webkit-animation: blink 1s linear infinite;
  212. -moz-animation: blink 1s linear infinite;
  213. animation: blink 1s linear infinite;
  214. opacity: 0;
  215. }
  216. @-moz-keyframes blink {
  217. 50% { opacity: 1; }
  218. 100% { opacity: 0; }
  219. }
  220. @-webkit-keyframes blink {
  221. 50% { opacity: 1; }
  222. 100% { opacity: 0; }
  223. }
  224. @keyframes blink {
  225. 50% { opacity: 1; }
  226. 100% { opacity: 0; }
  227. }