Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. * {
  2. -webkit-user-select: none;
  3. user-select: none;
  4. }
  5. html, body{
  6. margin:0px;
  7. height:100%;
  8. color: #424242;
  9. font-family:'Helvetica Neue', Helvetica, sans-serif;
  10. font-weight: 400;
  11. background: #000000;
  12. overflow: hidden;
  13. }
  14. .right-panel {
  15. display:none;
  16. position:absolute;
  17. float: right;
  18. top: 0px;
  19. bottom: 0px;
  20. right: 0px;
  21. width: 20%;
  22. max-width: 200px;
  23. overflow: hidden;
  24. /* background-color:#dfebf1;*/
  25. background-color:#FFFFFF;
  26. border-left:1px solid #424242;
  27. z-index: 5;
  28. }
  29. #nowebrtc {
  30. display:none;
  31. }
  32. .toolbar_span {
  33. display: inline-block;
  34. position: relative;
  35. }
  36. #toolbar a.button:last-child::after {
  37. content: none;
  38. }
  39. .button {
  40. display: inline-block;
  41. position: relative;
  42. color: #FFFFFF;
  43. top:0px;
  44. padding-top: 10px;
  45. width: 38px;
  46. height: 28px;
  47. cursor: pointer;
  48. text-align: center;
  49. text-shadow: 0 1px 0 rgba(255,255,255,.3), 0 -1px 0 rgba(0,0,0,.6);
  50. z-index: 1;
  51. font-size: 1.22em !important;
  52. vertical-align: middle;
  53. }
  54. .toolbar_span>span {
  55. display: inline-block;
  56. position: absolute;
  57. font-size: 7pt;
  58. color: #ffffff;
  59. text-align:center;
  60. cursor: pointer;
  61. }
  62. #toolbar_button_chat, #chatBottomButton, #contactListButton, #numberOfParticipants {
  63. -webkit-transition: all .5s ease-in-out;
  64. -moz-transition: all .5s ease-in-out;
  65. transition: all .5s ease-in-out;
  66. }
  67. /*#ffde00*/
  68. #toolbar_button_chat.active, #contactListButton.glowing, #chatBottomButton.glowing {
  69. -webkit-text-shadow: -1px 0 10px #00ccff,
  70. 0 1px 10px #00ccff,
  71. 1px 0 10px #00ccff,
  72. 0 -1px 10px #00ccff;
  73. -moz-text-shadow: 1px 0 10px #00ccff,
  74. 0 1px 10px #00ccff,
  75. 1px 0 10px #00ccff,
  76. 0 -1px 10px #00ccff;
  77. text-shadow: -1px 0 10px #00ccff,
  78. 0 1px 10px #00ccff,
  79. 1px 0 10px #00ccff,
  80. 0 -1px 10px #00ccff;
  81. }
  82. #toolbar_button_hangup {
  83. color: #ff0000;
  84. font-size: 1.4em;
  85. }
  86. #numberOfParticipants {
  87. position: absolute;
  88. top: 0px;
  89. right: -1px;
  90. color: white;
  91. width: 13px;
  92. height: 13px;
  93. line-height: 13px;
  94. font-weight: bold;
  95. border-radius: 1px;
  96. font-size: 11px;
  97. text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  98. }
  99. #contactListButton.active #numberOfParticipants {
  100. color: #00ccff;
  101. }
  102. #toolbar {
  103. display:inline-block;
  104. position:relative;
  105. top:5px;
  106. margin-left:auto;
  107. margin-right:auto;
  108. height:38px;
  109. width:auto;
  110. background-color: rgba(0,0,0,0.5);
  111. border-radius: 1px;
  112. pointer-events: auto;
  113. }
  114. #toolbar_button_record {
  115. -webkit-transition: all .5s ease-in-out;
  116. -moz-transition: all .5s ease-in-out;
  117. transition: all .5s ease-in-out;
  118. }
  119. a.button:hover,
  120. a.bottomToolbarButton:hover {
  121. cursor: pointer;
  122. background: rgba(255, 255, 255, 0.1);
  123. border-radius: 1px;
  124. -webkit-border-radius: 1px;
  125. }
  126. .no-fa-video-camera, .fa-microphone-slash {
  127. color: #636363;
  128. }
  129. .header_button_separator {
  130. display: inline-block;
  131. position:relative;
  132. top: 5px;
  133. width: 1px;
  134. height: 20px;
  135. background: #373737;
  136. }
  137. .bottom_button_separator {
  138. display: inline-block;
  139. position: relative;
  140. left: 5px;
  141. width: 20px;
  142. height: 1px;
  143. background: #373737;
  144. }
  145. input[type='text'], input[type='password'], textarea {
  146. -webkit-user-select: text;
  147. user-select: text;
  148. display: inline-block;
  149. font-size: 14px;
  150. padding: 5px;
  151. background: #f3f3f3;
  152. border-radius: 3px;
  153. font-weight: 100;
  154. line-height: 20px;
  155. height: 40px;
  156. color: #333;
  157. text-align: left;
  158. border:1px solid #ACD8F0;
  159. outline: none; /* removes the default outline */
  160. resize: none; /* prevents the user-resizing, adjust to taste */
  161. }
  162. input[type='text'], input[type='password'], textarea:focus {
  163. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  164. replacement to the outline */
  165. }
  166. textarea {
  167. overflow: hidden;
  168. word-wrap: break-word;
  169. resize: horizontal;
  170. }
  171. button.no-icon {
  172. padding: 0 1em;
  173. }
  174. button {
  175. border: none;
  176. height: 35px;
  177. padding: 0 1em 0 2em;
  178. position: relative;
  179. border-radius: 1px;
  180. font-weight: bold;
  181. color: #fff;
  182. line-height: 35px;
  183. background: #2c8ad2;
  184. }
  185. button, input, select, textarea {
  186. margin: 0;
  187. vertical-align: baseline;
  188. }
  189. button, input[type="button"], input[type="reset"], input[type="submit"] {
  190. cursor: pointer;
  191. -webkit-appearance: button;
  192. }
  193. form {
  194. display: block;
  195. }
  196. #downloadlog {
  197. position: absolute;
  198. bottom: 5;
  199. left: 5;
  200. overflow: visible;
  201. color: rgba(255,255,255,.50);
  202. }
  203. #feedbackButton {
  204. position: absolute;
  205. bottom: 60;
  206. left: 60;
  207. overflow: visible;
  208. color: rgba(255,255,255,.50);
  209. }
  210. div.feedbackButton {
  211. display: none;
  212. position: absolute;
  213. background-color: rgba(0,0,0,.50);
  214. border-radius: 50%;
  215. width: 100px;
  216. height: 100px;
  217. bottom: -50px;
  218. left: -50px;
  219. z-index: 100;
  220. overflow: hidden;
  221. transition: all .2s ease-in-out;
  222. }
  223. div.feedbackButton:hover {
  224. transform: scale(1.3);
  225. }
  226. #bottomToolbar {
  227. display:block;
  228. position: absolute;
  229. right: 0;
  230. margin-right: 5px;
  231. bottom: 40px;
  232. width: 29px;
  233. border-radius: 1px;
  234. color: #FFF;
  235. background: rgba(0,0,0,0.5);
  236. z-index: 6; /*+1 from #remoteVideos*/
  237. }
  238. .bottomToolbarButton {
  239. display: inline-block;
  240. position: relative;
  241. color: #FFFFFF;
  242. top: 0;
  243. padding-top: 6px;
  244. margin: 2px;
  245. width: 25px;
  246. height: 20px;
  247. cursor: pointer;
  248. font-size: 10pt;
  249. text-align: center;
  250. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  251. z-index: 1;
  252. }
  253. .active {
  254. background-color: #00ccff;
  255. }
  256. .bottomToolbar_span>span {
  257. display: inline-block;
  258. position: absolute;
  259. font-size: 7pt;
  260. color: #ffffff;
  261. text-align: center;
  262. cursor: pointer;
  263. }
  264. .glow
  265. {
  266. text-shadow: 0px 0px 30px #06a5df, 0px 0px 10px #06a5df, 0px 0px 5px #06a5df,0px 0px 3px #06a5df;
  267. }
  268. .watermark {
  269. display: block;
  270. position: absolute;
  271. top: 15;
  272. width: 186px;
  273. height: 74px;
  274. background-size: contain;
  275. background-repeat: no-repeat;
  276. z-index: 2;
  277. }
  278. .leftwatermark {
  279. display: none;
  280. left: 15;
  281. background-image:url(../images/watermark.png);
  282. background-position: center left;
  283. }
  284. .rightwatermark {
  285. display: none;
  286. right: 15;
  287. background-position: center right;
  288. }
  289. .poweredby {
  290. display: none;
  291. position: absolute;
  292. left: 25;
  293. bottom: 7;
  294. font-size: 11pt;
  295. color: rgba(255,255,255,.50);
  296. text-decoration: none;
  297. z-index: 100;
  298. }
  299. #toast-container.notification-bottom-right {
  300. bottom: 140px;
  301. right: 5px;
  302. }
  303. #toast-container.notification-bottom-right-center {
  304. right: 205px;
  305. }
  306. #toast-container .toast-info {
  307. -webkit-box-shadow: none;
  308. box-shadow: none;
  309. }
  310. .toast-close-button {
  311. right: -7px;
  312. top: -19px;
  313. }
  314. #toast-container .toast-info {
  315. background-color: black;
  316. border: 1px solid #3a3a3a;
  317. width: 220px;
  318. padding: 10px 10px 10px 50px;
  319. }
  320. .connected {
  321. color: forestgreen;
  322. font-size: 12px;
  323. }
  324. .disconnected {
  325. color: darkred;
  326. font-size: 12px;
  327. }
  328. .lastN {
  329. color: #a3a3a3;
  330. font-size: 12px;
  331. }
  332. .toast-close-button:hover,
  333. .toast-close-button:focus {
  334. color: #ffffff;
  335. opacity: 1;
  336. -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  337. filter: alpha(opacity=100);
  338. }
  339. .toast-message .nickname {
  340. font-weight: bold;
  341. }