console.rcss 611 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. body
  2. {
  3. font-family: "Perfect DOS VGA 437";
  4. font-weight: normal;
  5. font-style: normal;
  6. // use all the allocated texture space
  7. min-width: 100%;
  8. min-height: 100%;
  9. background-color: #000;
  10. }
  11. text#content
  12. {
  13. z-index: 2;
  14. font-size: 30px;
  15. white-space: pre-wrap;
  16. margin: auto;
  17. text-align: left;
  18. position: absolute;
  19. // account for non-proportionality of our 1024x512
  20. // buffer compared with VGA font proportions and
  21. // wanting to center the screen with 40 columns
  22. top: 16px;
  23. left: 32px;
  24. width: 100%;
  25. height: 100%;
  26. color: #888;
  27. }