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

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