iphone.css 622 B

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