iphone.css 625 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: 320px;
  20. }
  21. #console {
  22. position: absolute;
  23. height: 400px; width: 300px;
  24. top: 0px; left: 0px;
  25. overflow: auto;
  26. font-family: Helvetica;
  27. color: white;
  28. z-index: 3;
  29. }
  30. #banad {
  31. width: 320px;
  32. height: 50px;
  33. background-color: transparent;
  34. z-index: 2;
  35. position: absolute;
  36. margin: 0px auto;
  37. padding: 0px;
  38. left: 0px; top: 320px;
  39. }