style.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. overflow: hidden;
  7. }
  8. .unselectable{
  9. cursor: default;
  10. display: block;
  11. margin: auto;
  12. margin-bottom: 1em;
  13. vertical-align: middle;
  14. text-align: center;
  15. }
  16. .fill{
  17. width: 100%;
  18. height: 100%;
  19. }
  20. .row{
  21. display: table-row;
  22. }
  23. .cell{
  24. display: table-cell;
  25. }
  26. .date_cell{
  27. word-wrap: normal;
  28. white-space: pre;
  29. word-break: keep-all;
  30. }
  31. .unselectable,#tabs-list div.tab{
  32. -webkit-touch-callout: none;
  33. -webkit-user-select: none;
  34. -khtml-user-select: none;
  35. -moz-user-select: none;
  36. -ms-user-select: none;
  37. user-select: none;
  38. }
  39. .close-button{
  40. float: right;
  41. font-weight: bold;
  42. font-size: 24px;
  43. margin-top: -5px;
  44. font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
  45. line-height: 17px;
  46. margin-top: 0;
  47. display: block;
  48. cursor: pointer;
  49. }
  50. .close-button:hover{
  51. color: red;
  52. }
  53. #head{
  54. right: 0;
  55. top: 0;
  56. width: 100%;
  57. height: 40px;
  58. border-bottom-style: solid;
  59. background-color: white;
  60. transition: height 0.3s;
  61. z-index: 10;
  62. font-size: 10px;
  63. font-family:verdana,sans-serif;
  64. background-color: #DFEFFF;
  65. }
  66. #info{
  67. display: table;
  68. width: 100%;
  69. }
  70. #title{
  71. display: table-cell;
  72. }
  73. #topic{
  74. display: table-cell;
  75. text-align: right;
  76. }
  77. #content,#console-log{
  78. width: 100%;
  79. height: calc(100% - 61px);
  80. top: 41px;
  81. left: 0;
  82. font-size: 10px;
  83. font-family:verdana,sans-serif;
  84. line-height:13px;
  85. background-color: #DFEFFF;
  86. }
  87. #content-list li:nth-child(even) {
  88. background-color: #cae4ff;
  89. }
  90. #content-list a, #content-list a:hover, #content-list a:active , #content-list a:active, #content-list a:link {
  91. color:blue;
  92. text-decoration: none;
  93. border-bottom: 1px solid rgba(0, 0, 255, 0.3);
  94. }
  95. #content-list a:hover {
  96. text-decoration: none;
  97. text-shadow: 0 0 4px rgba(0, 40, 170, 0.5);
  98. }
  99. #console-log{
  100. font-size: 14px;
  101. display: none;
  102. }
  103. #console-log-pre{
  104. height: 100%;
  105. margin: 0;
  106. padding: 2px;
  107. }
  108. #console-log-controls{
  109. position: absolute;
  110. bottom: 22px;
  111. width: 100%;
  112. overflow: hidden;
  113. }
  114. #settings,#users{
  115. font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
  116. font-size: 12px;
  117. bottom: 0;
  118. height: 19px;
  119. background-color: white;
  120. border-left-style: solid;
  121. border-top-style: solid;
  122. margin-top: -1px;
  123. transition: width 0.5s, height 0.5s, right 0.5s;
  124. }
  125. #settings span,#users span{
  126. cursor: pointer;
  127. }
  128. #settings.open span,#users.open.span{
  129. cursor: default;
  130. }
  131. #settings.open span.close-button,#users.open span.close-button{
  132. cursor: pointer;
  133. }
  134. #users{
  135. right: 0;
  136. width: 36px;
  137. z-index: 1;
  138. background-color: #cae4ff;
  139. }
  140. #settings{
  141. width: 50px;
  142. border-top-color: rgba(102, 153, 255, 0.6);
  143. border-right-style: solid;
  144. right: 36px;
  145. background-color: #cae4ff;
  146. }
  147. #settings.hovered,#users.hovered{
  148. height: 21px;
  149. }
  150. #settings.open,#users.open{
  151. width: 150px;
  152. height: 100%;
  153. right: 0;
  154. z-index: 20;
  155. }
  156. #settings.open{
  157. width: 300px;
  158. }
  159. #settings input, #settings select {
  160. background-color: #DFEFFF;
  161. border-radius: 2px;
  162. border: solid 1px rgba(102, 153, 255, 0.9);
  163. }
  164. #entry{
  165. width: 100%;
  166. border-top-style: solid;
  167. height: 19px;
  168. bottom: 0;
  169. }
  170. #input{
  171. width: calc(100% - 126px);
  172. height: 17px;
  173. margin: 0;
  174. padding: 1px;
  175. border-style: none;
  176. clear: none;
  177. bottom: 0;
  178. left: 0;
  179. background-color: #cae4ff;
  180. }
  181. #send{
  182. clear: none;
  183. bottom: 0;
  184. right: 88px;
  185. width: 48px;
  186. padding: 0;
  187. padding-bottom: 4px;
  188. margin: 0;
  189. height: 19px;
  190. border-style: none;
  191. border-left: 1px solid;
  192. background-color: #cae4ff;
  193. transition: background-color 0.2s;
  194. font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
  195. font-size: 12px;
  196. vertical-align: top;
  197. text-align: center;
  198. }
  199. #send:hover{
  200. background-color: #DFEFFF;
  201. }
  202. #send.clicked{
  203. background-color: rgba(102, 153, 255, 0.9);
  204. }
  205. #popup-title, #send {
  206. font-variant: small-caps;
  207. }
  208. #console-log,#content,#head,#users,#entry,#input,#send,#settings{
  209. border-color: rgba(102, 153, 255, 0.6);
  210. border-top-color: rgba(102, 153, 255, 0.9);
  211. border-width: 1px;
  212. position: absolute;
  213. overflow: hidden;
  214. }
  215. #console-log,#content{
  216. overflow-y: scroll;
  217. }
  218. #users,#input,#send,#settings{
  219. position: fixed;
  220. }
  221. #content-list,#user-list,#settings-list,#tabs-list{
  222. list-style-type: none;
  223. margin: 0;
  224. padding: 0;
  225. overflow-y: auto;
  226. word-wrap: break-word;
  227. white-space: pre-wrap;
  228. word-break: break-all;
  229. }
  230. #content-list,#user-list,#tabs-list{
  231. width: 100%;
  232. height: 100%;
  233. }
  234. #content-list,#settings-list{
  235. display: table;
  236. table-layout: fixed;
  237. }
  238. #settings-list > li{
  239. line-height: 4px;
  240. }
  241. #user-list{
  242. font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
  243. font-size: 15px;
  244. }
  245. #user-list li:nth-child(even){
  246. background-color: #DFEFFF;
  247. border: solid 1px #6699ff;
  248. border-left: 0px;
  249. border-right: 0px;
  250. }
  251. #tabs-list{
  252. width: calc(100% - 42px);
  253. height: 20px;
  254. position: absolute;
  255. left: 0;
  256. top: 20px;
  257. overflow: hidden;
  258. }
  259. #tabs-list div.tab{
  260. float: left;
  261. max-width: 200px;
  262. overflow: hidden;
  263. position: relative;
  264. height: 18px;
  265. margin-bottom: -1px;
  266. }
  267. #tabs-list div.tab.clicked{
  268. background-color: #cae4ff;
  269. border: solid 1px #6699ff;
  270. border-bottom-width: 0px;
  271. }
  272. #tabs-scroll-left{
  273. position: absolute;
  274. right: 20px;
  275. top: 20px;
  276. height: 20px;
  277. width: 20px;
  278. }
  279. #tabs-scroll-right{
  280. position: absolute;
  281. right: 0;
  282. top: 20px;
  283. height: 20px;
  284. width: 20px;
  285. }
  286. #tabs-list div.tab, #tabs-scroll-right,#tabs-scroll-left{
  287. border-top-right-radius: 3px;
  288. border-top-left-radius: 3px;
  289. border: 1px solid rgba(102, 153, 255, 0.3);
  290. border-top-color: rgba(102, 153, 255, 0.6);
  291. border-width: 1px;
  292. border-bottom-width: 0px;
  293. padding: 0;
  294. margin: 0;
  295. background-color: white;
  296. cursor: pointer;
  297. clear: none;
  298. display: block;
  299. -webkit-box-align: center;
  300. -moz-box-align: center;
  301. box-align: center;
  302. text-align: center;
  303. vertical-align: center;
  304. line-height: 16px;
  305. background-color: #DFEFFF;
  306. }
  307. #tabs-list div.tab{
  308. padding-right: 15px;
  309. }
  310. #tabs-list div.tab:hover, #tabs-scroll-right:hover,#tabs-scroll-left:hover{
  311. background-color: #cae4ff;
  312. }
  313. #tabs-scroll-left.disabled, #tabs-scroll-right.disabled{
  314. background-color: #cae4ff;
  315. border: solid 1px #6699ff;
  316. border-bottom-width: 0px;
  317. }