Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

videolayout_default.css 5.8KB

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