* { } .body.loading > div { padding: 1rem; } .body { width: 100%; height: 100%; display: flex; flex-direction: row; justify-content: space-between; background: linear-gradient( 0deg, rgba(0, 0, 64, 0.5), rgba(64, 64, 128, 0.5) ); padding: 0; } .body.alignmentEditor { height: calc(100% - 3rem); } /* Audio player */ .playButton { /*position: absolute;*/ /*top: 0; left: 0;*/ width: 3rem; height: 3rem; padding: 1rem; background: transparent; cursor: pointer; background-size: contain; background-repeat: no-repeat; background-position: center; } .playButton.playing { background-image: url('/static/img/icons_pause_white.svg'); } .playButton.paused { background-image: url('/static/img/icons_play_white.svg'); } /* Annotations */ .annotations { position: relative; width: 450px; }