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

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