Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.css 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  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. input[type='text'], input[type='password'], textarea {
  142. -webkit-user-select: text;
  143. user-select: text;
  144. display: inline-block;
  145. font-size: 14px;
  146. padding: 5px;
  147. background: #f3f3f3;
  148. border-radius: 3px;
  149. font-weight: 100;
  150. line-height: 20px;
  151. height: 40px;
  152. color: #333;
  153. text-align: left;
  154. border:1px solid #ACD8F0;
  155. outline: none; /* removes the default outline */
  156. resize: none; /* prevents the user-resizing, adjust to taste */
  157. }
  158. input[type='text'], input[type='password'], textarea:focus {
  159. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  160. replacement to the outline */
  161. }
  162. textarea {
  163. overflow: hidden;
  164. word-wrap: break-word;
  165. resize: horizontal;
  166. }
  167. button.no-icon {
  168. padding: 0 1em;
  169. }
  170. button {
  171. border: none;
  172. height: 35px;
  173. padding: 0 1em 0 2em;
  174. position: relative;
  175. border-radius: 1px;
  176. font-weight: bold;
  177. color: #fff;
  178. line-height: 35px;
  179. background: #2c8ad2;
  180. }
  181. button, input, select, textarea {
  182. margin: 0;
  183. vertical-align: baseline;
  184. }
  185. button, input[type="button"], input[type="reset"], input[type="submit"] {
  186. cursor: pointer;
  187. -webkit-appearance: button;
  188. }
  189. form {
  190. display: block;
  191. }
  192. #downloadlog {
  193. display: none;
  194. position: absolute;
  195. bottom: 5;
  196. left: 5;
  197. overflow: visible;
  198. color: rgba(255,255,255,.50);
  199. }
  200. #feedbackButton {
  201. position: absolute;
  202. bottom: 60;
  203. left: 60;
  204. overflow: visible;
  205. color: rgba(255,255,255,.50);
  206. }
  207. #feedbackButtonDiv {
  208. display: none;
  209. position: absolute;
  210. background-color: rgba(0,0,0,.50);
  211. border-radius: 50%;
  212. width: 100px;
  213. height: 100px;
  214. bottom: -50px;
  215. left: -50px;
  216. z-index: 100;
  217. overflow: hidden;
  218. transition: all 2s ease-in-out;
  219. }
  220. #feedbackButtonDiv.hidden {
  221. bottom: -246px;
  222. }
  223. div.feedbackButton:hover {
  224. transform: scale(1.3);
  225. }
  226. #bottomToolbar {
  227. display:block;
  228. position: absolute;
  229. right: 0;
  230. margin-right: 5px;
  231. bottom: 40px;
  232. width: 29px;
  233. border-radius: 1px;
  234. color: #FFF;
  235. background: rgba(0,0,0,0.5);
  236. z-index: 6; /*+1 from #remoteVideos*/
  237. }
  238. .bottomToolbarButton {
  239. display: inline-block;
  240. position: relative;
  241. color: #FFFFFF;
  242. top: 0;
  243. padding-top: 6px;
  244. margin: 2px;
  245. width: 25px;
  246. height: 20px;
  247. cursor: pointer;
  248. font-size: 10pt;
  249. text-align: center;
  250. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  251. z-index: 1;
  252. }
  253. .active {
  254. background-color: #00ccff;
  255. }
  256. .bottomToolbar_span>span {
  257. display: inline-block;
  258. position: absolute;
  259. font-size: 7pt;
  260. color: #ffffff;
  261. text-align: center;
  262. cursor: pointer;
  263. }
  264. .glow
  265. {
  266. text-shadow: 0px 0px 30px #06a5df, 0px 0px 10px #06a5df, 0px 0px 5px #06a5df,0px 0px 3px #06a5df;
  267. }
  268. .watermark {
  269. display: block;
  270. position: absolute;
  271. top: 15;
  272. width: 186px;
  273. height: 74px;
  274. background-size: contain;
  275. background-repeat: no-repeat;
  276. z-index: 2;
  277. }
  278. .leftwatermark {
  279. display: none;
  280. left: 15;
  281. background-image:url(../images/watermark.png);
  282. background-position: center left;
  283. }
  284. .rightwatermark {
  285. display: none;
  286. right: 15;
  287. background-position: center right;
  288. }
  289. .poweredby {
  290. display: none;
  291. position: absolute;
  292. left: 25;
  293. bottom: 7;
  294. font-size: 11pt;
  295. color: rgba(255,255,255,.50);
  296. text-decoration: none;
  297. z-index: 100;
  298. }
  299. #toast-container.notification-bottom-right {
  300. bottom: 140px;
  301. right: 5px;
  302. }
  303. #toast-container.notification-bottom-right-center {
  304. right: 205px;
  305. }
  306. #toast-container .toast-info {
  307. -webkit-box-shadow: none;
  308. box-shadow: none;
  309. }
  310. .toast-close-button {
  311. right: -7px;
  312. top: -19px;
  313. }
  314. #toast-container .toast-info {
  315. background-color: black;
  316. border: 1px solid #3a3a3a;
  317. width: 220px;
  318. padding: 10px 10px 10px 50px;
  319. }
  320. .connected {
  321. color: #21B9FC;
  322. font-size: 12px;
  323. }
  324. .lastN, .disconnected {
  325. color: #a3a3a3;
  326. font-size: 12px;
  327. }
  328. .toast-close-button:hover,
  329. .toast-close-button:focus {
  330. color: #ffffff;
  331. opacity: 1;
  332. -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  333. filter: alpha(opacity=100);
  334. }
  335. .toast-message .nickname {
  336. font-weight: bold;
  337. }