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

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