desktop.css 369 B

12345678910111213141516171819202122232425262728
  1. body {
  2. font-size: 12px;
  3. margin: 0px;
  4. padding: 0px;
  5. background-color: #000;
  6. }
  7. #container {
  8. width: 320px;
  9. height: 480px;
  10. margin: 0px auto;
  11. position: relative;
  12. }
  13. .canvas {
  14. background-color: #121212;
  15. }
  16. #console {
  17. position: fixed;
  18. height: 400px; width: 300px;
  19. top: 0px; left: 0px;
  20. overflow: auto;
  21. font-family: Helvetica;
  22. color: white;
  23. text-align: left;
  24. }