v86.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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: 0px;
  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. }
  56. .phone_keyboard {
  57. width: 0;
  58. height: 0;
  59. resize: none;
  60. position: absolute;
  61. opacity: 0;
  62. left: -9999em;
  63. top: 0;
  64. z-index: -10;
  65. white-space: nowrap;
  66. overflow: hidden;
  67. }
  68. h4 {
  69. margin: 0px 0px 20px 0px;
  70. }
  71. #start_emulation {
  72. padding: 6px 18px;
  73. font-size: 16px;
  74. font-weight: bold;
  75. }
  76. #setup_error {
  77. color: red;
  78. font-weight: bold;
  79. background-color: #222;
  80. padding: 8px 18px;
  81. }
  82. #config_link {
  83. font-weight: bold;
  84. background-color: #222;
  85. padding: 8px 18px;
  86. }
  87. #screen_container {
  88. float: left;
  89. margin-right: 10px;
  90. margin-bottom: 10px;
  91. border: 1px solid #555;
  92. border-width: 2px 1px;
  93. }
  94. a img {
  95. margin: 10px;
  96. }
  97. .screenshots a {
  98. text-decoration: none;
  99. }
  100. .xterm {
  101. font-feature-settings: "liga" 0;
  102. position: relative;
  103. user-select: none;
  104. -ms-user-select: none;
  105. -webkit-user-select: none;
  106. }
  107. .xterm.focus,
  108. .xterm:focus {
  109. outline: none;
  110. }
  111. .xterm .xterm-helpers {
  112. position: absolute;
  113. top: 0;
  114. /**
  115. * The z-index of the helpers must be higher than the canvases in order for
  116. * IMEs to appear on top.
  117. */
  118. z-index: 5;
  119. }
  120. .xterm .xterm-helper-textarea {
  121. /*
  122. * HACK: to fix IE's blinking cursor
  123. * Move textarea out of the screen to the far left, so that the cursor is not visible.
  124. */
  125. position: absolute;
  126. opacity: 0;
  127. left: -9999em;
  128. top: 0;
  129. width: 0;
  130. height: 0;
  131. z-index: -5;
  132. /** Prevent wrapping so the IME appears against the textarea at the correct position */
  133. white-space: nowrap;
  134. overflow: hidden;
  135. resize: none;
  136. }
  137. .xterm .composition-view {
  138. /* TODO: Composition position got messed up somewhere */
  139. background: #000;
  140. color: #FFF;
  141. display: none;
  142. position: absolute;
  143. white-space: nowrap;
  144. z-index: 1;
  145. }
  146. .xterm .composition-view.active {
  147. display: block;
  148. }
  149. .xterm .xterm-viewport {
  150. /* On OS X this is required in order for the scroll bar to appear fully opaque */
  151. background-color: #000;
  152. overflow-y: scroll;
  153. cursor: default;
  154. position: absolute;
  155. right: 0;
  156. left: 0;
  157. top: 0;
  158. bottom: 0;
  159. }
  160. .xterm .xterm-screen {
  161. position: relative;
  162. }
  163. .xterm .xterm-screen canvas {
  164. position: absolute;
  165. left: 0;
  166. top: 0;
  167. }
  168. .xterm .xterm-scroll-area {
  169. visibility: hidden;
  170. }
  171. .xterm-char-measure-element {
  172. display: inline-block;
  173. visibility: hidden;
  174. position: absolute;
  175. top: 0;
  176. left: -9999em;
  177. line-height: normal;
  178. }
  179. .xterm {
  180. cursor: text;
  181. }
  182. .xterm.enable-mouse-events {
  183. /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
  184. cursor: default;
  185. }
  186. .xterm.xterm-cursor-pointer {
  187. cursor: pointer;
  188. }
  189. .xterm.column-select.focus {
  190. /* Column selection mode */
  191. cursor: crosshair;
  192. }
  193. .xterm .xterm-accessibility,
  194. .xterm .xterm-message {
  195. position: absolute;
  196. left: 0;
  197. top: 0;
  198. bottom: 0;
  199. right: 0;
  200. z-index: 10;
  201. color: transparent;
  202. }
  203. .xterm .live-region {
  204. position: absolute;
  205. left: -9999px;
  206. width: 1px;
  207. height: 1px;
  208. overflow: hidden;
  209. }
  210. .xterm-dim {
  211. opacity: 0.5;
  212. }
  213. .xterm-underline {
  214. text-decoration: underline;
  215. }