選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

main.css 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. html, body{
  2. margin:0px;
  3. height:100%;
  4. color: #424242;
  5. font-family:'Helvetica Neue', Helvetica, sans-serif;
  6. font-weight: 400;
  7. background: #e9e9e9;
  8. overflow-x: hidden;
  9. }
  10. #videospace {
  11. display: block;
  12. position: absolute;
  13. top: 39px;
  14. left: 0px;
  15. right: 0px;
  16. float: left;
  17. }
  18. .videocontainer {
  19. position: relative;
  20. margin-left: auto;
  21. margin-right: auto;
  22. }
  23. #presentation, .videocontainer>video {
  24. position: absolute;
  25. left: 0px;
  26. top: 0px;
  27. z-index: 1;
  28. width: 100%;
  29. height: 100%;
  30. }
  31. .videocontainer>span {
  32. display: none; /* enable when you want nicks to be shown */
  33. position: absolute;
  34. left: 0px;
  35. bottom: -20px;
  36. z-index: 0;
  37. width: 100%;
  38. font-size: 10pt;
  39. }
  40. #localVideo {
  41. -moz-transform: scaleX(-1);
  42. -webkit-transform: scaleX(-1);
  43. -o-transform: scaleX(-1);
  44. transform: scaleX(-1);
  45. }
  46. #remoteVideos {
  47. display:block;
  48. position:relative;
  49. text-align:center;
  50. height:196px;
  51. padding-top:10px;
  52. width:auto;
  53. overflow: hidden;
  54. border:1px solid transparent;
  55. z-index: 2;
  56. }
  57. #remoteVideos>span {
  58. display: inline-block;
  59. z-index:0;
  60. border:1px solid #FFFFFF;
  61. background-image:url(../images/avatar1.png);
  62. background-size: contain;
  63. }
  64. #remoteVideos>span:hover {
  65. cursor: pointer;
  66. cursor: hand;
  67. transform:scale(1.08, 1.08);
  68. -webkit-transform:scale(1.08, 1.08);
  69. transition-duration: 0.5s;
  70. -webkit-transition-duration: 0.5s;
  71. background-color: #FFFFFF;
  72. -webkit-animation-name: greyPulse;
  73. -webkit-animation-duration: 2s;
  74. -webkit-animation-iteration-count: 1;
  75. -webkit-box-shadow: 0 0 18px #515151;
  76. border:1px solid #FFFFFF;
  77. z-index: 10;
  78. }
  79. #chatspace {
  80. display:none;
  81. position:absolute;
  82. float: right;
  83. top: 40px;
  84. bottom: 0px;
  85. right: 0px;
  86. width: 20%;
  87. max-width: 200px;
  88. overflow: hidden;
  89. /* background-color:#dfebf1;*/
  90. background-color:#FFFFFF;
  91. border-left:1px solid #424242;
  92. }
  93. #chatconversation {
  94. position: relative;
  95. top: 5px;
  96. padding: 5px;
  97. text-align: left;
  98. line-height: 20px;
  99. font-size: 10pt;
  100. width: 100%;
  101. height: 95%;
  102. overflow-y: scroll;
  103. overflow-x: hidden;
  104. word-wrap: break-word;
  105. visibility: hidden;
  106. }
  107. .localuser {
  108. color: #087dba;
  109. }
  110. .remoteuser {
  111. color: #424242;
  112. }
  113. #usermsg {
  114. position: relative;
  115. width: 100%;
  116. height: 5%;
  117. padding: 5px;
  118. z-index: 5;
  119. max-height:150px;
  120. min-height:50px;
  121. visibility:hidden;
  122. border: 0px none;
  123. border-top: 1px solid #cccccc;
  124. background: #FFFFFF;
  125. box-shadow: none;
  126. border-radius:0;
  127. font-size: 10pt;
  128. }
  129. #usermsg: hover {
  130. border: 0px none;
  131. border-top: 1px solid #cccccc;
  132. box-shadow: none;
  133. }
  134. #nickname {
  135. position: absolute;
  136. text-align: center;
  137. color: #9d9d9d;
  138. font-size: 18;
  139. top: 100px;
  140. left: 5px;
  141. right: 5px;
  142. width: 95%;
  143. }
  144. #nickinput {
  145. margin-top: 20px;
  146. font-size: 14;
  147. }
  148. #spacer {
  149. height:5px;
  150. }
  151. #settings {
  152. display:none;
  153. }
  154. #nowebrtc {
  155. display:none;
  156. }
  157. #header{
  158. display:block;
  159. height:39px;
  160. text-align:center;
  161. background-color: #2591e5;
  162. }
  163. #left {
  164. display:block;
  165. position: absolute;
  166. left: 0px;
  167. top: 0px;
  168. width: 100px;
  169. height: 39px;
  170. background-image:url(../images/left1.png);
  171. background-repeat:no-repeat;
  172. margin: 0;
  173. padding: 0;
  174. }
  175. #leftlogo {
  176. position:absolute;
  177. top: 5px;
  178. left: 15px;
  179. background-image:url(../images/jitsilogo.png);
  180. background-repeat:no-repeat;
  181. height: 31px;
  182. width: 68px;
  183. z-index:1;
  184. }
  185. #toolbar {
  186. display:block;
  187. position:relative;
  188. height:39px;
  189. width:auto;
  190. overflow: hidden;
  191. z-index:0;
  192. visibility: hidden;
  193. }
  194. #settingsButton {
  195. visibility: hidden;
  196. }
  197. .button {
  198. display: inline-block;
  199. position: relative;
  200. color: #FFFFFF;
  201. top: 0;
  202. padding: 10px 0px;
  203. width: 39px;
  204. cursor: pointer;
  205. font-size: 11pt;
  206. text-align: center;
  207. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  208. }
  209. a.button:hover {
  210. top: 0;
  211. cursor: pointer;
  212. background: rgba(0, 0, 0, 0.3);
  213. border-radius: 5px;
  214. background-clip: padding-box;
  215. -webkit-border-radius: 5px;
  216. -webkit-background-clip: padding-box;
  217. }
  218. .no-fa-video-camera, .fa-microphone-slash {
  219. color: #636363;
  220. }
  221. .fade_line {
  222. height: 1px;
  223. background: black;
  224. background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
  225. }
  226. .header_button_separator {
  227. display: inline-block;
  228. position:relative;
  229. top: 7;
  230. width: 1px;
  231. height: 25px;
  232. background: white;
  233. background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
  234. }
  235. #right {
  236. display:block;
  237. position:absolute;
  238. right: 0px;
  239. top: 0px;
  240. background-image:url(../images/right1.png);
  241. background-repeat:no-repeat;
  242. margin:0;
  243. padding:0;
  244. width:100px;
  245. height:39px;
  246. }
  247. #rightlogo {
  248. position:absolute;
  249. top: 6px;
  250. right: 15px;
  251. background-image:url(../images/estoslogo.png);
  252. background-repeat:no-repeat;
  253. height: 25px;
  254. width: 62px;
  255. z-index:1;
  256. }
  257. input[type='text'], textarea {
  258. display: inline-block;
  259. font-size: 14px;
  260. padding: 5px;
  261. background: #f3f3f3;
  262. border-radius: 3px;
  263. font-weight: 100;
  264. line-height: 20px;
  265. height: 40px;
  266. color: #333;
  267. text-align: left;
  268. border:1px solid #ACD8F0;
  269. outline: none; /* removes the default outline */
  270. resize: none; /* prevents the user-resizing, adjust to taste */
  271. }
  272. input[type='text'], textarea:focus {
  273. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  274. replacement to the outline */
  275. }
  276. textarea {
  277. overflow: hidden;
  278. word-wrap: break-word;
  279. resize: horizontal;
  280. }
  281. button.no-icon {
  282. padding: 0 1em;
  283. }
  284. button {
  285. border: none;
  286. height: 35px;
  287. padding: 0 1em 0 2em;
  288. position: relative;
  289. border-radius: 3px;
  290. font-weight: bold;
  291. color: #fff;
  292. line-height: 35px;
  293. background: #2c8ad2;
  294. }
  295. button, input, select, textarea {
  296. font-size: 100%;
  297. margin: 0;
  298. vertical-align: baseline;
  299. }
  300. button, input[type="button"], input[type="reset"], input[type="submit"] {
  301. cursor: pointer;
  302. -webkit-appearance: button;
  303. }
  304. form {
  305. display: block;
  306. }
  307. #downloadlog {
  308. position: absolute;
  309. bottom: 5;
  310. left: 5;
  311. overflow: visible;
  312. z-index: 100;
  313. }
  314. .videocontainer>span.focusindicator {
  315. display: inline-block;
  316. position: absolute;
  317. color: #FFFFFF;
  318. top: 0;
  319. padding: 5px 0px;
  320. width: 25px;
  321. font-size: 11pt;
  322. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  323. border: 0px;
  324. z-index: 2;
  325. }
  326. .videocontainer>span.displayname,
  327. .videocontainer>input.displayname {
  328. display: inline-block;
  329. position: absolute;
  330. background: -webkit-linear-gradient(left, rgba(0,0,0,.7), rgba(0,0,0,0));
  331. color: #b7b7b7;
  332. bottom: 0;
  333. left: 0;
  334. padding: 3px 5px;
  335. width: 100%;
  336. height: auto;
  337. max-height: 18px;
  338. font-size: 9pt;
  339. text-align: left;
  340. text-overflow: ellipsis;
  341. overflow: hidden;
  342. white-space: nowrap;
  343. z-index: 2;
  344. box-sizing: border-box;
  345. }
  346. #localVideoContainer>span.displayname:hover {
  347. cursor: text;
  348. }
  349. .videocontainer>a.displayname {
  350. display: inline-block;
  351. position: absolute;
  352. color: #b7b7b7;
  353. bottom: 0;
  354. right: 0;
  355. padding: 3px 5px;
  356. font-size: 9pt;
  357. cursor: pointer;
  358. z-index: 2;
  359. }
  360. #reloadPresentation {
  361. display: none;
  362. position: absolute;
  363. color: #FFFFFF;
  364. top: 0;
  365. right: 0;
  366. padding: 10px 10px;
  367. font-size: 11pt;
  368. cursor: pointer;
  369. background: rgba(0, 0, 0, 0.3);
  370. border-radius: 5px;
  371. background-clip: padding-box;
  372. -webkit-border-radius: 5px;
  373. -webkit-background-clip: padding-box;
  374. z-index: 2;
  375. }