Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

main.css 7.4KB

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