mr-crocs-adventures/tilorswift/style.css

51 lines
664 B
CSS
Raw Normal View History

2020-01-29 00:21:53 +01:00
body {
padding: 0;
margin: 0;
overflow: hidden;
2020-01-29 00:21:53 +01:00
}
#level {
border-spacing: 0;
border-collapse: collapse;
}
.row {
}
#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
}