v86.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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. touch-action: none;
  46. }
  47. body {
  48. background-color: #111;
  49. color: #fff;
  50. line-height: 1.5;
  51. padding: 10px;
  52. font-family: sans-serif;
  53. }
  54. a {
  55. color: wheat;
  56. text-decoration: none;
  57. }
  58. .phone_keyboard {
  59. width: 0;
  60. height: 0;
  61. resize: none;
  62. position: absolute;
  63. opacity: 0;
  64. left: -9999em;
  65. top: 0;
  66. z-index: -10;
  67. white-space: nowrap;
  68. overflow: hidden;
  69. }
  70. h4 {
  71. margin: 0 0 9px 0;
  72. }
  73. #start_emulation {
  74. padding: 6px 18px;
  75. font-size: 16px;
  76. font-weight: bold;
  77. }
  78. #setup_error {
  79. color: red;
  80. font-weight: bold;
  81. background-color: #222;
  82. padding: 8px 18px;
  83. }
  84. #config_link {
  85. font-weight: bold;
  86. background-color: #222;
  87. padding: 8px 18px;
  88. }
  89. #screen_container {
  90. float: left;
  91. margin-right: 10px;
  92. margin-bottom: 10px;
  93. outline: 1px solid #555;
  94. }
  95. #boot_options a {
  96. text-decoration: none;
  97. font-weight: bold;
  98. font-size: 16px;
  99. }
  100. #boot_options td {
  101. padding: 1px 7px;
  102. }
  103. #oses small {
  104. font-size: 80%;
  105. color: #ccc;
  106. padding-left: 5px;
  107. }
  108. #oses tr {
  109. cursor: pointer;
  110. }
  111. #oses {
  112. border-spacing: 0;
  113. }
  114. #oses tr:hover {
  115. background-color: #311;
  116. }
  117. #oses td:nth-child(1) {
  118. white-space: pre;
  119. vertical-align: top;
  120. }
  121. #terminal {
  122. max-width: 1024px;
  123. }
  124. /* the code below was copied from xterm.css */
  125. .xterm {
  126. cursor: text;
  127. position: relative;
  128. user-select: none;
  129. -ms-user-select: none;
  130. -webkit-user-select: none;
  131. }
  132. .xterm.focus,
  133. .xterm:focus {
  134. outline: none;
  135. }
  136. .xterm .xterm-helpers {
  137. position: absolute;
  138. top: 0;
  139. /**
  140. * The z-index of the helpers must be higher than the canvases in order for
  141. * IMEs to appear on top.
  142. */
  143. z-index: 5;
  144. }
  145. .xterm .xterm-helper-textarea {
  146. padding: 0;
  147. border: 0;
  148. margin: 0;
  149. /* Move textarea out of the screen to the far left, so that the cursor is not visible */
  150. position: absolute;
  151. opacity: 0;
  152. left: -9999em;
  153. top: 0;
  154. width: 0;
  155. height: 0;
  156. z-index: -5;
  157. /** Prevent wrapping so the IME appears against the textarea at the correct position */
  158. white-space: nowrap;
  159. overflow: hidden;
  160. resize: none;
  161. }
  162. .xterm .composition-view {
  163. /* TODO: Composition position got messed up somewhere */
  164. background: #000;
  165. color: #FFF;
  166. display: none;
  167. position: absolute;
  168. white-space: nowrap;
  169. z-index: 1;
  170. }
  171. .xterm .composition-view.active {
  172. display: block;
  173. }
  174. .xterm .xterm-viewport {
  175. /* On OS X this is required in order for the scroll bar to appear fully opaque */
  176. background-color: #000;
  177. overflow-y: scroll;
  178. cursor: default;
  179. position: absolute;
  180. right: 0;
  181. left: 0;
  182. top: 0;
  183. bottom: 0;
  184. }
  185. .xterm .xterm-screen {
  186. position: relative;
  187. }
  188. .xterm .xterm-screen canvas {
  189. position: absolute;
  190. left: 0;
  191. top: 0;
  192. }
  193. .xterm .xterm-scroll-area {
  194. visibility: hidden;
  195. }
  196. .xterm-char-measure-element {
  197. display: inline-block;
  198. visibility: hidden;
  199. position: absolute;
  200. top: 0;
  201. left: -9999em;
  202. line-height: normal;
  203. }
  204. .xterm.enable-mouse-events {
  205. /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
  206. cursor: default;
  207. }
  208. .xterm.xterm-cursor-pointer,
  209. .xterm .xterm-cursor-pointer {
  210. cursor: pointer;
  211. }
  212. .xterm.column-select.focus {
  213. /* Column selection mode */
  214. cursor: crosshair;
  215. }
  216. .xterm .xterm-accessibility,
  217. .xterm .xterm-message {
  218. position: absolute;
  219. left: 0;
  220. top: 0;
  221. bottom: 0;
  222. right: 0;
  223. z-index: 10;
  224. color: transparent;
  225. pointer-events: none;
  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. /* Dim should not apply to background, so the opacity of the foreground color is applied
  236. * explicitly in the generated class and reset to 1 here */
  237. opacity: 1 !important;
  238. }
  239. .xterm-underline-1 { text-decoration: underline; }
  240. .xterm-underline-2 { text-decoration: double underline; }
  241. .xterm-underline-3 { text-decoration: wavy underline; }
  242. .xterm-underline-4 { text-decoration: dotted underline; }
  243. .xterm-underline-5 { text-decoration: dashed underline; }
  244. .xterm-overline {
  245. text-decoration: overline;
  246. }
  247. .xterm-overline.xterm-underline-1 { text-decoration: overline underline; }
  248. .xterm-overline.xterm-underline-2 { text-decoration: overline double underline; }
  249. .xterm-overline.xterm-underline-3 { text-decoration: overline wavy underline; }
  250. .xterm-overline.xterm-underline-4 { text-decoration: overline dotted underline; }
  251. .xterm-overline.xterm-underline-5 { text-decoration: overline dashed underline; }
  252. .xterm-strikethrough {
  253. text-decoration: line-through;
  254. }
  255. .xterm-screen .xterm-decoration-container .xterm-decoration {
  256. z-index: 6;
  257. position: absolute;
  258. }
  259. .xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
  260. z-index: 7;
  261. }
  262. .xterm-decoration-overview-ruler {
  263. z-index: 8;
  264. position: absolute;
  265. top: 0;
  266. right: 0;
  267. pointer-events: none;
  268. }
  269. .xterm-decoration-top {
  270. z-index: 2;
  271. position: relative;
  272. }