59 lines
792 B
CSS
59 lines
792 B
CSS
/** stylesheet for lasertank-js **/
|
|
|
|
body {
|
|
background-image: url('images/dirt.gif');
|
|
}
|
|
|
|
.game {
|
|
position: relative;
|
|
|
|
background-color: #babdb6;
|
|
border: 2px outset;
|
|
|
|
margin: 0px auto;
|
|
width: 696px;
|
|
}
|
|
|
|
.game ul.menu {
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
line-height: 1.4em;
|
|
cursor: default;
|
|
}
|
|
|
|
.game ul.menu li {
|
|
margin: 0px 1px;
|
|
padding: 0px 0.4em;
|
|
|
|
float: left;
|
|
}
|
|
|
|
.game ul.menu li:hover {
|
|
border-left: 1px solid #d3d7cf;
|
|
border-right: 1px solid #888a85;
|
|
|
|
margin: 0px;
|
|
}
|
|
|
|
/* 16x16 board */
|
|
.game canvas {
|
|
width: 512px;
|
|
height: 512px;
|
|
border: 2px inset gray;
|
|
}
|
|
|
|
.game .hud {
|
|
position: absolute;
|
|
|
|
background-image: url('images/hud.bmp');
|
|
background-repeat: no-repeat;
|
|
|
|
width: 180px;
|
|
height: 245px;
|
|
right: 0px;
|
|
top: 0px;
|
|
}
|