v86.css 6.1 KB

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