You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.css 7.9KB

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