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

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