v86.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. #log, #runtime_infos, #serial, #filesystem_panel, #debug_panel {
  2. font-family: DejaVu Sans Mono, monospace;
  3. font-size: 13px;
  4. border: 1px solid #333;
  5. background-color: #000;
  6. padding: 4px;
  7. color: #fff;
  8. }
  9. #runtime_infos, #filesystem_panel {
  10. float: left;
  11. width: 250px;
  12. margin-bottom: 7px;
  13. margin-right: 7px;
  14. padding-bottom: 7px;
  15. }
  16. #log {
  17. height: 100px;
  18. width: 550px;
  19. }
  20. #debug_panel {
  21. white-space: pre;
  22. float: left;
  23. }
  24. #serial {
  25. margin: 0;
  26. }
  27. #serial:focus {
  28. outline: 1px solid rgb(229, 151, 0);
  29. }
  30. #screen {
  31. white-space: pre;
  32. position: relative;
  33. font-family: Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
  34. font-weight: bold;
  35. font-size: 15px;
  36. line-height: normal;
  37. }
  38. #screen, #vga {
  39. -webkit-transform-origin: top left;
  40. -moz-transform-origin: top left;
  41. transform-origin: top left;
  42. }
  43. #vga {
  44. background-color: #000;
  45. }
  46. body {
  47. background-color: #111;
  48. color: #fff;
  49. line-height: 1.5;
  50. padding: 10px;
  51. font-family: sans-serif;
  52. }
  53. a {
  54. color: wheat;
  55. text-decoration: none;
  56. }
  57. .phone_keyboard {
  58. width: 0;
  59. height: 0;
  60. resize: none;
  61. position: absolute;
  62. opacity: 0;
  63. left: -9999em;
  64. top: 0;
  65. z-index: -10;
  66. white-space: nowrap;
  67. overflow: hidden;
  68. }
  69. h4 {
  70. margin: 0 0 9px 0;
  71. }
  72. #start_emulation {
  73. padding: 6px 18px;
  74. font-size: 16px;
  75. font-weight: bold;
  76. }
  77. #setup_error {
  78. color: red;
  79. font-weight: bold;
  80. background-color: #222;
  81. padding: 8px 18px;
  82. }
  83. #config_link {
  84. font-weight: bold;
  85. background-color: #222;
  86. padding: 8px 18px;
  87. }
  88. #screen_container {
  89. float: left;
  90. margin-right: 10px;
  91. margin-bottom: 10px;
  92. outline: 1px solid #555;
  93. }
  94. #boot_options a {
  95. text-decoration: none;
  96. font-weight: bold;
  97. font-size: 16px;
  98. }
  99. #boot_options td {
  100. padding: 1px 7px;
  101. }
  102. #oses small {
  103. font-size: 80%;
  104. color: #ccc;
  105. padding-left: 5px;
  106. }
  107. #oses tr {
  108. cursor: pointer;
  109. }
  110. #oses {
  111. border-spacing: 0;
  112. }
  113. #oses tr:hover {
  114. background-color: #311;
  115. }
  116. #oses td:nth-child(1) {
  117. white-space: pre;
  118. vertical-align: top;
  119. }
  120. #terminal {
  121. max-width: 1024px;
  122. }
  123. /* the code below was copied from xterm.css */
  124. .xterm {
  125. font-feature-settings: "liga" 0;
  126. position: relative;
  127. user-select: none;
  128. -ms-user-select: none;
  129. -webkit-user-select: none;
  130. }
  131. .xterm.focus,
  132. .xterm:focus {
  133. outline: none;
  134. }
  135. .xterm .xterm-helpers {
  136. position: absolute;
  137. top: 0;
  138. /**
  139. * The z-index of the helpers must be higher than the canvases in order for
  140. * IMEs to appear on top.
  141. */
  142. z-index: 5;
  143. }
  144. .xterm .xterm-helper-textarea {
  145. padding: 0;
  146. border: 0;
  147. margin: 0;
  148. /* Move textarea out of the screen to the far left, so that the cursor is not visible */
  149. position: absolute;
  150. opacity: 0;
  151. left: -9999em;
  152. top: 0;
  153. width: 0;
  154. height: 0;
  155. z-index: -5;
  156. /** Prevent wrapping so the IME appears against the textarea at the correct position */
  157. white-space: nowrap;
  158. overflow: hidden;
  159. resize: none;
  160. }
  161. .xterm .composition-view {
  162. /* TODO: Composition position got messed up somewhere */
  163. background: #000;
  164. color: #FFF;
  165. display: none;
  166. position: absolute;
  167. white-space: nowrap;
  168. z-index: 1;
  169. }
  170. .xterm .composition-view.active {
  171. display: block;
  172. }
  173. .xterm .xterm-viewport {
  174. /* On OS X this is required in order for the scroll bar to appear fully opaque */
  175. background-color: #000;
  176. overflow-y: scroll;
  177. cursor: default;
  178. position: absolute;
  179. right: 0;
  180. left: 0;
  181. top: 0;
  182. bottom: 0;
  183. }
  184. .xterm .xterm-screen {
  185. position: relative;
  186. }
  187. .xterm .xterm-screen canvas {
  188. position: absolute;
  189. left: 0;
  190. top: 0;
  191. }
  192. .xterm .xterm-scroll-area {
  193. visibility: hidden;
  194. }
  195. .xterm-char-measure-element {
  196. display: inline-block;
  197. visibility: hidden;
  198. position: absolute;
  199. top: 0;
  200. left: -9999em;
  201. line-height: normal;
  202. }
  203. .xterm {
  204. cursor: text;
  205. }
  206. .xterm.enable-mouse-events {
  207. /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
  208. cursor: default;
  209. }
  210. .xterm.xterm-cursor-pointer {
  211. cursor: pointer;
  212. }
  213. .xterm.column-select.focus {
  214. /* Column selection mode */
  215. cursor: crosshair;
  216. }
  217. .xterm .xterm-accessibility,
  218. .xterm .xterm-message {
  219. position: absolute;
  220. left: 0;
  221. top: 0;
  222. bottom: 0;
  223. right: 0;
  224. z-index: 10;
  225. color: transparent;
  226. }
  227. .xterm .live-region {
  228. position: absolute;
  229. left: -9999px;
  230. width: 1px;
  231. height: 1px;
  232. overflow: hidden;
  233. }
  234. .xterm-dim {
  235. opacity: 0.5;
  236. }
  237. .xterm-underline {
  238. text-decoration: underline;
  239. }