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

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