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.

videolayout_default.css 9.1KB

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