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

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