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 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. html, body{
  2. margin:0px;
  3. height:100%;
  4. color: #424242;
  5. font-family:'Helvetica Neue', Helvetica, sans-serif;
  6. font-weight: 400;
  7. background: #e9e9e9;
  8. overflow-x: hidden;
  9. }
  10. #videospace {
  11. display: block;
  12. position: absolute;
  13. top: 39px;
  14. left: 0px;
  15. right: 0px;
  16. float: left;
  17. }
  18. .videocontainer {
  19. position: relative;
  20. margin-left: auto;
  21. margin-right: auto;
  22. }
  23. #presentation, #etherpad, .videocontainer>video {
  24. position: absolute;
  25. left: 0px;
  26. top: 0px;
  27. z-index: 1;
  28. width: 100%;
  29. height: 100%;
  30. }
  31. #etherpad {
  32. z-index: 0;
  33. }
  34. #etherpadButton {
  35. display: none;
  36. }
  37. .videocontainer>span {
  38. display: none; /* enable when you want nicks to be shown */
  39. position: absolute;
  40. left: 0px;
  41. bottom: -20px;
  42. z-index: 0;
  43. width: 100%;
  44. font-size: 10pt;
  45. }
  46. #localVideo {
  47. -moz-transform: scaleX(-1);
  48. -webkit-transform: scaleX(-1);
  49. -o-transform: scaleX(-1);
  50. transform: scaleX(-1);
  51. }
  52. #remoteVideos {
  53. display:block;
  54. position:relative;
  55. text-align:center;
  56. height:196px;
  57. padding: 5px 0px;
  58. width:auto;
  59. overflow: hidden;
  60. border:1px solid transparent;
  61. z-index: 2;
  62. }
  63. #remoteVideos>span {
  64. display: inline-block;
  65. z-index:0;
  66. border:1px solid #FFFFFF;
  67. background-image:url(../images/avatar1.png);
  68. background-size: contain;
  69. }
  70. #remoteVideos>span:hover {
  71. cursor: pointer;
  72. cursor: hand;
  73. transform:scale(1.08, 1.08);
  74. -webkit-transform:scale(1.08, 1.08);
  75. transition-duration: 0.5s;
  76. -webkit-transition-duration: 0.5s;
  77. background-color: #FFFFFF;
  78. -webkit-animation-name: greyPulse;
  79. -webkit-animation-duration: 2s;
  80. -webkit-animation-iteration-count: 1;
  81. -webkit-box-shadow: 0 0 18px #515151;
  82. border:1px solid #FFFFFF;
  83. z-index: 10;
  84. }
  85. #chatspace {
  86. display:none;
  87. position:absolute;
  88. float: right;
  89. top: 40px;
  90. bottom: 0px;
  91. right: 0px;
  92. width: 20%;
  93. max-width: 200px;
  94. overflow: hidden;
  95. /* background-color:#dfebf1;*/
  96. background-color:#FFFFFF;
  97. border-left:1px solid #424242;
  98. }
  99. #chatconversation {
  100. position: relative;
  101. top: 5px;
  102. padding: 5px;
  103. text-align: left;
  104. line-height: 20px;
  105. font-size: 10pt;
  106. width: 100%;
  107. height: 95%;
  108. overflow-y: scroll;
  109. overflow-x: hidden;
  110. word-wrap: break-word;
  111. visibility: hidden;
  112. }
  113. .localuser {
  114. color: #087dba;
  115. }
  116. .remoteuser {
  117. color: #424242;
  118. }
  119. #usermsg {
  120. position: relative;
  121. width: 100%;
  122. height: 5%;
  123. padding: 5px;
  124. z-index: 5;
  125. max-height:150px;
  126. min-height:50px;
  127. visibility:hidden;
  128. border: 0px none;
  129. border-top: 1px solid #cccccc;
  130. background: #FFFFFF;
  131. box-shadow: none;
  132. border-radius:0;
  133. font-size: 10pt;
  134. }
  135. #usermsg: hover {
  136. border: 0px none;
  137. border-top: 1px solid #cccccc;
  138. box-shadow: none;
  139. }
  140. #nickname {
  141. position: absolute;
  142. text-align: center;
  143. color: #9d9d9d;
  144. font-size: 18;
  145. top: 100px;
  146. left: 5px;
  147. right: 5px;
  148. width: 95%;
  149. }
  150. #nickinput {
  151. margin-top: 20px;
  152. font-size: 14;
  153. }
  154. #spacer {
  155. height:5px;
  156. }
  157. #settings {
  158. display:none;
  159. }
  160. #nowebrtc {
  161. display:none;
  162. }
  163. #header{
  164. display:block;
  165. height:39px;
  166. text-align:center;
  167. background-color: #2591e5;
  168. }
  169. #left {
  170. display:block;
  171. position: absolute;
  172. left: 0px;
  173. top: 0px;
  174. width: 100px;
  175. height: 39px;
  176. background-image:url(../images/left1.png);
  177. background-repeat:no-repeat;
  178. margin: 0;
  179. padding: 0;
  180. }
  181. #leftlogo {
  182. position:absolute;
  183. top: 5px;
  184. left: 15px;
  185. background-image:url(../images/jitsilogo.png);
  186. background-repeat:no-repeat;
  187. height: 31px;
  188. width: 68px;
  189. z-index:1;
  190. }
  191. #toolbar {
  192. display:block;
  193. position:relative;
  194. height:39px;
  195. width:auto;
  196. overflow: hidden;
  197. z-index:0;
  198. visibility: hidden;
  199. }
  200. #settingsButton {
  201. visibility: hidden;
  202. }
  203. .toolbar_span {
  204. display: inline-block;
  205. position: relative;
  206. }
  207. .button {
  208. display: inline-block;
  209. position: relative;
  210. color: #FFFFFF;
  211. top: 0;
  212. padding: 10px 0px;
  213. width: 39px;
  214. cursor: pointer;
  215. font-size: 11pt;
  216. text-align: center;
  217. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  218. z-index: 1;
  219. }
  220. .toolbar_span>span {
  221. display: inline-block;
  222. position: absolute;
  223. font-size: 7pt;
  224. color: #ffffff;
  225. text-align:center;
  226. cursor: pointer;
  227. }
  228. #chat {
  229. font-size:1.65em;
  230. -webkit-transition: all .5s ease-in-out;;
  231. -moz-transition: all .5s ease-in-out;;
  232. transition: all .5s ease-in-out;;
  233. }
  234. #chat.active {
  235. -webkit-text-shadow: 0 0 10px #ffffff;
  236. -moz-text-shadow: 0 0 10px #ffffff;
  237. text-shadow: 0 0 10px #ffffff;
  238. /* -webkit-transform: scale(1.1); */
  239. }
  240. a.button:hover {
  241. top: 0;
  242. cursor: pointer;
  243. background: rgba(0, 0, 0, 0.3);
  244. border-radius: 5px;
  245. background-clip: padding-box;
  246. -webkit-border-radius: 5px;
  247. -webkit-background-clip: padding-box;
  248. }
  249. .no-fa-video-camera, .fa-microphone-slash {
  250. color: #636363;
  251. }
  252. .fade_line {
  253. height: 1px;
  254. background: black;
  255. background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
  256. }
  257. .header_button_separator {
  258. display: inline-block;
  259. position:relative;
  260. top: 7;
  261. width: 1px;
  262. height: 25px;
  263. background: white;
  264. background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
  265. }
  266. #right {
  267. display:block;
  268. position:absolute;
  269. right: 0px;
  270. top: 0px;
  271. background-image:url(../images/right1.png);
  272. background-repeat:no-repeat;
  273. margin:0;
  274. padding:0;
  275. width:100px;
  276. height:39px;
  277. }
  278. #rightlogo {
  279. position:absolute;
  280. top: 6px;
  281. right: 15px;
  282. background-image:url(../images/estoslogo.png);
  283. background-repeat:no-repeat;
  284. height: 25px;
  285. width: 62px;
  286. z-index:1;
  287. }
  288. input[type='text'], textarea {
  289. display: inline-block;
  290. font-size: 14px;
  291. padding: 5px;
  292. background: #f3f3f3;
  293. border-radius: 3px;
  294. font-weight: 100;
  295. line-height: 20px;
  296. height: 40px;
  297. color: #333;
  298. text-align: left;
  299. border:1px solid #ACD8F0;
  300. outline: none; /* removes the default outline */
  301. resize: none; /* prevents the user-resizing, adjust to taste */
  302. }
  303. input[type='text'], textarea:focus {
  304. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  305. replacement to the outline */
  306. }
  307. textarea {
  308. overflow: hidden;
  309. word-wrap: break-word;
  310. resize: horizontal;
  311. }
  312. button.no-icon {
  313. padding: 0 1em;
  314. }
  315. button {
  316. border: none;
  317. height: 35px;
  318. padding: 0 1em 0 2em;
  319. position: relative;
  320. border-radius: 3px;
  321. font-weight: bold;
  322. color: #fff;
  323. line-height: 35px;
  324. background: #2c8ad2;
  325. }
  326. button, input, select, textarea {
  327. font-size: 100%;
  328. margin: 0;
  329. vertical-align: baseline;
  330. }
  331. button, input[type="button"], input[type="reset"], input[type="submit"] {
  332. cursor: pointer;
  333. -webkit-appearance: button;
  334. }
  335. form {
  336. display: block;
  337. }
  338. #downloadlog {
  339. position: absolute;
  340. bottom: 5;
  341. left: 5;
  342. overflow: visible;
  343. z-index: 100;
  344. }
  345. .videocontainer>span.focusindicator {
  346. display: inline-block;
  347. position: absolute;
  348. color: #FFFFFF;
  349. top: 0;
  350. padding: 5px 0px;
  351. width: 25px;
  352. font-size: 11pt;
  353. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  354. border: 0px;
  355. z-index: 2;
  356. }
  357. .videocontainer>span.displayname,
  358. .videocontainer>input.displayname {
  359. display: inline-block;
  360. position: absolute;
  361. background: -webkit-linear-gradient(left, rgba(0,0,0,.7), rgba(0,0,0,0));
  362. color: #b7b7b7;
  363. bottom: 0;
  364. left: 0;
  365. padding: 3px 5px;
  366. width: 100%;
  367. height: auto;
  368. max-height: 18px;
  369. font-size: 9pt;
  370. text-align: left;
  371. text-overflow: ellipsis;
  372. overflow: hidden;
  373. white-space: nowrap;
  374. z-index: 2;
  375. box-sizing: border-box;
  376. }
  377. #localVideoContainer>span.displayname:hover {
  378. cursor: text;
  379. }
  380. .videocontainer>a.displayname {
  381. display: inline-block;
  382. position: absolute;
  383. color: #b7b7b7;
  384. bottom: 0;
  385. right: 0;
  386. padding: 3px 5px;
  387. font-size: 9pt;
  388. cursor: pointer;
  389. z-index: 2;
  390. }
  391. #reloadPresentation {
  392. display: none;
  393. position: absolute;
  394. color: #FFFFFF;
  395. top: 0;
  396. right: 0;
  397. padding: 10px 10px;
  398. font-size: 11pt;
  399. cursor: pointer;
  400. background: rgba(0, 0, 0, 0.3);
  401. border-radius: 5px;
  402. background-clip: padding-box;
  403. -webkit-border-radius: 5px;
  404. -webkit-background-clip: padding-box;
  405. z-index: 3;
  406. }