2020-01-29 00:21:53 +01:00
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-01-30 23:40:42 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 00:21:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#level {
|
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
}
|
|
|
|
|
2020-01-30 23:40:42 +01:00
|
|
|
#menu {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 96px;
|
|
|
|
background-color: grey;
|
|
|
|
box-shadow: 0 0 20px black;
|
|
|
|
}
|
|
|
|
|
|
|
|
#map {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 96px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field, .button-tile {
|
2020-01-29 00:21:53 +01:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background-repeat: no-repeat;
|
2020-01-30 20:51:29 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selection {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0;
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field:hover .selection {
|
|
|
|
opacity: 0.5;
|
2020-01-29 00:21:53 +01:00
|
|
|
}
|