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.5KB

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