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

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