blob: 83d3777d6a6a4a61f222b5748f7b611b5b2f4c59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
* {
}
.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;
}
|