meeting.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 .thumbs {
  88. position: absolute;
  89. z-index: 2;
  90. bottom: 1rem;
  91. right: 1rem;
  92. width: 180px;
  93. height: 100%;
  94. display: flex;
  95. flex-direction: column;
  96. align-items: flex-end;
  97. justify-content: flex-end;
  98. }
  99. .main-view .thumbs .thumb-view {
  100. width: 160px;
  101. height: 120px;
  102. border: 1px solid #0d5875;
  103. box-shadow: 0 0 3px #888;
  104. border-radius: 3px;
  105. background: #444;
  106. margin-top: 1rem;
  107. }
  108. .main-view .thumbs .disconnected-view {
  109. opacity: 0;
  110. height: 0;
  111. }
  112. .tp-bar {
  113. width: 120px;
  114. }
  115. .tp-bar .tp-item {
  116. padding-top: 1rem;
  117. padding-bottom: 0.5rem;
  118. border: 0.3rem solid transparent;
  119. }
  120. .tp-bar .tp-item.active {
  121. border: 0.3rem solid #44bdad85;
  122. }
  123. .avatar {
  124. margin: auto;
  125. width: 80px;
  126. height: 80px;
  127. display: flex;
  128. align-items: center;
  129. justify-content: center;
  130. border-radius: 100%;
  131. font-size: 2rem;
  132. font-weight: 600;
  133. }
  134. .invite-image {
  135. width: 80px;
  136. margin: auto;
  137. display: block;
  138. }
  139. .text-single {
  140. white-space: nowrap;
  141. text-overflow: ellipsis;
  142. overflow: hidden;
  143. }
  144. .btn[disabled] {
  145. opacity: 0.3;
  146. }
  147. body .OT_fit-mode-cover .OT_video-element {
  148. object-fit: contain;
  149. }
  150. .hang-up {
  151. position: absolute;
  152. z-index: 2;
  153. bottom: 1rem;
  154. left: 1rem;
  155. width: 50px;
  156. height: 50px;
  157. }