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

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