1
0
Fork 0
lasertank-js/style.css

59 lines
792 B
CSS
Raw Normal View History

/** stylesheet for lasertank-js **/
body {
background-image: url('images/dirt.gif');
}
.game {
position: relative;
2012-03-21 21:26:30 -04:00
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;
}