blob: bc75fa7323dcc5646b24c96cc61726a89a6669ff (
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
|
.viewer-container {
position: absolute;
top: 0; left: 0;
width: 100vw;
height: 100vh;
/*transform: translateZ(0) translateX(0);*/
transition: all 0.2s;
}
.transcript-open .viewer-container {
/*transform: translateZ(0) translateX(-31.875rem);*/
width: calc(100vw - 31.875rem);
}
.nav-open .viewer-container {
/*transform: translateZ(0) translateX(-31.875rem);*/
height: calc(100vh - 25rem);
}
.viewer-parent a {
color: #000;
/*text-decoration: none;*/
/*border-bottom: 1px solid;*/
}
|