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

main.css 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. html, body{
  2. margin:0px;
  3. height:100%;
  4. color: #424242;
  5. font-family:'YanoneKaffeesatzLight',Verdana,Tahoma,Arial;
  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. border-left:1px solid #424242;
  91. }
  92. #chatconversation {
  93. position: relative;
  94. top: 5px;
  95. padding: 5px;
  96. text-align: left;
  97. line-height: 20px;
  98. font-size: 10pt;
  99. width: 100%;
  100. height: 95%;
  101. overflow-y: scroll;
  102. overflow-x: hidden;
  103. word-wrap: break-word;
  104. visibility: hidden;
  105. }
  106. .localuser {
  107. color: #087dba;
  108. }
  109. .remoteuser {
  110. color: #424242;
  111. }
  112. #usermsg {
  113. position: relative;
  114. width: 100%;
  115. height: 5%;
  116. padding: 5px;
  117. z-index: 5;
  118. max-height:150px;
  119. min-height:50px;
  120. visibility:hidden;
  121. border: 0px none;
  122. border-top: 1px solid #cccccc;
  123. background: #FFFFFF;
  124. box-shadow: none;
  125. border-radius:0;
  126. font-size: 10pt;
  127. }
  128. #usermsg: hover {
  129. border: 0px none;
  130. border-top: 1px solid #cccccc;
  131. box-shadow: none;
  132. }
  133. #nickname {
  134. position: absolute;
  135. text-align: center;
  136. color: #9d9d9d;
  137. font-size: 18;
  138. top: 100px;
  139. left: 5px;
  140. right: 5px;
  141. width: 95%;
  142. }
  143. #nickinput {
  144. margin-top: 20px;
  145. font-size: 14;
  146. }
  147. #spacer {
  148. height:5px;
  149. }
  150. #settings {
  151. display:none;
  152. }
  153. #nowebrtc {
  154. display:none;
  155. }
  156. #header{
  157. display:block;
  158. height:39px;
  159. text-align:center;
  160. background-color: #2591e5;
  161. }
  162. #left {
  163. display:block;
  164. position: absolute;
  165. left: 0px;
  166. top: 0px;
  167. width: 100px;
  168. height: 39px;
  169. background-image:url(../images/left1.png);
  170. background-repeat:no-repeat;
  171. margin: 0;
  172. padding: 0;
  173. }
  174. #leftlogo {
  175. position:absolute;
  176. top: 5px;
  177. left: 15px;
  178. background-image:url(../images/jitsilogo.png);
  179. background-repeat:no-repeat;
  180. height: 31px;
  181. width: 68px;
  182. z-index:1;
  183. }
  184. #toolbar {
  185. display:block;
  186. position:relative;
  187. height:39px;
  188. width:auto;
  189. overflow: hidden;
  190. z-index:0;
  191. visibility: hidden;
  192. }
  193. #settingsButton {
  194. visibility: hidden;
  195. }
  196. .button {
  197. display: inline-block;
  198. position: relative;
  199. color: #FFFFFF;
  200. top: 0;
  201. padding: 10px 0px;
  202. width: 39px;
  203. cursor: pointer;
  204. font-size: 11pt;
  205. text-align: center;
  206. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  207. }
  208. a.button:hover {
  209. top: 0;
  210. cursor: pointer;
  211. background: rgba(0, 0, 0, 0.3);
  212. border-radius: 5px;
  213. background-clip: padding-box;
  214. -webkit-border-radius: 5px;
  215. -webkit-background-clip: padding-box;
  216. }
  217. .no-fa-video-camera, .fa-microphone-slash {
  218. color: #636363;
  219. }
  220. .fade_line {
  221. height: 1px;
  222. background: black;
  223. background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
  224. }
  225. .header_button_separator {
  226. display: inline-block;
  227. position:relative;
  228. top: 7;
  229. width: 1px;
  230. height: 25px;
  231. background: white;
  232. background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
  233. }
  234. #right {
  235. display:block;
  236. position:absolute;
  237. right: 0px;
  238. top: 0px;
  239. background-image:url(../images/right1.png);
  240. background-repeat:no-repeat;
  241. margin:0;
  242. padding:0;
  243. width:100px;
  244. height:39px;
  245. }
  246. #rightlogo {
  247. position:absolute;
  248. top: 6px;
  249. right: 15px;
  250. background-image:url(../images/estoslogo.png);
  251. background-repeat:no-repeat;
  252. height: 25px;
  253. width: 62px;
  254. z-index:1;
  255. }
  256. input[type='text'], textarea {
  257. display: inline-block;
  258. font-size: 14px;
  259. padding: 5px;
  260. background: #f3f3f3;
  261. border-radius: 3px;
  262. font-weight: 100;
  263. line-height: 20px;
  264. height: 40px;
  265. color: #333;
  266. font-weight: bold;
  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. #reloadPresentation {
  327. display: none;
  328. position: absolute;
  329. color: #FFFFFF;
  330. top: 0;
  331. right: 0;
  332. padding: 10px 10px;
  333. font-size: 11pt;
  334. cursor: pointer;
  335. background: rgba(0, 0, 0, 0.3);
  336. border-radius: 5px;
  337. background-clip: padding-box;
  338. -webkit-border-radius: 5px;
  339. -webkit-background-clip: padding-box;
  340. z-index: 2;
  341. }