v86.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. .blink {
  134. animation: blink 0.6s step-start infinite;
  135. }
  136. @keyframes blink {
  137. 50% {
  138. color: transparent;
  139. }
  140. }
  141. .cursor {
  142. animation: cursor 0.6s step-start infinite;
  143. }
  144. @keyframes cursor {
  145. 50% {
  146. background-color: transparent;
  147. }
  148. }
  149. /* the code below was copied from xterm.css */
  150. .xterm {
  151. cursor: text;
  152. position: relative;
  153. user-select: none;
  154. -ms-user-select: none;
  155. -webkit-user-select: none;
  156. }
  157. .xterm.focus,
  158. .xterm:focus {
  159. outline: none;
  160. }
  161. .xterm .xterm-helpers {
  162. position: absolute;
  163. top: 0;
  164. /**
  165. * The z-index of the helpers must be higher than the canvases in order for
  166. * IMEs to appear on top.
  167. */
  168. z-index: 5;
  169. }
  170. .xterm .xterm-helper-textarea {
  171. padding: 0;
  172. border: 0;
  173. margin: 0;
  174. /* Move textarea out of the screen to the far left, so that the cursor is not visible */
  175. position: absolute;
  176. opacity: 0;
  177. left: -9999em;
  178. top: 0;
  179. width: 0;
  180. height: 0;
  181. z-index: -5;
  182. /** Prevent wrapping so the IME appears against the textarea at the correct position */
  183. white-space: nowrap;
  184. overflow: hidden;
  185. resize: none;
  186. }
  187. .xterm .composition-view {
  188. /* TODO: Composition position got messed up somewhere */
  189. background: #000;
  190. color: #FFF;
  191. display: none;
  192. position: absolute;
  193. white-space: nowrap;
  194. z-index: 1;
  195. }
  196. .xterm .composition-view.active {
  197. display: block;
  198. }
  199. .xterm .xterm-viewport {
  200. /* On OS X this is required in order for the scroll bar to appear fully opaque */
  201. background-color: #000;
  202. overflow-y: scroll;
  203. cursor: default;
  204. position: absolute;
  205. right: 0;
  206. left: 0;
  207. top: 0;
  208. bottom: 0;
  209. }
  210. .xterm .xterm-screen {
  211. position: relative;
  212. }
  213. .xterm .xterm-screen canvas {
  214. position: absolute;
  215. left: 0;
  216. top: 0;
  217. }
  218. .xterm .xterm-scroll-area {
  219. visibility: hidden;
  220. }
  221. .xterm-char-measure-element {
  222. display: inline-block;
  223. visibility: hidden;
  224. position: absolute;
  225. top: 0;
  226. left: -9999em;
  227. line-height: normal;
  228. }
  229. .xterm.enable-mouse-events {
  230. /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
  231. cursor: default;
  232. }
  233. .xterm.xterm-cursor-pointer,
  234. .xterm .xterm-cursor-pointer {
  235. cursor: pointer;
  236. }
  237. .xterm.column-select.focus {
  238. /* Column selection mode */
  239. cursor: crosshair;
  240. }
  241. .xterm .xterm-accessibility,
  242. .xterm .xterm-message {
  243. position: absolute;
  244. left: 0;
  245. top: 0;
  246. bottom: 0;
  247. right: 0;
  248. z-index: 10;
  249. color: transparent;
  250. pointer-events: none;
  251. }
  252. .xterm .live-region {
  253. position: absolute;
  254. left: -9999px;
  255. width: 1px;
  256. height: 1px;
  257. overflow: hidden;
  258. }
  259. .xterm-dim {
  260. /* Dim should not apply to background, so the opacity of the foreground color is applied
  261. * explicitly in the generated class and reset to 1 here */
  262. opacity: 1 !important;
  263. }
  264. .xterm-underline-1 { text-decoration: underline; }
  265. .xterm-underline-2 { text-decoration: double underline; }
  266. .xterm-underline-3 { text-decoration: wavy underline; }
  267. .xterm-underline-4 { text-decoration: dotted underline; }
  268. .xterm-underline-5 { text-decoration: dashed underline; }
  269. .xterm-overline {
  270. text-decoration: overline;
  271. }
  272. .xterm-overline.xterm-underline-1 { text-decoration: overline underline; }
  273. .xterm-overline.xterm-underline-2 { text-decoration: overline double underline; }
  274. .xterm-overline.xterm-underline-3 { text-decoration: overline wavy underline; }
  275. .xterm-overline.xterm-underline-4 { text-decoration: overline dotted underline; }
  276. .xterm-overline.xterm-underline-5 { text-decoration: overline dashed underline; }
  277. .xterm-strikethrough {
  278. text-decoration: line-through;
  279. }
  280. .xterm-screen .xterm-decoration-container .xterm-decoration {
  281. z-index: 6;
  282. position: absolute;
  283. }
  284. .xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
  285. z-index: 7;
  286. }
  287. .xterm-decoration-overview-ruler {
  288. z-index: 8;
  289. position: absolute;
  290. top: 0;
  291. right: 0;
  292. pointer-events: none;
  293. }
  294. .xterm-decoration-top {
  295. z-index: 2;
  296. position: relative;
  297. }