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.

videolayout_default.css 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. #videospace {
  2. display: block;
  3. position: absolute;
  4. top: 0px;
  5. left: 0px;
  6. right: 0px;
  7. overflow: hidden;
  8. }
  9. #remoteVideos {
  10. display:block;
  11. position:absolute;
  12. text-align:right;
  13. height:196px;
  14. padding: 18px;
  15. bottom: 0;
  16. left: 0;
  17. right: 20px;
  18. width:auto;
  19. border:1px solid transparent;
  20. z-index: 5;
  21. transition: bottom 2s;
  22. overflow: visible !important;
  23. }
  24. #remotevideos.hidden {
  25. bottom: -196px;
  26. }
  27. .videocontainer {
  28. position: relative;
  29. margin-left: auto;
  30. margin-right: auto;
  31. }
  32. #remoteVideos .videocontainer {
  33. display: inline-block;
  34. background-color: black;
  35. background-repeat: no-repeat;
  36. background-position: 45;
  37. background-size: contain;
  38. border-radius:8px;
  39. border: 2px solid #212425;
  40. margin-right: 3px;
  41. }
  42. #remoteVideos .videocontainer:hover,
  43. #remoteVideos .videocontainer.videoContainerFocused {
  44. width: 100%;
  45. height: 100%;
  46. content:"";
  47. cursor: pointer;
  48. cursor: hand;
  49. /* transform:scale(1.08, 1.08);
  50. -webkit-transform:scale(1.08, 1.08); */
  51. transition-duration: 0.5s;
  52. -webkit-transition-duration: 0.5s;
  53. -webkit-animation-name: greyPulse;
  54. -webkit-animation-duration: 2s;
  55. -webkit-animation-iteration-count: 1;
  56. overflow: visible !important;
  57. }
  58. #remoteVideos .videocontainer:hover {
  59. -webkit-box-shadow: inset 0 0 10px #FFFFFF, 0 0 10px #FFFFFF;
  60. border: 2px solid #FFFFFF;
  61. }
  62. #remoteVideos .videocontainer.videoContainerFocused {
  63. -webkit-box-shadow: inset 0 0 28px #006d91;
  64. border: 2px solid #006d91;
  65. }
  66. #remoteVideos .videocontainer.videoContainerFocused:hover {
  67. -webkit-box-shadow: inset 0 0 5px #FFFFFF, 0 0 10px #FFFFFF, inset 0 0 60px #006d91;
  68. border: 2px solid #FFFFFF;
  69. }
  70. #localVideoWrapper {
  71. display:inline-block;
  72. -webkit-mask-box-image: url(../images/videomask.svg);
  73. border-radius:0px !important;
  74. border: 0px !important;
  75. }
  76. #remoteVideos .videocontainer>video {
  77. border-radius:4px;
  78. }
  79. .flipVideoX {
  80. transform: scale(-1, 1);
  81. -moz-transform: scale(-1, 1);
  82. -webkit-transform: scale(-1, 1);
  83. -o-transform: scale(-1, 1);
  84. }
  85. #localVideoWrapper>video {
  86. border-radius:0px !important;
  87. }
  88. #largeVideo,
  89. #largeVideoContainer {
  90. overflow: hidden;
  91. text-align: center;
  92. }
  93. #largeVideo
  94. {
  95. object-fit: cover;
  96. }
  97. #presentation,
  98. #etherpad,
  99. #localVideoWrapper>video,
  100. #localVideoWrapper,
  101. .videocontainer>video {
  102. position: absolute;
  103. left: 0;
  104. top: 0;
  105. z-index: 1;
  106. width: 100%;
  107. height: 100%;
  108. }
  109. #etherpad,
  110. #presentation {
  111. text-align: center;
  112. }
  113. #etherpad {
  114. z-index: 0;
  115. }
  116. #etherpadButton {
  117. display: none;
  118. }
  119. #remoteVideos .videocontainer>span.focusindicator,
  120. #remoteVideos .videocontainer>span.remotevideomenu {
  121. display: inline-block;
  122. position: absolute;
  123. color: #FFFFFF;
  124. top: 0;
  125. left: 0;
  126. padding: 5px 0px;
  127. width: 25px;
  128. font-size: 11pt;
  129. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  130. border: 0px;
  131. z-index: 2;
  132. text-align: center;
  133. }
  134. #remoteVideos .nick {
  135. display: none; /* enable when you want nicks to be shown */
  136. position: absolute;
  137. left: 0px;
  138. bottom: -20px;
  139. z-index: 0;
  140. width: 100%;
  141. font-size: 10pt;
  142. }
  143. .videocontainer>span.displayname,
  144. .videocontainer>input.displayname {
  145. display: none;
  146. position: absolute;
  147. color: #FFFFFF;
  148. background: rgba(0,0,0,.7);
  149. text-align: center;
  150. text-overflow: ellipsis;
  151. width: 70%;
  152. height: 20%;
  153. left: 15%;
  154. top: 40%;
  155. padding: 5px;
  156. font-size: 11pt;
  157. overflow: hidden;
  158. white-space: nowrap;
  159. z-index: 2;
  160. border-radius:20px;
  161. }
  162. .videocontainer>span.status {
  163. display: inline-block;
  164. position: absolute;
  165. color: #FFFFFF;
  166. background: rgba(0,0,0,.7);
  167. text-align: center;
  168. text-overflow: ellipsis;
  169. width: 70%;
  170. height: 15%;
  171. left: 15%;
  172. bottom: 2%;
  173. padding: 5px;
  174. font-size: 10pt;
  175. overflow: hidden;
  176. white-space: nowrap;
  177. z-index: 2;
  178. border-radius:20px;
  179. }
  180. .connectionindicator
  181. {
  182. display: inline-block;
  183. position: absolute;
  184. top: 7px;
  185. right: 0;
  186. padding: 0px 5px;
  187. z-index: 3;
  188. width: 18px;
  189. height: 13px;
  190. }
  191. .connection.connection_empty
  192. {
  193. color: #8B8B8B;/*#FFFFFF*/
  194. overflow: hidden;
  195. }
  196. .connection.connection_full
  197. {
  198. color: #FFFFFF;/*#15A1ED*/
  199. overflow: hidden;
  200. }
  201. .connection
  202. {
  203. position: absolute;
  204. left: 0px;
  205. top: 0px;
  206. font-size: 8pt;
  207. border: 0px;
  208. width: 18px;
  209. height: 13px;
  210. }
  211. .connection_info
  212. {
  213. float: left;
  214. padding-bottom: 5px;
  215. }
  216. .connection_info > table
  217. {
  218. white-space: nowrap;
  219. }
  220. .connection_info, .connection_info > table
  221. {
  222. text-align: left;
  223. font-size: 11px;
  224. color: #ffffff;
  225. }
  226. #localVideoContainer>span.status:hover,
  227. #localVideoContainer>span.displayname:hover {
  228. cursor: text;
  229. }
  230. .videocontainer>span.status,
  231. .videocontainer>span.displayname {
  232. pointer-events: none;
  233. }
  234. .videocontainer>input.displayname {
  235. height: auto;
  236. }
  237. #localDisplayName {
  238. pointer-events: auto !important;
  239. }
  240. .videocontainer>a.status,
  241. .videocontainer>a.displayname {
  242. display: inline-block;
  243. position: absolute;
  244. color: #FFFFFF;
  245. bottom: 0;
  246. right: 0;
  247. padding: 3px 5px;
  248. font-size: 9pt;
  249. cursor: pointer;
  250. z-index: 2;
  251. }
  252. .videocontainer>span.audioMuted {
  253. display: inline-block;
  254. position: absolute;
  255. color: #FFFFFF;
  256. top: 0;
  257. padding: 8px 5px;
  258. width: 25px;
  259. font-size: 8pt;
  260. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  261. border: 0px;
  262. z-index: 3;
  263. text-align: center;
  264. }
  265. .videocontainer>span.videoMuted {
  266. display: inline-block;
  267. position: absolute;
  268. color: #FFFFFF;
  269. top: 0;
  270. right: 0;
  271. padding: 8px 5px;
  272. width: 25px;
  273. font-size: 8pt;
  274. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  275. border: 0px;
  276. z-index: 3;
  277. }
  278. #reloadPresentation {
  279. display: none;
  280. position: absolute;
  281. color: #FFFFFF;
  282. top: 0;
  283. right:0;
  284. padding: 10px 10px;
  285. font-size: 11pt;
  286. cursor: pointer;
  287. background: rgba(0, 0, 0, 0.3);
  288. border-radius: 5px;
  289. background-clip: padding-box;
  290. -webkit-border-radius: 5px;
  291. -webkit-background-clip: padding-box;
  292. z-index: 20; /*The reload button should appear on top of the header!*/
  293. }
  294. #header{
  295. display:none;
  296. position:absolute;
  297. text-align:center;
  298. top:0;
  299. left:0;
  300. right:0;
  301. z-index:10;
  302. pointer-events: none;
  303. }
  304. #toolbar {
  305. display:inline-block;
  306. position:relative;
  307. margin-top:5px;
  308. margin-left:auto;
  309. margin-right:auto;
  310. padding-left:2px;
  311. padding-right:2px;
  312. height:38px;
  313. width:auto;
  314. background-color: rgba(0,0,0,0.8);
  315. border: 1px solid rgba(256, 256, 256, 0.2);
  316. border-radius: 6px;
  317. pointer-events: auto;
  318. }
  319. #subject {
  320. position: relative;
  321. z-index: 3;
  322. width: auto;
  323. padding: 5px;
  324. margin-left: 40%;
  325. margin-right: 40%;
  326. text-align: center;
  327. background: linear-gradient(to bottom, rgba(255,255,255,.85) , rgba(255,255,255,.35));
  328. -webkit-box-shadow: 0 0 2px #000000, 0 0 10px #000000;
  329. border-bottom-left-radius: 12px;
  330. border-bottom-right-radius: 12px;
  331. display: none;
  332. }
  333. .audiolevel {
  334. display: inline-block;
  335. position: absolute;
  336. z-index: 0;
  337. border-radius:10px;
  338. }
  339. #mixedstream {
  340. display:none !important;
  341. }
  342. #activeSpeakerAvatar {
  343. visibility: hidden;
  344. width: 100px;
  345. height: 100px;
  346. margin: auto;
  347. position: relative;
  348. border-radius: 50px;
  349. }
  350. .userAvatar {
  351. height: 100%;
  352. position: absolute;
  353. left: 35px;
  354. border-radius: 200px;
  355. }