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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
* {
}
.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;
}
/* Timeline */
canvas {
display: block;
}
.timeline {
display: flex;
flex-direction: row;
position: relative;
width: 300px;
cursor: crosshair;
}
.timelineColumn {
position: relative;
}
.ticks .tick {
position: absolute;
right: 0;
width: 4px;
height: 1px;
background: #ddd;
}
.ticks .tickLabel {
position: absolute;
right: 6px;
font-size: 12px;
width: 40px;
margin-top: -7px;
text-align: right;
text-shadow: 0 0 2px #00f;
}
.timeline .cursor {
width: 100%;
position: absolute;
left: 0;
pointer-events: none;
}
.timeline .cursor .line {
width: 100%;
height: 1px;
background: #00f;
}
.timeline .cursor.playCursor .line {
background: #ddd;
}
.timeline .cursor .tickLabel {
position: absolute;
pointer-events: none;
right: 6px;
font-size: 12px;
width: 40px;
margin-top: -7px;
text-align: right;
text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000;
}
/* Audio player */
.playButton {
position: absolute;
top: 0; left: 0;
width: 3rem; height: 3rem;
padding: 1rem;
background: #000;
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');
}
/* Script */
.script {
align-self: flex-end;
height: 100%;
}
/* Annotations */
.annotations {
position: relative;
width: 450px;
}
.annotationForm {
padding: 0.5rem;
position: absolute;
left: 0.25rem;
background: #448;
}
.annotationForm .row {
justify-content: space-between;
}
.annotationIndex {
width: 405px;
}
.annotationIndex .annotation {
position: absolute;
left: 5px;
max-width: 450px;
padding: 0.25rem 0.375rem;
box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
border-radius: 2px;
font-size: 12px;
cursor: pointer;
}
.annotation.sentence {
background-color: #83b;
}
.annotation.header {
background-color: #838;
}
|