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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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. .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. z-index: 100;
  214. color: rgba(255,255,255,.50);
  215. }
  216. #bottomToolbar {
  217. display:block;
  218. position: absolute;
  219. right: 0;
  220. margin-right: 5px;
  221. bottom: 40px;
  222. width: 29px;
  223. border-radius: 6px;
  224. color: #FFF;
  225. border: 1px solid rgba(256, 256, 256, 0.2);
  226. background: rgba(0,0,0,0.8);
  227. z-index: 6; /*+1 from #remoteVideos*/
  228. }
  229. .bottomToolbarButton {
  230. display: inline-block;
  231. position: relative;
  232. color: #FFFFFF;
  233. top: 0;
  234. padding-top: 6px;
  235. margin: 2px;
  236. width: 25px;
  237. height: 20px;
  238. cursor: pointer;
  239. font-size: 10pt;
  240. text-align: center;
  241. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  242. z-index: 1;
  243. }
  244. .active {
  245. color: #00ccff;
  246. }
  247. .bottomToolbar_span>span {
  248. display: inline-block;
  249. position: absolute;
  250. font-size: 7pt;
  251. color: #ffffff;
  252. text-align: center;
  253. cursor: pointer;
  254. }
  255. .glow
  256. {
  257. text-shadow: 0px 0px 30px #06a5df, 0px 0px 10px #06a5df, 0px 0px 5px #06a5df,0px 0px 3px #06a5df;
  258. }
  259. .watermark {
  260. display: block;
  261. position: absolute;
  262. top: 15;
  263. width: 186px;
  264. height: 74px;
  265. background-size: contain;
  266. background-repeat: no-repeat;
  267. z-index: 2;
  268. }
  269. .leftwatermark {
  270. display: none;
  271. left: 15;
  272. background-image:url(../images/watermark.png);
  273. background-position: center left;
  274. }
  275. .rightwatermark {
  276. display: none;
  277. right: 15;
  278. background-position: center right;
  279. }
  280. .poweredby {
  281. display: none;
  282. position: absolute;
  283. left: 25;
  284. bottom: 7;
  285. font-size: 11pt;
  286. color: rgba(255,255,255,.50);
  287. text-decoration: none;
  288. z-index: 100;
  289. }
  290. #toast-container.notification-bottom-right {
  291. bottom: 120px;
  292. right: 5px;
  293. }
  294. #toast-container.notification-bottom-right-center {
  295. right: 205px;
  296. }
  297. #toast-container .toast-info {
  298. -webkit-box-shadow: none;
  299. box-shadow: none;
  300. }
  301. .toast-close-button {
  302. right: -7px;
  303. top: -19px;
  304. }
  305. #toast-container .toast-info {
  306. background-color: black;
  307. border: 1px solid #3a3a3a;
  308. width: 220px;
  309. padding: 10px 10px 10px 50px;
  310. }
  311. .connected {
  312. color: forestgreen;
  313. font-size: 12px;
  314. }
  315. .disconnected {
  316. color: darkred;
  317. font-size: 12px;
  318. }
  319. .lastN {
  320. color: #a3a3a3;
  321. font-size: 12px;
  322. }
  323. .toast-close-button:hover,
  324. .toast-close-button:focus {
  325. color: #ffffff;
  326. opacity: 1;
  327. -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  328. filter: alpha(opacity=100);
  329. }
  330. .toast-message .nickname {
  331. font-weight: bold;
  332. }