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

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