blob: dac8d9671f18facc926afcddd889a68cb4ce979a (
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
|
.viewer {
position: relative;
overflow: hidden;
width: 100vw;
height: calc(100vh - 3.125rem);
background: #fff;
color: #000;
font-family: "Neue Haas Unica", sans-serif;
}
.viewer.loading {
display: flex;
justify-content: center;
align-items: center;
}
.close {
position: absolute;
top: 2rem; right: 2rem;
width: 1.375rem;
height: 1.375rem;
background-image: url('/static/img/close_black.svg');
background-color: rgba(255,255,255,1.0);
background-size: 1.375rem 1.375rem;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
}
.viewer-container {
width: 100%;
height: 100%;
transform: translateZ(0) translateX(0);
transition: transform 0.2s;
}
.viewer-container.transcript-open {
transform: translateZ(0) translateX(-31.875rem);
}
|