iphone.css 547 B

12345678910111213141516171819202122232425262728293031323334353637
  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. position: relative;
  14. }
  15. .canvas {
  16. background-color: green;
  17. }
  18. #console {
  19. position: fixed;
  20. height: 400px; width: 300px;
  21. top: 0px; left: 0px;
  22. overflow: auto;
  23. font-family: Helvetica;
  24. color: white;
  25. }
  26. #banad {
  27. width: 320px;
  28. height: 50px;
  29. background-color: transparent;
  30. position:absolute;
  31. left:0px; top:360px;
  32. z-index: 2;
  33. text-align: center;
  34. }