desktop.css 638 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. body {
  2. background-color: #000;
  3. color: #222;
  4. font-family: Helvetica, sans-serif;
  5. font-size: 12px;
  6. margin: 0px;
  7. padding: 0px;
  8. }
  9. #container {
  10. width: 320px;
  11. height: 480px;
  12. margin: 0px auto;
  13. padding: 0px;
  14. position: relative;
  15. }
  16. .canvas {
  17. background-color: #000;
  18. z-index: -1;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. #console {
  23. position: absolute;
  24. height: 400px; width: 300px;
  25. top: 0px; left: 0px;
  26. overflow: auto;
  27. font-family: Helvetica;
  28. color: white;
  29. z-index: 3;
  30. }
  31. #banad {
  32. width: 320px;
  33. height: 50px;
  34. background-color: transparent;
  35. z-index: 2;
  36. position: absolute;
  37. margin: 0px auto;
  38. padding: 0px;
  39. left: 0px; top: 320px;
  40. }