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

videolayout_default.css 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. }
  33. #remoteVideos .videocontainer:hover,
  34. #remoteVideos .videocontainer.videoContainerFocused {
  35. width: 100%;
  36. height: 100%;
  37. content:"";
  38. cursor: pointer;
  39. cursor: hand;
  40. /* transform:scale(1.08, 1.08);
  41. -webkit-transform:scale(1.08, 1.08); */
  42. transition-duration: 0.5s;
  43. -webkit-transition-duration: 0.5s;
  44. -webkit-animation-name: greyPulse;
  45. -webkit-animation-duration: 2s;
  46. -webkit-animation-iteration-count: 1;
  47. -webkit-box-shadow: 0 0 18px #388396;
  48. border: 2px solid #388396;
  49. z-index: 3;
  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. #remoteVideos .videocontainer>canvas {
  59. border-radius:4px;
  60. }
  61. .flipVideoX {
  62. transform: scale(-1, 1);
  63. -moz-transform: scale(-1, 1);
  64. -webkit-transform: scale(-1, 1);
  65. -o-transform: scale(-1, 1);
  66. }
  67. #localVideoWrapper>video {
  68. border-radius:0px !important;
  69. }
  70. #largeVideo,
  71. #largeVideoContainer {
  72. overflow: hidden;
  73. text-align: center;
  74. }
  75. #presentation,
  76. #etherpad,
  77. #localVideoWrapper>video,
  78. #localVideoWrapper,
  79. .videocontainer>video,
  80. .videocontainer>canvas {
  81. position: absolute;
  82. left: 0;
  83. top: 0;
  84. z-index: 1;
  85. width: 100%;
  86. height: 100%;
  87. }
  88. #etherpad,
  89. #presentation {
  90. text-align: center;
  91. }
  92. #etherpad {
  93. z-index: 0;
  94. }
  95. #etherpadButton {
  96. display: none;
  97. }
  98. #remoteVideos .videocontainer>span.focusindicator,
  99. #remoteVideos .videocontainer>span.remotevideomenu {
  100. display: inline-block;
  101. position: absolute;
  102. color: #FFFFFF;
  103. top: 0;
  104. left: 0;
  105. padding: 5px 0px;
  106. width: 25px;
  107. font-size: 11pt;
  108. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  109. border: 0px;
  110. z-index: 2;
  111. text-align: center;
  112. }
  113. #remoteVideos .nick {
  114. display: none; /* enable when you want nicks to be shown */
  115. position: absolute;
  116. left: 0px;
  117. bottom: -20px;
  118. z-index: 0;
  119. width: 100%;
  120. font-size: 10pt;
  121. }
  122. .videocontainer>span.displayname,
  123. .videocontainer>input.displayname {
  124. display: none;
  125. position: absolute;
  126. color: #FFFFFF;
  127. background: rgba(0,0,0,.7);
  128. text-align: center;
  129. text-overflow: ellipsis;
  130. width: 70%;
  131. height: 20%;
  132. left: 15%;
  133. top: 40%;
  134. padding: 5px;
  135. font-size: 11pt;
  136. overflow: hidden;
  137. white-space: nowrap;
  138. z-index: 2;
  139. border-radius:20px;
  140. }
  141. #localVideoContainer>span.displayname:hover {
  142. cursor: text;
  143. }
  144. .videocontainer>span.displayname {
  145. pointer-events: none;
  146. }
  147. .videocontainer>input.displayname {
  148. height: auto;
  149. }
  150. #localDisplayName {
  151. pointer-events: auto !important;
  152. }
  153. .videocontainer>a.displayname {
  154. display: inline-block;
  155. position: absolute;
  156. color: #FFFFFF;
  157. bottom: 0;
  158. right: 0;
  159. padding: 3px 5px;
  160. font-size: 9pt;
  161. cursor: pointer;
  162. z-index: 2;
  163. }
  164. .videocontainer>span.audioMuted {
  165. display: inline-block;
  166. position: absolute;
  167. color: #FFFFFF;
  168. top: 0;
  169. right: 0;
  170. padding: 8px 5px;
  171. width: 25px;
  172. font-size: 8pt;
  173. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  174. border: 0px;
  175. z-index: 3;
  176. text-align: center;
  177. }
  178. .videocontainer>span.videoMuted {
  179. display: inline-block;
  180. position: absolute;
  181. color: #FFFFFF;
  182. top: 0;
  183. right: 0;
  184. padding: 8px 5px;
  185. width: 25px;
  186. font-size: 8pt;
  187. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  188. border: 0px;
  189. z-index: 3;
  190. }
  191. #reloadPresentation {
  192. display: none;
  193. position: absolute;
  194. color: #FFFFFF;
  195. top: 0;
  196. right:0;
  197. padding: 10px 10px;
  198. font-size: 11pt;
  199. cursor: pointer;
  200. background: rgba(0, 0, 0, 0.3);
  201. border-radius: 5px;
  202. background-clip: padding-box;
  203. -webkit-border-radius: 5px;
  204. -webkit-background-clip: padding-box;
  205. z-index: 20; /*The reload button should appear on top of the header!*/
  206. }
  207. #header{
  208. display:none;
  209. position:absolute;
  210. height: 0px;
  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. .watermark {
  230. display: block;
  231. position: absolute;
  232. top: 15;
  233. width: 20%;
  234. height: 10%;
  235. background-size: contain;
  236. background-repeat: no-repeat;
  237. z-index: 2;
  238. }
  239. #leftwatermark {
  240. left: 15;
  241. background-image:url(../images/watermark.png);
  242. background-position: center left;
  243. }
  244. #rightwatermark {
  245. right: 15;
  246. background-image:url(../images/rightwatermark.png);
  247. background-position: center right;
  248. }