123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- body {
- background-color: #000;
- color: #222;
- font-family: Helvetica, sans-serif;
- font-size: 12px;
- margin: 0px;
- padding: 0px;
- }
- #container {
- width: 320px;
- height: 480px;
- margin: 0px auto;
- padding: 0px;
- position: relative;
- }
- .canvas {
- background-color: #000;
- z-index: -1;
- width: 100%;
- height: 100%;
- }
- #console {
- position: absolute;
- height: 400px; width: 300px;
- top: 0px; left: 0px;
- overflow: auto;
- font-family: Helvetica;
- color: white;
- z-index: 3;
- }
- #banad {
- width: 320px;
- height: 50px;
- background-color: transparent;
- z-index: 2;
- position: absolute;
- margin: 0px auto;
- padding: 0px;
- left: 0px; top: 320px;
- }
|