@keyframes menuFadeIn { from { width: 96px; } to { width: 512px; } } body { padding: 0; margin: 0; overflow: hidden; font-family: sans-serif; } #level { border-spacing: 0; border-collapse: collapse; } #mainbar { display: flex; position: fixed; top: 0; left: 0; right: 0; height: 32px; background-color: #cccccc; box-shadow: 0 0 20px black; } .menu-group { position: relative; display: inline-block; cursor: pointer; padding: 5px 20px; overflow: visible; font-family: sans-serif; } .menu-group:hover { background-color: #5555cc; } .menu-dropdown { display: none; position: absolute; top: 16px; left: 0; background-color: #cccccc; list-style: none; box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5); padding-left: 0; } .menu-dropdown > li { padding: 5px 20px; width: 180px; } .menu-dropdown > li:hover { background-color: #5555cc; } .menu-group:hover > .menu-dropdown { display: block; } #widget-bar { position: fixed; flex-flow: wrap row; top: 32px; left: 0; bottom: 0; width: 96px; padding: 20px; background-color: #cccccc; box-shadow: 0 0 20px black; } .widget-container { margin-bottom: 20px; } .widget-disabled { filter: saturate(0); } #map { position: fixed; top: 32px; left: 136px; right: 0; bottom: 0; overflow: scroll; background-color: black; } #tileset-picker { border: 1px solid black; cursor: pointer; position: relative; overflow: visible; } #tileset-picker.widget-disabled { cursor: not-allowed; } #tileset-selector { display: none; position: absolute; top: 0; background-color: #cccccc; box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.5); } #tileset-picker:hover > #tileset-selector { display: block; } #tileset-picker.widget-disabled:hover > #tileset-selector { display: none; } #entrance-picker { width: 96px; height: 96px; border: 1px solid black; background-image: url("graphics/entrance-point.svg"); background-size: contain; background-repeat: no-repeat; background-position: center center; cursor: pointer; } #widget-insert-rows { position: relative; width: 96px; height: 96px; border: 1px solid black; } #widget-insert-rows-button { width: 100%; cursor: pointer; } #widget-insert-rows-input { position: absolute; width: 80%; bottom: 0; left: 0; right: 0; } .field, .button-tile { border: 0; padding: 0; margin: 0; background-repeat: no-repeat; cursor: pointer; display: inline-flex; } .entrance { background-image: url("graphics/entrance-point.svg") !important; background-size: contain !important; background-position: center bottom !important; } .button-tile { margin: 2px; } .selection { width: 100%; height: 100%; opacity: 0; background-color: red; } .field:hover .selection { opacity: 0.5; } .dialog { display: flex; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.25); position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 200; } .dialog-box { width: 500px; background-color: #cccccc; color: black; padding: 20px; box-shadow: 0 0 20px black; } .dialog-message { text-align: center; color: black; margin-bottom: 20px; } .dialog-button-area { display: flex; justify-content: space-evenly; width: 100%; } .dialog-label { width: 100%; } .dialog-input-area { width: 100%; } .dialog-input { width: 100%; margin-bottom: 20px; } .dialog-button { padding: 5px 20px; background-color: grey; font-weight: bold; color: white; cursor: pointer; } /* tr:hover > td > .selection { opacity: 0.5; } */